/* Premium Barber Course - Clean Black & Turquoise Design - Compact Version */

:root {
    --primary: #000000;
    --secondary: #00ffba;
    --accent: #00e6a8;
    --text: #FFFFFF;
    --text-gray: #999999;
    --card-bg: #1A1A1A;
    --card-hover: #222222;
    --whatsapp: #25D366;
    --success: #10b981;
    --error: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', -apple-system, sans-serif;
    line-height: 1.5;
    color: var(--text);
    background: var(--primary);
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Countdown Bar - Minimal */
.countdown-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: var(--primary);
    z-index: 1000;
    padding: 4px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.countdown-bar span {
    display: inline-block;
    min-width: 20px;
    text-align: center;
}

/* ==================== ACCESSIBILITY WIDGET ==================== */

.accessibility-widget {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
}

.accessibility-btn {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 3px 15px rgba(0,255,186,0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessibility-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 25px rgba(0,255,186,0.7);
}

.accessibility-btn:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

.accessibility-menu {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 300px;
    background: var(--card-bg);
    border: 2px solid var(--secondary);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.accessibility-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.accessibility-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0,255,186,0.3);
}

.accessibility-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--secondary);
}

.accessibility-close {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 25px;
    height: 25px;
}

.accessibility-close:hover {
    color: var(--secondary);
}

.accessibility-content {
    padding: 12px 15px;
    max-height: 350px;
    overflow-y: auto;
}

.accessibility-item {
    margin-bottom: 12px;
}

.accessibility-item label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 6px;
    font-weight: 600;
}

.accessibility-controls {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.accessibility-control {
    flex: 1;
    min-width: 50px;
    padding: 8px;
    background: var(--primary);
    border: 2px solid rgba(0,255,186,0.3);
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
}

.accessibility-control:hover {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

.accessibility-toggle {
    width: 100%;
    padding: 10px;
    background: var(--primary);
    border: 2px solid rgba(0,255,186,0.3);
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: right;
}

.accessibility-toggle:hover {
    border-color: var(--secondary);
}

.accessibility-toggle.active {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

.toggle-text {
    font-size: 0.9rem;
}

.accessibility-reset {
    width: 100%;
    padding: 12px;
    background: var(--error);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.accessibility-reset:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* Accessibility States */
body.text-small { font-size: 14px; }
body.text-large { font-size: 18px; }
body.text-xlarge { font-size: 22px; }

body.high-contrast {
    --primary: #000000;
    --secondary: #FFFF00;
    --text: #FFFFFF;
    --text-gray: #FFFFFF;
    --card-bg: #000000;
}

body.high-contrast .accessibility-btn,
body.high-contrast .btn-hero,
body.high-contrast .btn-whatsapp,
body.high-contrast .btn-submit,
body.high-contrast .nav-cta {
    background: #FFFF00 !important;
    color: #000000 !important;
}

body.invert-colors {
    filter: invert(1) hue-rotate(180deg);
}

body.invert-colors img,
body.invert-colors video {
    filter: invert(1) hue-rotate(180deg);
}

body.highlight-links a {
    background: rgba(255,255,0,0.3);
    outline: 2px solid #FFFF00;
    text-decoration: underline !important;
}

body.readable-font,
body.readable-font * {
    font-family: Arial, sans-serif !important;
    letter-spacing: 0.05em;
}

body.big-cursor,
body.big-cursor * {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path fill="white" stroke="black" stroke-width="2" d="M5 5 L5 25 L12 18 L16 26 L19 25 L15 17 L23 17 Z"/></svg>'), auto !important;
}

.reading-guide-line {
    position: fixed;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,0,0.8);
    pointer-events: none;
    z-index: 9998;
    box-shadow: 0 0 15px rgba(255,255,0,0.5);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 3px 15px rgba(37,211,102,0.5);
    z-index: 9998;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.floating-whatsapp.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 25px rgba(37,211,102,0.7);
}

.floating-whatsapp:active {
    transform: scale(0.95);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 3px 15px rgba(37,211,102,0.5);
    }
    50% {
        box-shadow: 0 3px 25px rgba(37,211,102,0.8);
    }
}

/* Navigation Menu - Minimal Design */
.main-nav {
    position: fixed;
    top: 28px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid rgba(0, 255, 186, 0.2);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rubik', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--secondary);
}

/* Logo Image - Fixed Visibility! */
.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    background: #1a1a1a;  /* רקע כהה מוצק */
    padding: 12px 15px;
    border-radius: 12px;
    border: 3px solid var(--secondary);
    box-shadow: 0 0 30px rgba(0,255,186,0.6);
    filter: brightness(1.2);  /* מבהיר את הלוגו */
}

/* Logo DV - Text Based (Always Visible!) */
.logo-dv {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 900;
    padding: 8px 20px;
    border-radius: 12px;
    letter-spacing: 3px;
    box-shadow: 0 0 30px rgba(0,255,186,0.6);
    border: 3px solid var(--secondary);
    animation: logo-glow 2s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0,255,186,0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(0,255,186,0.8);
    }
}

