/* ==========================================================================
   VISION PARE-BRISE 33 - DESIGN SYSTEM & STYLES (LIGHT/DARK)
   ========================================================================== */

:root {
    /* Colors - Premium Light Theme (Default) */
    --bg-base: #f8fafc;        /* Very light slate */
    --bg-surface: #ffffff;
    --bg-surface-elevated: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-glass-light: rgba(255, 255, 255, 0.6);
    
    --brand-primary: #0055ff;    /* Trustworthy Blue */
    --brand-primary-hover: #0044cc;
    --brand-primary-glow: rgba(0, 85, 255, 0.3);
    
    --brand-secondary: #ff3366;  /* Urgent Red */
    
    --text-primary: #09090b;     /* Slate 900 */
    --text-secondary: #52525b;   /* Slate 600 */
    --text-inverse: #ffffff;
    
    --border-light: rgba(0, 0, 0, 0.06);
    
    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    
    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 30px var(--brand-primary-glow);
    
    /* Layout */
    --max-width: 1280px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 9999px;
}



/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overscroll-behavior: none;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    overscroll-behavior: none;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5em;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    transition: color var(--transition-normal);
}

/* ==========================================================================
   UTILITIES & COMPONENTS
   ========================================================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    .container {
        padding: 0 1.25rem;
    }
}

/* Hyper Design Touches */
.glass-panel {
    background: var(--bg-glass);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-white { color: #fff !important; }
.w-full { width: 100%; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--brand-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--brand-primary-glow);
}



.btn-primary:hover {
    background: var(--brand-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    background: var(--bg-glass-light);
    border-color: var(--brand-primary);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.text-link {
    color: var(--brand-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.text-link:hover {
    gap: 0.5rem;
    color: var(--brand-primary-hover);
}

/* Glassmorphism */
.glass-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: background var(--transition-normal), border-color var(--transition-normal);
}
.glass-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}


/* Theme Toggle Button */
.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.theme-toggle-btn:hover {
    background: var(--bg-glass-light);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}
.theme-toggle-btn-mobile {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 100%;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.logo-icon {
    color: var(--brand-primary);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
}

.logo-accent {
    color: var(--brand-primary);
}

.nav-links {
    display: none;
}

.nav-actions {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: block;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }
    .nav-link {
        font-weight: 500;
        font-size: 0.95rem;
        position: relative;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0%;
        height: 2px;
        background: var(--brand-primary);
        transition: width var(--transition-normal);
    }
    .nav-link:hover::after {
        width: 100%;
    }
    .nav-actions {
        display: flex;
        gap: 1rem;
        align-items: center;
    }
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-surface);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
}
.mobile-menu.active {
    transform: translateX(0);
}
.close-menu {
    align-self: flex-end;
    background: none; border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    margin-bottom: 2rem;
}
.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mobile-links a {
    font-size: 1.5rem;
    font-weight: 600;
}
.mobile-phone {
    color: var(--brand-primary);
    display: flex; align-items: center; gap: 0.5rem;
    margin-top: 1rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 75vh; /* Reduced drastically to pull the entire section and ticker upwards */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 2rem 1rem;
    overflow: visible;
    background: transparent;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3; /* Keeps video firmly at the back */
}

/* Gradient overlay to ensure text readability on the left */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to right, var(--bg-surface) 0%, var(--bg-surface) 40%, transparent 80%);
    z-index: -2;
}

.hero-bg-overlay {
    display: none;
}

.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.8;
    animation: floatOrb 12s ease-in-out infinite alternate;
}
.orb-1 {
    width: 60vw; height: 60vw;
    max-width: 800px; max-height: 800px;
    background: rgba(0, 102, 255, 0.15); /* Primary */
    top: -20%; right: -10%;
}
.orb-2 {
    width: 50vw; height: 50vw;
    max-width: 600px; max-height: 600px;
    background: rgba(0, 225, 255, 0.15); /* Cyan */
    bottom: -10%; left: -10%;
    animation-delay: -6s;
}




@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, 50px) scale(1.1); }
}

