/* לוגואים - אנימציית מרקיז/ספירלה */
.logo-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 120px;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}
.logo-track {
    display: flex;
    gap: 38px;
    align-items: center;
    justify-content: flex-start;
    width: max-content;
    flex-wrap: nowrap;
    will-change: transform;
    transition: none;
}
/* container1 פריסה מלאה */
.container1 {
    width: 100vw;
    margin: 32px 0 32px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 0 0 0;
    background: linear-gradient(90deg, #f77b7b 0%, #6ed3f7 100%);
    border-radius: 0 24px 24px 0;
    box-shadow: none;
    text-align: center;
    position: relative;
    right: 0;
    left: auto;
    overflow-x: visible;
}
.container1 .content {
    width: 100%;
    padding: 32px 0; /* אחידות עם שאר הסרגלים */
    min-height: 80px;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #0002;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    font-family: 'Assistant', Arial, sans-serif;
}
/* וידאו רספונסיבי */
.service-banner {
    position: relative;
    width: 100vw;
    min-width: 100%;
        height: 18vw;
        min-height: 90px;
        max-height: 180px;
    overflow: hidden;
    background: linear-gradient(90deg, #6ed3f7 0%, #f77b7b 100%);
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 600px) {
    .service-banner {
        height: 28vw;
        min-height: 60px;
        max-height: 100px;
    }
}
.service-banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    background: #000;
    display: block;
}
video::-webkit-media-controls {
    display: none !important;
}
video::-webkit-media-controls-enclosure {
    display: none !important;
}
video::-webkit-media-controls-panel {
    display: none !important;
}
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button {
    display: none !important;
}
/* לוגו תמונה */
.logo img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
}
/* לוגו פורפורציונלי */
.logo {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 700;
    text-decoration: none;
    color: var(--color-dark-text);
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    max-width: 220px;
    max-height: 48px;
    overflow: hidden;
    white-space: nowrap;
}
/* פוטר */
.landing-footer {
    background: #e0e0e0;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 1.1rem;
}
body {
    direction: rtl;
    font-family: Arial, sans-serif;
    background: #f8f8f8;
    margin: 0;
    padding: 0;
}
nav {
    background: #fff;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav a {
    color: #333;
    text-decoration: none;
    margin: 0 24px;
    font-size: 1.1rem;
    height: 56px;
    display: flex;
    align-items: center;
    border: none;
}
nav a:hover {
    text-decoration: underline;
}
h1 {
    color: #2a2a2a;
}
form {
    background: linear-gradient(135deg, #f7fafc 70%, #e3f0ff 100%);
    padding: 32px 28px 24px 28px;
    margin: 32px auto 24px auto;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 #0077ff18, 0 1.5px 8px #0001;
    border: 2px solid #111;
    transition: box-shadow 0.2s, border-color 0.2s;
}
form:hover {
    box-shadow: 0 8px 32px 0 #0077ff22, 0 2px 12px #0002;
}
label {
    display: block;
    margin-bottom: 10px;
}
input, textarea {
    width: 100%;
    padding: 8px 12px;
    margin-top: 4px;
    margin-bottom: 12px;
    border: 2px solid #111;
    border-radius: 7px;
    box-sizing: border-box;
    background: #fff;
    font-size: 1.08rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus {
    border-color: #0077ff;
    outline: none;
    box-shadow: 0 0 0 2px #0077ff22;
}
button {
    background: linear-gradient(90deg, #f77b7b 0%, #6ed3f7 100%);
    color: #fff !important;
    border: none;
    padding: 12px 32px;
    border-radius: 24px;
    cursor: pointer;
    font-size: 1.13rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px #6ed3f733;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
button:hover {
    background: linear-gradient(90deg, #6ed3f7 0%, #f77b7b 100%);
    color: #fff !important;
    box-shadow: 0 4px 16px #f77b7b33;
}