.logo-text {
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--secondary);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.logo-text:hover {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(0,255,186,0.6);
}

/* CTA Buttons Group - Minimal */
.nav-cta-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Primary Button - WhatsApp */
.nav-btn-primary {
    background: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--secondary);
}

.nav-btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 186, 0.4);
}

/* Course Button - Schooler with Pulse */
.nav-btn-course {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--primary);
    border: 2px solid var(--secondary);
    animation: pulse-course 2s ease-in-out infinite;
}

.nav-btn-course:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 255, 186, 0.6);
    animation: none;
}

@keyframes pulse-course {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 186, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 255, 186, 0);
    }
}

/* Hero Section - Premium Animated Background */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    overflow: hidden;
}

/* Premium Background Container */
.premium-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Animated Images Background */
.animated-images {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
}

.image-slide {
    position: absolute;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slideAnimation 15s ease-in-out infinite;
}

.image-1 {
    left: 0;
    background-image: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%), 
                      url('../images/dvir-front.jpg');
    animation-delay: 0s;
}

.image-2 {
    right: 0;
    background-image: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%), 
                      url('../images/dvir-side.jpg');
    animation-delay: 7.5s;
}

@keyframes slideAnimation {
    0%, 40% {
        opacity: 1;
        transform: scale(1);
    }
    45%, 95% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gradient Overlays - Premium Effect */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 255, 186, 0.15) 0%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.8) 70%,
        rgba(0, 230, 168, 0.15) 100%
    );
    z-index: 2;
    animation: gradientShift 20s ease infinite;
}

.gradient-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(0, 255, 186, 0.1) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 3;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.8;
        filter: hue-rotate(0deg);
    }
    50% {
        opacity: 1;
        filter: hue-rotate(10deg);
    }
}

/* Animated Particles - Premium Effect */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 4;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(0, 255, 186, 0.6);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    width: 60px;
    height: 60px;
    right: 15%;
    top: 60%;
    animation-delay: 5s;
    animation-duration: 25s;
}

.particle:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 50%;
    top: 10%;
    animation-delay: 10s;
    animation-duration: 30s;
}

.particle:nth-child(4) {
    width: 50px;
    height: 50px;
    right: 30%;
    bottom: 20%;
    animation-delay: 15s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 25%;
    bottom: 30%;
    animation-delay: 8s;
    animation-duration: 28s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -100px) scale(1.5);
        opacity: 0.5;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translate(100px, -200px) scale(0.5);
        opacity: 0;
    }
}

/* Hero Content - On Top of Background */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
    color: white;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    animation: pulseTag 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulseTag {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 6px 25px rgba(255, 68, 68, 0.6);
    }
}