.hero-particles {
    position: absolute; inset: 0; z-index: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    background: var(--bg-surface);
    z-index: 20;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (max-width: 900px) {
    .container.hero-container {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .hero::before {
        background: transparent !important;
    }
    .hero::before {
        background: var(--bg-surface) !important;
        -webkit-mask-image: radial-gradient(130% 90% at 50% 0%, black 35%, transparent 100%);
        mask-image: radial-gradient(130% 90% at 50% 0%, black 35%, transparent 100%);
    }
    .hero-left {
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
    }
    
    .hero-title, .hero-subtitle {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group, .trust-indicators {
        justify-content: center !important;
    }
    .floating-card {
        transform: scale(0.7);
    }
    .hero-image-composite > div:nth-child(2) { /* PS5 */
        top: -15px !important;
        right: -10px !important;
    }
    .hero-image-composite > div:nth-child(3) { /* Trottinette */
        bottom: 10px !important;
        left: -10px !important;
    }
    .hero-image-composite > div:nth-child(4) { /* Pneus */
        bottom: -25px !important;
        right: 0px !important;
    }
    .hero-right {
        display: none !important;
    }
}

.badge-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}


.pulse-dot {
    width: 8px; height: 8px;
    background: var(--brand-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 var(--brand-primary-glow); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

.hero-title {
    margin-bottom: 1.5rem;
    font-size: clamp(3.5rem, 12vw, 5.5rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
    word-break: break-word;
    hyphens: auto;
}

.text-gradient {
    background: linear-gradient(135deg, #0044ff 0%, #00bfff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.trust-item i {
    color: var(--brand-primary);
}

/* Hero Cards (Floating info below hero) */
.hero-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    width: 100%;
}

.glass-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
    box-shadow: var(--shadow-sm);
}



.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-primary-glow);
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

/* Hero Initial Animations */
.hero-animate {
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
    will-change: opacity, transform;
}
.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   OFFERS SECTION (GIFTS)
   ========================================================================== */
.offers-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-surface);
}



.offers-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,102,255,0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}



.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
    padding: 2.5rem 0 1rem 0;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-content {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); } 
}

.offer-card {
    width: 280px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    border: 1px solid var(--border-light);
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary-glow);
}

.card-bow {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--brand-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
    z-index: 10;
    font-size: 1.8rem;
}

.card-ribbon {
    display: none;
}

.offer-card.highlight-offer {
    border: 2px solid var(--brand-primary);
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.04) 0%, transparent 100%);
}

.offer-card.highlight-offer::before {
    content: 'Offre Star 🌟';
    position: absolute;
    top: 15px;
    left: 15px;
    right: auto;
    bottom: auto;
    z-index: 10;
    background: var(--brand-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
}

.offer-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.offer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.offer-card:hover .offer-img {
    transform: scale(1.08);
}

.offer-card-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.offer-card-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--text-primary);
}

.offer-card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.offer-card-content p strong {
    color: var(--text-primary);
}

/* ==========================================================================
   TICKER
   ========================================================================== */
.ticker-section {
    background: var(--brand-primary);
    color: #ffffff;
    padding: 0.75rem 0;
    overflow: hidden;
    font-weight: 700;
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
}
.ticker-content {
    display: flex;
    gap: 3rem;
    animation: ticker 20s linear infinite;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-section {
    background: var(--bg-base);
}


.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: var(--bg-surface);
    border: 2px solid rgba(0, 0, 0, 0.08); /* Thick stylized border */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.service-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 102, 255, 0.5); /* Blue highlight on hover */
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.service-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.placeholder-gradient {
    width: 100%; height: 100%;
    background: linear-gradient(45deg, #e2e8f0, #cbd5e1);
}

.placeholder-gradient-alt {
    width: 100%; height: 100%;
    background: linear-gradient(45deg, #f1f5f9, #bfdbfe);
}


.service-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--brand-primary);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-content {
    padding: 2rem;
}
.service-content h3 {
    margin-bottom: 1rem;
}

/* ==========================================================================
   ENGAGEMENTS
   ========================================================================== */
.engagements-section {
    background: var(--bg-surface);
}


.engagements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .engagements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.engagement-card {
    padding: 2.5rem;
    text-align: center;
    background: var(--bg-surface);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px; /* Unify radius */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.engagement-icon {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: inline-flex;
    padding: 1.25rem;
    background: var(--brand-primary);
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(0, 85, 255, 0.25);
}


.engagement-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 800;
}

.engagement-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* ==========================================================================
   VIDEO CAROUSEL
   ========================================================================== */
.video-section {
    background: radial-gradient(circle at center, #1a2235 0%, #0a0f1a 100%);
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.video-section .section-title h2 {
    color: white !important;
}
.video-section .section-title p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.video-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2.5rem; /* larger gap for the drop shadows */
    padding: 2rem 2rem 4rem 2rem; /* Add horizontal padding to prevent glow and border from clipping */
    margin: 0 -2rem; /* Offset padding so the first card aligns with titles */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
.video-carousel::-webkit-scrollbar {
    display: none; /* WebKit */
}

.video-card {
    flex: 0 0 auto;
    width: 280px;
    height: 500px;
    border-radius: 36px; /* High-end smartphone curvature */
    overflow: hidden;
    scroll-snap-align: center;
    position: relative;
    background: #000;
    
    /* Sleek Bezel and Glow */
    border: 8px solid #111827; /* Dark Titanium color */
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.15), /* Outer metallic rim */
        0 30px 60px -15px rgba(0, 0, 0, 0.8), /* Deep shadow on the wall */
        0 0 50px rgba(0, 102, 255, 0.15); /* Soft blue aura */
    
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.video-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.25),
        0 40px 80px -20px rgba(0, 0, 0, 0.9),
        0 0 80px rgba(0, 102, 255, 0.3); /* Stronger blue aura on hover */
}

/* Inner glass reflection to make the screen look glossy */
.video-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 28px; /* Inner radius */
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    background: var(--bg-base);
    position: relative;
    z-index: 1;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 100% 0%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 0% 100%, rgba(0, 102, 255, 0.03) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}