.hero-title {
    font-family: 'Rubik', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 35px;
    color: var(--text);
    text-shadow: 
        0 0 20px rgba(0, 255, 186, 0.3),
        0 0 40px rgba(0, 255, 186, 0.2),
        0 5px 20px rgba(0, 0, 0, 0.8);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(0, 255, 186, 0.3),
            0 0 40px rgba(0, 255, 186, 0.2),
            0 5px 20px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(0, 255, 186, 0.5),
            0 0 60px rgba(0, 255, 186, 0.3),
            0 5px 20px rgba(0, 0, 0, 0.8);
    }
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--primary);
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 40px rgba(0,255,186,0.4),
        0 0 0 0 rgba(0,255,186,0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 
            0 10px 40px rgba(0,255,186,0.4),
            0 0 0 0 rgba(0,255,186,0.7);
    }
    50% {
        box-shadow: 
            0 10px 40px rgba(0,255,186,0.6),
            0 0 0 10px rgba(0,255,186,0);
    }
}

.btn-hero:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 50px rgba(0,255,186,0.7),
        0 0 60px rgba(0,255,186,0.5);
    animation: none;
}

/* Story Section */
.story-section {
    background: var(--primary);
    padding: 60px 0;
}

.section-title {
    font-family: 'Rubik', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 35px;
    color: var(--secondary);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 35px;
    background: var(--card-bg);
    box-shadow: 0 0 60px rgba(0,255,186,0.15);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.story-intro {
    font-size: 1.3rem !important;
    color: var(--text) !important;
    font-weight: 500;
}

.story-content h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.8rem;
    color: var(--secondary);
    margin: 30px 0 15px 0;
}

.story-highlight {
    background: rgba(0,255,186,0.1);
    padding: 20px;
    border-right: 3px solid var(--secondary);
    font-size: 1.15rem !important;
    color: var(--text) !important;
    font-weight: 500;
}

.story-box {
    background: var(--primary);
    padding: 25px;
    margin: 25px 0;
    border: 2px solid var(--secondary);
}

.story-box h4 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.story-box p {
    margin-bottom: 10px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 8px 40px 8px 0;  /* ריפוד מימין במקום משמאל */
    position: relative;
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    right: 0;  /* מצמיד לצד ימין */
    top: 8px;
    color: var(--secondary);
    font-weight: 900;
    font-size: 1.2rem;
}

.arrow-list {
    list-style: none;
    padding: 0;
}

.arrow-list li {
    padding: 10px 40px 10px 0;  /* ריפוד מימין במקום משמאל */
    position: relative;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.arrow-list li:before {
    content: "→";
    position: absolute;
    right: 0;  /* מצמיד לצד ימין */
    top: 10px;
    color: var(--secondary);
    font-weight: 900;
    font-size: 1.3rem;
}
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

.story-cta {
    text-align: center;
    font-size: 1.2rem !important;
    color: var(--secondary) !important;
    font-weight: 600;
    margin-top: 25px;
}

/* CTA Box with Countdown */
.cta-box {
    max-width: 700px;
    margin: 50px auto 0 auto;
    padding: 30px;
    background: var(--card-bg);
    text-align: center;
    box-shadow: 0 0 60px rgba(0,255,186,0.2);
}

.cta-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 8px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.countdown-large {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.time-box {
    text-align: center;
    min-width: 85px;
}

.time-value {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary);
    font-family: 'Courier New', monospace;
}

.time-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Suitable Section */
.suitable-section {
    background: var(--primary);
    padding: 60px 0;
}

.suitable-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.suitable-card {
    padding: 35px;
    background: var(--card-bg);
    box-shadow: 0 0 60px rgba(0,255,186,0.15);
}

.suitable-card h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.suitable-yes h2 {
    color: var(--success);
}

.suitable-no h2 {
    color: var(--error);
}

.suitable-list {
    list-style: none;
    padding: 0;
}

.suitable-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.suitable-list li:last-child {
    border-bottom: none;
}

.suitable-list .icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.suitable-list strong {
    color: var(--text);
}

/* FAQ Section */
.faq-section {
    background: var(--primary);
    padding: 60px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 12px;
    box-shadow: 0 0 30px rgba(0,255,186,0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--card-hover);
}

.faq-icon {
    stroke: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Video Section */
.video-section {
    background: var(--primary);
    padding: 60px 0;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 60px rgba(0,255,186,0.2);
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--card-bg);
    overflow: hidden;
}

.video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* WhatsApp Section */
.whatsapp-section {
    background: var(--primary);
    padding: 60px 0;
}

.whatsapp-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 35px;
    background: var(--card-bg);
    text-align: center;
    box-shadow: 0 0 60px rgba(37,211,102,0.2);
}

.whatsapp-tag {
    display: inline-block;
    background: var(--whatsapp);
    color: white;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.whatsapp-box h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text);
}

.whatsapp-box p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--whatsapp);
    color: white;
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}

/* Gift Section */
.gift-section {
    background: var(--primary);
    padding: 60px 0;
}

.gift-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 35px;
    background: var(--card-bg);
    box-shadow: 0 0 60px rgba(0,255,186,0.15);
}

.gift-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.gift-highlight {
    background: rgba(0,255,186,0.1);
    padding: 20px;
    border-right: 3px solid var(--secondary);
    font-size: 1.15rem !important;
    color: var(--text) !important;
}

/* Form Section */
.form-section {
    background: var(--primary);
    padding: 60px 0;
}

.form-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 35px;
    background: var(--card-bg);
    text-align: center;
    box-shadow: 0 0 60px rgba(0,255,186,0.2);
}

.form-box h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.form-box > p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.signup-form {
    text-align: right;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    font-size: 1.05rem;
    background: var(--primary);
    border: 2px solid rgba(255,255,255,0.1);
    color: var(--text);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(0,255,186,0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.95rem;
    color: var(--text-gray);
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,255,186,0.4);
}

.btn-submit:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,255,186,0.6);
}

/* Footer */
.footer {
    background: var(--primary);
    padding: 35px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* About Quick Section */
.about-quick-section {
    background: var(--primary);
    padding: 60px 0;
}

.about-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.about-quick-card {
    background: var(--card-bg);
    padding: 25px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,255,186,0.1);
    transition: all 0.3s ease;
}

.about-quick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 45px rgba(0,255,186,0.2);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.about-quick-card h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.about-quick-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    /* Navigation Mobile - Minimal */
    .nav-container {
        padding: 0 15px;
        height: 55px;
    }

    .nav-cta-group {
        gap: 8px;
    }

    .nav-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Logo responsive */
    .logo-image {
        height: 45px;
        background: #1a1a1a;  /* רקע כהה */
        padding: 10px 12px;
        border-radius: 10px;
        border: 2px solid var(--secondary);
        box-shadow: 0 0 20px rgba(0,255,186,0.5);
        filter: brightness(1.2);
    }
    
    .logo-dv {
        font-size: 1.4rem;
        padding: 6px 15px;
        letter-spacing: 2px;
    }

    .logo-text {
        font-size: 1.2rem;
        font-weight: 900;
    }

    /* Sections */
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .btn-hero {
        padding: 14px 35px;
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .story-content,
    .gift-content,
    .form-box,
    .whatsapp-box,
    .cta-box {
        padding: 25px 18px;
    }

    .suitable-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .suitable-card {
        padding: 25px 18px;
    }

    .countdown-large {
        gap: 8px;
    }

    .time-box {
        min-width: 60px;
    }

    .time-value {
        font-size: 2.2rem;
    }

    .time-label {
        font-size: 0.7rem;
    }

    .hero-section {
        margin-top: 90px;
    }

    .about-quick-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-quick-card {
        padding: 22px;
    }

    .academy-content,
    .appointment-box {
        padding: 25px 18px;
    }

    .appointment-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Accessibility Mobile */
    .accessibility-widget {
        bottom: 12px;
        left: 12px;
    }

    .accessibility-btn {
        width: 48px;
        height: 48px;
    }

    .accessibility-menu {
        width: calc(100vw - 30px);
        left: 0;
    }

    .accessibility-content {
        max-height: 45vh;
    }

    /* WhatsApp Mobile */
    .floating-whatsapp {
        bottom: 75px;
        right: 12px;
        width: 48px;
        height: 48px;
    }

    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
}