.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 28px;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.08); /* Stylized border */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08); /* Lift shadow */
}

/* We removed the ugly ::after pseudo quote */

.stars {
    color: #fbbc04; /* Official Google Yellow */
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.35rem;
    filter: drop-shadow(0 2px 4px rgba(251, 188, 4, 0.3));
}

.testimonial-text {
    flex-grow: 1;
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 500;
    color: var(--text-primary);
    /* No italics, just clean modern text */
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: auto;
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-author h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
}
.testimonial-author small {
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.testimonial-author small::before {
    content: '✓';
    font-weight: 900;
    font-size: 0.9rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    background: var(--bg-surface);
}


.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 12px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}
.faq-item.active {
    border-color: transparent;
    background: var(--bg-surface);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Premium soft elevation */
    border-left: 4px solid var(--brand-primary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--brand-primary);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

/* ==========================================================================
   CTA / BOOKING
   ========================================================================== */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-box {
    padding: 0;
    overflow: visible;
    display: block;
    border-radius: 40px;
    background: var(--bg-surface);
    box-shadow: 0 30px 60px -15px rgba(0, 85, 255, 0.25);
    position: relative;
    border: 1px solid rgba(255,255,255,0.5);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 600px;
    border-radius: 40px;
    overflow: hidden;
}

.cta-contact-info {
    background: linear-gradient(135deg, var(--brand-primary) 0%, #003cd6 100%);
    color: white;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
}

.cta-form-container {
    background: var(--bg-base);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 900px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
    .cta-contact-info, .cta-form-container {
        padding: 2.5rem 1.5rem;
    }
    #ctaBoxWrapper {
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    .cta-grid {
        border-radius: 20px;
    }
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}
@media (max-width: 600px) {
    .form-row { flex-direction: column; }
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-left: 0.2rem;
}

.rappel-badge {
    top: -25px;
    left: -20px;
}

@media (max-width: 900px) {
    .rappel-badge {
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
    }
}

.form-input {
    width: 100%;
    background: #ffffff;
    border: 2px solid transparent;
    padding: 1.1rem 1.25rem;
    border-radius: 14px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.form-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 85, 255, 0.15);
    transform: translateY(-1px);
}





/* Custom Select Dropdown */
.custom-select {
    position: relative;
    width: 100%;
}
.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    box-shadow: var(--shadow-md);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.custom-select.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.custom-select.open .ph-caret-down {
    transform: rotate(180deg);
}
.custom-option {
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
}
.custom-option:last-child {
    border-bottom: none;
}
.custom-option:hover {
    background: rgba(0, 102, 255, 0.05);
    color: var(--brand-primary);
}
.custom-option.selected {
    background: rgba(0, 102, 255, 0.1);
    color: var(--brand-primary);
    font-weight: 600;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #0f172a; /* Always dark for premium footer feel, even in light theme */
    color: #f8fafc;
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    color: #ffffff;
}
.footer-brand .logo-text {
    color: #ffffff !important;
}
.footer-desc {
    margin-bottom: 2rem;
    color: #94a3b8;
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}
.social-links a:hover {
    background: var(--brand-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: #ffffff;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: #94a3b8;
}
.footer-links a:hover {
    color: var(--brand-primary);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #94a3b8;
}
.contact-item i {
    color: var(--brand-primary);
    font-size: 1.5rem;
}
.contact-item p, .contact-item a {
    color: #94a3b8;
    margin: 0;
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-item a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
    color: #94a3b8;
}
@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
.legal-links {
    display: flex;
    gap: 1.5rem;
}
.legal-links a {
    color: #94a3b8;
}
.legal-links a:hover {
    color: var(--brand-primary);
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-surface);
    width: 100%;
    max-width: 550px;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}



.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-glass-light);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--brand-primary);
    color: #ffffff;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.modal-header i {
    font-size: 2.5rem;
    color: var(--brand-primary);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.75rem;
    color: var(--text-primary);
}

.modal-body p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.modal-body ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.modal-body li {
    margin-bottom: 0.5rem;
}

