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

html {
    overflow-x: hidden;
    scroll-behavior: auto; /* Normal browser scroll - no smooth delays */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
}

:root {
    /* 🎨 ULTRA LUX COLOR PALETTE */
    --navy-dark: #0a0e27;
    --navy-deep: #141b3d;
    --navy-medium: #1e2749;
    --navy-light: #2d3a5f;

    /* 💎 PREMIUM METALS */
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8941E;
    --silver: #C0C0C0;
    --platinum: #E5E4E2;

    /* ✨ ACCENT COLORS */
    --accent-blue: #00d4ff;
    --accent-blue-dark: #0091ff;
    --accent-purple: #a855f7;
    --accent-cyan: #06b6d4;

    /* 🌈 GRADIENTS */
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #C5A028 100%);
    --gradient-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-luxury: linear-gradient(135deg, #0a0e27 0%, #1e2749 50%, #2d3a5f 100%);
    --gradient-shine: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);

    /* 🎭 GLASS & DEPTH */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 20px;

    /* 📝 TEXT */
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dark: #0a0e27;

    /* 🌑 SHADOWS */
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 24px 96px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.4);
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #1e3a8a; /* blue-900 */
    background: linear-gradient(135deg, #1e3a8a 0%, #0a0e27 100%);
    color: var(--text-light);
    overflow-x: hidden;
    overflow-y: auto !important;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth !important;
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    /* Fix scroll issue */
    height: auto;
}

body:not(.fonts-loaded) * {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

body.fonts-loaded {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1280px; /* max-w-7xl equivalent */
    margin: 0 auto; /* mx-auto */
    padding: 2rem; /* p-8 */
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
}

/* Prevent any element from causing horizontal scroll */
img,
video,
iframe,
object,
embed,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure all flex/grid containers don't overflow */
[class*="grid"],
[class*="flex"] {
    max-width: 100%;
    overflow-x: hidden;
}

/* ==================== 🌟 PREMIUM SECTION TRANSITIONS ==================== */
section {
    position: relative;
    /* Tutarlı spacing: space-y-12 */
    margin-bottom: 3rem;
    padding: 3rem 0;
    /* Smooth reveal animation */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
}

@media (max-width: 768px) {
    section {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delay for sections */
section:nth-child(1) { transition-delay: 0s; }
section:nth-child(2) { transition-delay: 0.1s; }
section:nth-child(3) { transition-delay: 0.2s; }
section:nth-child(4) { transition-delay: 0.3s; }
section:nth-child(5) { transition-delay: 0.4s; }
section:nth-child(6) { transition-delay: 0.5s; }

/* ==================== 🔒 FIXED SECTION DIMENSIONS ==================== */
.hero {
    min-height: 100vh;
    padding: 140px 0 120px;
    /* Prevent shift */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-badges {
    min-height: 300px;
    padding: 80px 0;
}

.features {
    min-height: 600px;
    padding: 120px 0;
}

.vehicles {
    min-height: 800px;
    padding: 120px 0;
}

.services {
    min-height: 700px;
    padding: 120px 0;
}

.campaigns {
    min-height: 500px;
    padding: 120px 0;
}

.testimonials {
    min-height: 500px;
    padding: 120px 0;
}

.about {
    min-height: 600px;
    padding: 120px 0;
}

.faq {
    min-height: 500px;
    padding: 120px 0;
}

.contact {
    min-height: 700px;
    padding: 120px 0;
}

/* ==================== 🌟 PREMIUM FEATURE CARDS ==================== */
.features {
    position: relative;
    background: var(--navy-dark);
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.feature-card {
    position: relative;
    padding: 48px 36px;
    border-radius: 32px;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.95) 0%,
        rgba(30, 39, 73, 0.9) 50%,
        rgba(10, 14, 39, 0.95) 100%
    );
    background-size: 200% 200%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(212, 175, 55, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    overflow: hidden;
    animation: featureCardShimmer 4s ease-in-out infinite;
    /* Prevent layout shift */
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@keyframes featureCardShimmer {
    0%, 100% {
        background-position: 0% 50%;
        border-color: rgba(212, 175, 55, 0.3);
    }
    50% {
        background-position: 100% 50%;
        border-color: rgba(212, 175, 55, 0.5);
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 32px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.4),
        rgba(0, 212, 255, 0.4),
        rgba(212, 175, 55, 0.4)
    );
    background-size: 200% 200%;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.6s ease;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: left 0.8s;
    pointer-events: none;
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-16px) rotateX(3deg) rotateY(-2deg) scale(1.03);
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.7),
        0 0 120px rgba(212, 175, 55, 0.3),
        0 25px 70px rgba(212, 175, 55, 0.2),
        inset 0 3px 6px rgba(255, 255, 255, 0.15),
        inset 0 -3px 6px rgba(0, 0, 0, 0.4);
    background-position: 100% 50%;
}

.feature-card:hover::before {
    opacity: 0.8;
}

.feature-card:hover::after {
    left: 100%;
    opacity: 1;
}

.feature-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.2) 0%,
        rgba(0, 212, 255, 0.15) 50%,
        rgba(212, 175, 55, 0.2) 100%
    );
    background-size: 200% 200%;
    border: 3px solid rgba(212, 175, 55, 0.4);
    box-shadow:
        0 15px 40px rgba(212, 175, 55, 0.3),
        0 0 60px rgba(212, 175, 55, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: iconFloat 4s ease-in-out infinite, iconGradient 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(5deg);
    }
}

@keyframes iconGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.4) 0%,
        rgba(0, 212, 255, 0.3) 50%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.feature-icon i {
    font-size: 56px;
    background: linear-gradient(
        135deg,
        #FFD700 0%,
        #FFA500 30%,
        #00d4ff 70%,
        #FFD700 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    animation: iconShine 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
}

@keyframes iconShine {
    0%, 100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.8));
    }
}

.feature-card:hover .feature-icon {
    transform: translateY(-8px) scale(1.15) rotate(360deg);
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow:
        0 20px 50px rgba(212, 175, 55, 0.4),
        0 0 80px rgba(212, 175, 55, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 0.3);
    background-position: 100% 50%;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card:hover .feature-icon i {
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.8));
}

.feature-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        var(--gold-light) 40%,
        #ffffff 70%,
        var(--gold-light) 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    letter-spacing: -0.02em;
    animation: titleGlow 5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes titleGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.feature-card:hover h3 {
    transform: translateY(-4px);
}

.feature-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 1);
    }

/* Special styling for "Genç Filo" card */
.feature-card:nth-child(2) {
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.98) 0%,
        rgba(30, 39, 73, 0.95) 30%,
        rgba(212, 175, 55, 0.15) 50%,
        rgba(30, 39, 73, 0.95) 70%,
        rgba(10, 14, 39, 0.98) 100%
    );
    border-color: rgba(212, 175, 55, 0.4);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.25) 0%,
        rgba(0, 212, 255, 0.2) 50%,
        rgba(212, 175, 55, 0.25) 100%
    );
    border-color: rgba(212, 175, 55, 0.5);
}

/* Special styling for "Concierge Destek" card */
.feature-card:nth-child(3) {
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.98) 0%,
        rgba(30, 39, 73, 0.95) 30%,
        rgba(0, 212, 255, 0.15) 50%,
        rgba(30, 39, 73, 0.95) 70%,
        rgba(10, 14, 39, 0.98) 100%
    );
    border-color: rgba(0, 212, 255, 0.4);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.25) 0%,
        rgba(212, 175, 55, 0.2) 50%,
        rgba(0, 212, 255, 0.25) 100%
    );
    border-color: rgba(0, 212, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 36px 28px;
        min-height: 280px;
    }
    
    .feature-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }
    
    .feature-icon i {
        font-size: 48px;
    }
    
    .feature-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 32px 24px;
        min-height: 260px;
    }
    
    .feature-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
}

    .feature-icon i {
        font-size: 42px;
    }
    
    .feature-card h3 {
        font-size: 22px;
    }
    
    .feature-card p {
        font-size: 15px;
    }
}

/* ==================== LOADING SCREEN ==================== */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--text-light);
}

.car-animation {
    margin-bottom: 40px;
    position: relative;
}

.car-animation i {
    font-size: 80px;
    color: var(--gold);
    animation: carMove 2s ease-in-out infinite;
}

@keyframes carMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

.loading-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-bar {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-gold);
    width: 0%;
    animation: loadingProgress 2s ease-in-out forwards;
    border-radius: 10px;
}

@keyframes loadingProgress {
    to { width: 100%; }
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 500;
}

.top-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-link:hover {
    color: var(--gold-light);
}

.top-social {
    display: flex;
    gap: 12px;
}

.top-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.top-social a:hover {
    background: var(--gradient-gold);
    color: var(--navy-dark);
    transform: translateY(-2px) scale(1.1);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 32px;
    color: var(--gold);
}

.logo-title {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-menu a {
    padding: 12px 20px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==================== BUTTONS ==================== */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 24px;
    border: 2px solid transparent;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
    min-width: 120px;
    min-height: 48px;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        #FFD700 0%,
        #FFA500 25%,
        #FFD700 50%,
        #FFA500 75%,
        #FFD700 100%
    );
    background-size: 200% 200%;
    border-color: rgba(255, 215, 0, 0.8);
    color: var(--navy-dark);
    box-shadow:
        0 15px 40px rgba(212, 175, 55, 0.5),
        0 0 80px rgba(212, 175, 55, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    animation: shimmer 4s linear infinite;
}

.btn-primary:hover {
    transform: translateY(-6px) scale(1.08) rotateX(5deg);
    box-shadow:
        0 25px 60px rgba(212, 175, 55, 0.6),
        0 0 100px rgba(212, 175, 55, 0.4),
        inset 0 3px 8px rgba(255, 255, 255, 0.5),
        inset 0 -3px 8px rgba(0, 0, 0, 0.3);
    background-position: 100% 50%;
}

.btn-secondary {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.12) 100%
    );
    background-size: 200% 200%;
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: var(--text-light);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        0 0 50px rgba(212, 175, 55, 0.15);
    animation: glassShimmer 3s ease infinite;
}

.btn-secondary:hover {
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.25) 0%,
        rgba(212, 175, 55, 0.15) 50%,
        rgba(212, 175, 55, 0.25) 100%
    );
    background-position: 100% 50%;
    border-color: rgba(212, 175, 55, 0.7);
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 18px 45px rgba(212, 175, 55, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        0 0 60px rgba(212, 175, 55, 0.3);
}

.btn-primary i,
.btn-secondary i {
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:hover i,
.btn-secondary:hover i {
    transform: translateX(6px) rotate(5deg) scale(1.1);
    }

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes glassShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ==================== MODAL ==================== */
.modal {
        display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    }

.modal.active {
        display: flex;
    align-items: center;
    justify-content: center;
    }

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: fadeIn 0.3s ease-out;
}

body.modal-open {
    overflow: hidden;
    padding-right: 8px;
    }

.modal-content {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.98) 0%,
        rgba(30, 39, 73, 0.96) 50%,
        rgba(10, 14, 39, 0.98) 100%
    );
    background-size: 200% 200%;
    border: 3px solid rgba(212, 175, 55, 0.5);
    border-radius: 36px;
    max-width: 650px;
    width: 92%;
    max-height: 92vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.9),
        0 0 150px rgba(212, 175, 55, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.15),
        inset 0 -3px 6px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
               modalShimmer 3s ease-in-out infinite;
    z-index: 10001;
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    min-width: 320px;
    min-height: 400px;
    will-change: transform, opacity;
    transform-style: preserve-3d;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.92) rotateX(5deg);
        filter: blur(10px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) scale(0.98) rotateX(2deg);
        filter: blur(3px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0);
    }
}

@keyframes modalShimmer {
    0%, 100% {
        background-position: 0% 50%;
        border-color: rgba(212, 175, 55, 0.5);
    }
    50% {
        background-position: 100% 50%;
        border-color: rgba(212, 175, 55, 0.7);
    }
}

.modal-close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.12) 0%,
        rgba(212, 175, 55, 0.06) 100%
    );
    border-radius: 50%;
    font-size: 22px;
    color: var(--gold-light);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.modal-close:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 68, 68, 0.2) 0%,
        rgba(255, 68, 68, 0.15) 100%
    );
    border-color: rgba(255, 68, 68, 0.6);
    color: #ff4444;
    transform: rotate(90deg) scale(1.15);
    box-shadow:
        0 6px 25px rgba(255, 68, 68, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 68, 68, 0.3);
}

.modal-header {
    text-align: center;
    padding: 52px 40px 32px;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.95) 0%,
        rgba(30, 39, 73, 0.9) 30%,
        rgba(212, 175, 55, 0.1) 50%,
        rgba(30, 39, 73, 0.9) 70%,
        rgba(10, 14, 39, 0.95) 100%
    );
    background-size: 200% 200%;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    border-radius: 36px 36px 0 0;
    position: relative;
    overflow: hidden;
    animation: headerGradient 4s ease infinite;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes headerGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.modal-header i {
    font-size: 56px;
    color: var(--gold);
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 6px 20px rgba(212, 175, 55, 0.8));
    }
}

.modal-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientText 5s ease infinite;
}

.modal-header p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

.modal-body {
    padding: 40px;
    color: var(--text-light);
}

.price-info {
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-item span {
    font-size: 16px;
    color: var(--text-muted);
}

.price-item strong {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.date-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.date-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.date-input-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    }

.date-input-group label i {
    color: var(--gold);
    font-size: 16px;
    }

.date-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.date-input:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.days-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    margin-bottom: 24px;
    font-size: 18px;
    color: var(--text-light);
}

.days-display i {
    color: var(--gold);
    font-size: 20px;
}

.days-display span {
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.total-price span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
}

.total-price strong {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.modal-actions .btn-primary,
.modal-actions .btn-secondary {
    flex: 1;
    max-width: 250px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 16px;
    color: var(--navy-dark);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.3) 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-btn:hover::before {
    transform: translateX(100%);
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.6);
}

.submit-btn:active {
    transform: translateY(-2px);
}

.submit-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(4px);
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.contact-note i {
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

/* Toast Container */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}

.toast {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(30, 39, 73, 0.9) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: toastSlideIn 0.3s ease-out;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.success {
    border-color: rgba(76, 175, 80, 0.6);
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(30, 73, 39, 0.9) 100%);
}

.toast.error {
    border-color: rgba(244, 67, 54, 0.6);
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(73, 30, 30, 0.9) 100%);
}

.toast i {
    font-size: 18px;
    flex-shrink: 0;
}

.toast.success i {
    color: #4caf50;
}

.toast.error i {
    color: #f44336;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
}
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 120px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--navy-dark);
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.6);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.2);
}
}

@media (max-width: 768px) {
    .date-selector {
        grid-template-columns: 1fr;
}

    .modal-actions {
        flex-direction: column;
}

    .modal-actions .btn-primary,
    .modal-actions .btn-secondary {
        max-width: 100%;
}

    .toast-container {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .back-to-top,
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
}

    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 28px;
}

    .back-to-top {
        bottom: 90px;
        width: 48px;
        height: 48px;
    font-size: 18px;
    }
}
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
    animation: iconPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.modal-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        var(--gold-light) 50%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.modal-header p {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.modal-body {
    background: transparent;
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
    padding: 40px 44px 48px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track {
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.6) 0%,
        rgba(30, 39, 73, 0.5) 100%
    );
    border-radius: 10px;
    margin: 10px 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.6) 0%,
        rgba(212, 175, 55, 0.4) 50%,
        rgba(0, 212, 255, 0.4) 100%
    );
    border-radius: 10px;
    border: 2px solid rgba(10, 14, 39, 0.3);
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.8) 0%,
        rgba(212, 175, 55, 0.6) 50%,
        rgba(0, 212, 255, 0.6) 100%
    );
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        0 4px 8px rgba(212, 175, 55, 0.4);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 120px;
    background: var(--navy-dark);
    color: var(--text-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #0a1929 0%,
        #1e3a5f 25%,
        #2d5f8d 50%,
        #60a5fa 100%
    );
    opacity: 0.95;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #f0f0f0 25%,
        #D4AF37 50%,
        #FFD700 75%,
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

/* ==================== HERO ELEMENTS ==================== */
.hero-eyebrow {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 212, 255, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    }

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.highlight-card i {
    font-size: 32px;
    color: var(--gold);
}

.highlight-card strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-light);
}

.highlight-card span {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-search {
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(30, 39, 73, 0.85) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
    }

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(255, 255, 255, 0.12);
}

.hero-car-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-car-visual svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 212, 255, 0.4));
}

/* ==================== TRUST BADGES ==================== */
.trust-badges {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(30, 39, 73, 0.9) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.trust-card {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(0, 212, 255, 0.08) 100%);
}

.trust-card i {
    font-size: 48px;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-light);
}

.trust-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 212, 255, 0.08) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat p {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 600;
    }

/* ==================== VEHICLES SECTION ==================== */
.vehicles {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
    }

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
}

.vehicle-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    }

.vehicle-highlights {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    }

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    }

.highlight-item i {
    font-size: 24px;
    color: var(--gold);
    }

.highlight-item strong {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    }

.highlight-item span {
    font-size: 13px;
    color: var(--text-muted);
    }

.vehicle-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    }

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(0, 212, 255, 0.15) 100%);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
    }

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
    }

.vehicle-card {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(30, 39, 73, 0.85) 100%);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    min-height: 500px;
}

.vehicle-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 100px rgba(212, 175, 55, 0.3);
    }

.vehicle-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 39, 73, 0.5) 0%, rgba(10, 14, 39, 0.8) 100%);
}

.vehicle-image img {
        width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    }

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.1);
    }

.vehicle-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: var(--gradient-gold);
    border-radius: 8px;
    color: var(--navy-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vehicle-content {
    padding: 28px;
}

.vehicle-header {
    margin-bottom: 20px;
}

.vehicle-category {
    font-size: 13px;
    color: var(--gold-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.vehicle-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 4px;
}

.vehicle-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.vehicle-specs i {
    color: var(--gold);
}

.vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.vehicle-price {
    display: flex;
    flex-direction: column;
}

.vehicle-price .amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold-light);
}

.vehicle-price .period {
    font-size: 13px;
    color: var(--text-muted);
}

.rent-btn {
    padding: 14px 28px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 12px;
    color: var(--navy-dark);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.rent-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

.vehicles-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 212, 255, 0.08) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    flex-wrap: wrap;
    gap: 24px;
}

.vehicles-footer-copy strong {
    display: block;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.vehicles-footer-copy p {
    color: var(--text-muted);
}

.vehicles-footer-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
}

.services-layout {
    display: grid;
    gap: 2rem;
    max-width: 100%;
}

.service-hero {
    padding: 48px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(0, 212, 255, 0.08) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 28px;
    margin-bottom: 32px;
}

.service-hero-header {
    margin-bottom: 28px;
}

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-gold);
    border-radius: 8px;
    color: var(--navy-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.service-hero h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-light);
}

.service-hero p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

.service-hero-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.service-hero-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-light);
}

.service-hero-highlights i {
    color: var(--gold);
    font-size: 18px;
}

.service-hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--gold-light);
    font-weight: 600;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 100%;
}

.service-card {
    padding: 36px 32px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(30, 39, 73, 0.85) 100%);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 212, 255, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 32px;
    color: var(--gold);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-light);
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.service-features i {
    color: var(--gold);
    font-size: 16px;
}

/* ==================== CAMPAIGNS SECTION ==================== */
.campaigns {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
}

.campaign-spotlight {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(0, 212, 255, 0.08) 100%);
    border: 3px solid rgba(212, 175, 55, 0.4);
    border-radius: 28px;
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.campaign-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    border-radius: 8px;
    color: white;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.campaign-spotlight h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.campaign-spotlight p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.campaign-points {
    list-style: none;
    margin-bottom: 32px;
}

.campaign-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.campaign-points i {
    color: var(--gold);
    font-size: 18px;
}

.campaign-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 100%;
}

.campaign-card {
    padding: 36px 32px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(30, 39, 73, 0.85) 100%);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: all 0.4s ease;
}

.campaign-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
}

.campaign-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 212, 255, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    margin-bottom: 24px;
}

.campaign-icon i {
    font-size: 32px;
    color: var(--gold);
}

.campaign-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-light);
}

.campaign-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.campaign-card ul {
    list-style: none;
}

.campaign-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.campaign-card li i {
    color: var(--gold);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
}

.testimonials-slider {
    position: relative;
    padding: 0 60px;
}

.testimonials-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 400px;
    scroll-snap-align: start;
    padding: 36px 32px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(30, 39, 73, 0.85) 100%);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.avatar {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy-dark);
}

.testimonial-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
}

.testimonial-header span {
    font-size: 14px;
    color: var(--text-muted);
}

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.rating i {
    color: #fbbf24;
    font-size: 16px;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-date {
    font-size: 13px;
    color: var(--text-muted);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(0, 212, 255, 0.2) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    color: var(--gold-light);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--gradient-gold);
    color: var(--navy-dark);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ==================== FAQ SECTION ==================== */
.faq {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
}

.faq-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-intro {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(0, 212, 255, 0.08) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.faq-intro h2 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.3;
}

.faq-intro p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.faq-meta {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

.faq-meta div {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.faq-meta i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 24px;
    flex-shrink: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(30, 39, 73, 0.85) 100%);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.faq-question {
    padding: 1.5rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.5;
    flex: 1;
}

.faq-question i {
    color: var(--gold);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

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

.faq-answer p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-light);
}

.contact-info p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(0, 212, 255, 0.08) 100%);
}

.contact-method i {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 212, 255, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    font-size: 24px;
    color: var(--gold);
}

.contact-method strong {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-method span {
    font-size: 15px;
    color: var(--text-muted);
}

.contact-form {
    padding: 40px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(30, 39, 73, 0.85) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-light);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form textarea {
    width: 100%;
    min-height: 150px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
}

.contact-form textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(255, 255, 255, 0.12);
}

.form-error {
    display: block;
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 8px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(180deg, var(--navy-dark) 0%, #050810 100%);
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--gold-light);
}

.footer-column p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--gold-light);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient-gold);
    color: var(--navy-dark);
    transform: translateY(-4px);
}

/* Duplicate removed - using newer version below */

/* ==================== RESERVATION MODAL ==================== */
.premium-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-modal.active {
    opacity: 1;
}

.premium-modal[aria-hidden="false"] {
    display: flex;
}

.premium-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.premium-modal-dialog {
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-modal.active .premium-modal-dialog {
    transform: scale(1) translateY(0);
}

.premium-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 50%;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.premium-modal-close:hover {
    background: rgba(239, 68, 68, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.premium-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.premium-modal-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eab308, #fbbf24);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.4);
}

.premium-modal-icon i {
    font-size: 2rem;
    color: #0f172a;
}

.premium-modal-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.premium-modal-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.premium-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.premium-form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.premium-form-label i {
    color: #eab308;
}

.premium-form-input,
.premium-form-select {
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.premium-form-input:focus,
.premium-form-select:focus {
    outline: none;
    border-color: #eab308;
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.15);
}

.premium-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.premium-modal-info {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 12px;
    margin-top: 1rem;
}

.premium-modal-info i {
    color: #eab308;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.premium-modal-info strong {
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
}

.premium-modal-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.premium-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.premium-modal-btn {
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
}

.premium-modal-btn.primary {
    background: linear-gradient(135deg, #eab308, #fbbf24);
    color: #0f172a;
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.4);
}

.premium-modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(234, 179, 8, 0.6);
}

.premium-modal-btn.outline {
    background: transparent;
    border: 2px solid #25d366;
    color: #25d366;
}

.premium-modal-btn.outline:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .premium-modal-dialog {
        padding: 2rem 1.5rem;
    }
    
    .premium-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== GLASS PANEL ==================== */
.glass-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

/* ==================== SKIP TO MAIN ==================== */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--navy-dark);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-main:focus {
    top: 20px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .faq-layout {
        grid-template-columns: 350px 1fr;
        gap: 3rem;
    }
    
    .faq-intro {
        padding: 2rem;
    }
}

@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .faq-intro {
        position: static;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .hero-inner {
        gap: 2rem;
    }

    .campaign-spotlight {
        padding: 2rem;
        gap: 1.5rem;
    }

    .campaign-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        gap: 2rem;
    }

    .faq-intro {
        padding: 1.75rem;
    }
    
    .faq-intro h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .campaign-spotlight {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .campaign-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicles-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 36px;
    }
    
    .vehicle-controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        padding: 0 20px;
    }

    .testimonial-card {
        flex: 0 0 320px;
    }
}

@media (max-width: 480px) {
    .hero-search {
        padding: 24px;
    }

    .search-row {
        grid-template-columns: 1fr;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== 🎨 MISSING CRITICAL STYLES - COMPLETE SITE ==================== */

/* Glass Panel - Universal Premium Component */
.glass-panel {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.12) 100%
    );
    background-size: 200% 200%;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 28px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        0 0 80px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
    animation: glassShimmer 4s ease infinite;
}

@keyframes glassShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Trust Badges Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.trust-card {
    padding: 32px 24px;
    text-align: center;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.95) 0%,
        rgba(30, 39, 73, 0.9) 100%
    );
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trust-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.trust-card i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
}

.trust-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-light);
}

.trust-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Trust Stats */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    padding: 40px;
    text-align: center;
}

.trust-stats .stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header.center {
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 212, 255, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientText 5s ease infinite;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    position: relative;
    background: var(--navy-dark);
    overflow: visible !important; /* Allow content to display normally */
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
    overflow: visible !important;
    width: 100%;
}

.service-hero {
    padding: 48px;
    grid-column: 1 / -1;
}

.service-hero-header {
    margin-bottom: 32px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.service-hero h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.3;
}

.service-hero p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
}

.service-hero-highlights {
    list-style: none;
    margin: 32px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-hero-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 16px;
}

.service-hero-highlights i {
    color: var(--gold);
    font-size: 18px;
}

.service-hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
}

.hero-meta i {
    color: var(--gold);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    overflow: visible !important;
    width: 100%;
}

.service-card {
    padding: 36px;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.95) 0%,
        rgba(30, 39, 73, 0.9) 100%
    );
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 212, 255, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    margin-bottom: 24px;
    font-size: 28px;
    color: var(--gold);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-light);
}

.service-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 15px;
}

.service-features i {
    color: var(--gold);
    font-size: 14px;
}

/* ==================== VEHICLES SECTION ==================== */
.vehicles {
    position: relative;
    background: var(--navy-dark);
    overflow: hidden;
}

.vehicle-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    gap: 32px;
    flex-wrap: wrap;
    }

.vehicle-highlights {
    display: flex;
    gap: 32px;
    padding: 24px 32px;
    flex: 1;
    min-width: 300px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    }

.highlight-item i {
    font-size: 32px;
    color: var(--gold);
}

.highlight-item strong {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    font-weight: 700;
}

.highlight-item span {
    font-size: 13px;
    color: var(--text-muted);
    }

.vehicle-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-color: rgba(212, 175, 55, 0.6);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.vehicle-card {
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.95) 0%,
        rgba(30, 39, 73, 0.9) 100%
    );
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 32px;
    overflow: hidden;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(212, 175, 55, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    min-height: 580px;
    contain: layout style paint;
}

.vehicle-card:hover {
    transform: translateY(-16px) rotateX(3deg) rotateY(-2deg) scale(1.03);
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.7),
        0 0 120px rgba(212, 175, 55, 0.3),
        0 25px 70px rgba(212, 175, 55, 0.2);
}

.vehicle-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
}

.vehicle-info {
    padding: 32px;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.vehicle-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 8px;
}

.vehicle-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.vehicle-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.vehicle-feature i {
    color: var(--gold);
    font-size: 16px;
}

.vehicle-price {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.rent-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 16px;
    color: var(--navy-dark);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.rent-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.6);
}

.vehicles-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px;
    margin-top: 48px;
    gap: 32px;
    flex-wrap: wrap;
}

.vehicles-footer-copy {
    flex: 1;
    min-width: 300px;
}

.vehicles-footer-copy strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 12px;
}

.vehicles-footer-copy p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.vehicles-footer-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

    .service-grid,
.campaign-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== CAMPAIGNS SECTION ==================== */
.campaigns {
    position: relative;
    background: var(--navy-dark);
    overflow: hidden;
}

.campaign-spotlight {
    padding: 48px;
    margin-bottom: 48px;
}

.spotlight-copy {
    max-width: 700px;
}

.campaign-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 68, 68, 0.15);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 50px;
    color: #ff4444;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.campaign-spotlight h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.2;
}

.campaign-spotlight p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.campaign-points {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.campaign-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 16px;
}

.campaign-points i {
    color: var(--gold);
    font-size: 16px;
    }

    .campaign-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.campaign-countdown {
    text-align: center;
    padding: 32px;
    background: rgba(10, 14, 39, 0.8);
    border-radius: 20px;
    margin-top: 32px;
}

.countdown-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    min-width: 80px;
}

.countdown-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold-light);
}

.countdown-unit {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.campaign-card {
    padding: 36px;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.95) 0%,
        rgba(30, 39, 73, 0.9) 100%
    );
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.campaign-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
}

.campaign-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 212, 255, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    margin-bottom: 24px;
    font-size: 28px;
    color: var(--gold);
}

.campaign-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-light);
}

.campaign-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    position: relative;
    background: var(--navy-dark);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    gap: 32px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 400px;
    padding: 40px;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.95) 0%,
        rgba(30, 39, 73, 0.9) 100%
    );
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    min-height: 320px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy-dark);
}

.testimonial-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
}

.testimonial-header span {
    font-size: 14px;
    color: var(--text-muted);
}

.source-badge {
    margin-left: auto;
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 12px;
    color: var(--gold-light);
}

.testimonial-quote {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-date {
    font-size: 13px;
    color: var(--text-muted);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

/* ==================== FAQ SECTION ==================== */
.faq {
    position: relative;
    background: var(--navy-dark);
    overflow: hidden;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
}

.faq-intro {
    padding: 48px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.faq-intro h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-light);
}

.faq-intro p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.faq-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.faq-meta div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 15px;
}

.faq-meta i {
    color: var(--gold);
    font-size: 18px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.95) 0%,
        rgba(30, 39, 73, 0.9) 100%
    );
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    flex: 1;
}

.faq-question i {
    color: var(--gold);
    font-size: 20px;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer-content {
    padding: 0 28px 24px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    position: relative;
    background: var(--navy-dark);
    overflow: hidden;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info {
    padding: 48px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-light);
}

.contact-info p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--gold);
    font-size: 20px;
}

.contact-item-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-item-content p,
.contact-item-content a {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: var(--gold-light);
}

.contact-form {
    padding: 48px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(255, 255, 255, 0.12);
    }

    .form-group textarea {
    min-height: 140px;
    resize: vertical;
    }

.form-error {
    display: block;
    color: #ff4444;
    font-size: 13px;
    margin-top: 6px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, #0a0e27 0%, #141b3d 100%);
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 24px;
}

.footer-column p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient-gold);
    border-color: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-4px) scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==================== HERO ELEMENTS ==================== */
.hero-highlights {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
}

.highlight-card i {
    font-size: 32px;
    color: var(--gold);
}

.highlight-card strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-light);
}

.highlight-card span {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-search {
    padding: 40px;
    margin-top: 40px;
}

.hero-search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.hero-search-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-search-field label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.field-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.field-input:focus-within {
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(255, 255, 255, 0.12);
}

.field-input i {
    color: var(--gold);
    font-size: 18px;
}

.field-input input,
.field-input select {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 15px;
    font-family: inherit;
}

.field-input input:focus,
.field-input select:focus {
    outline: none;
}

.hero-search-actions {
    display: flex;
    gap: 16px;
}

.hero-media {
    position: relative;
}

.hero-car-card {
    padding: 32px;
    position: relative;
    z-index: 1;
}

.hero-car-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.badge {
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.availability {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 13px;
}

.hero-car-visual {
    position: relative;
    height: 200px;
    margin-bottom: 24px;
}

.car-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-car-meta {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-car-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.hero-car-meta i {
    color: var(--gold);
    font-size: 16px;
}

.hero-floating-card {
    position: absolute;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}

.hero-floating-card.secondary {
    top: 60%;
    right: -20px;
}

.floating-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
}

.floating-label i {
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 24px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
}
}

/* ==================== TESTIMONIALS ADDITIONAL ==================== */
.testimonials-summary {
    padding: 48px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
        gap: 32px;
    flex-wrap: wrap;
    }

.summary-score {
    display: flex;
        flex-direction: column;
    align-items: center;
    text-align: center;
    }

.summary-score strong {
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    }

.summary-score span {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

.summary-divider {
    width: 2px;
    height: 60px;
    background: rgba(212, 175, 55, 0.3);
}

.summary-detail {
    flex: 1;
    min-width: 300px;
}

.summary-detail p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 12px;
    }

.summary-detail i {
    color: var(--gold);
    }

.summary-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.summary-badges span {
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonials-wrapper {
    position: relative;
    }

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars i {
    color: var(--gold);
    font-size: 16px;
}

.countdown-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.countdown-note i {
    color: var(--gold);
}

/* ==================== ABOUT SECTION ==================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 100%;
}

.about-text {
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientText 5s ease infinite;
}

.about-text p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.about-stats .stat {
    text-align: center;
}

.about-stats .stat h3 {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.about-stats .stat p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

.about-image {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.about-image i {
    font-size: 120px;
    color: var(--gold);
    opacity: 0.3;
    animation: iconFloat 4s ease-in-out infinite;
}

/* ==================== SEARCH RESULTS ==================== */
.search-results {
    position: relative;
    background: var(--navy-dark);
    padding: 80px 0;
}

.search-results-header {
    margin-bottom: 40px;
}

.search-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.edit-search-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.edit-search-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.6);
}

.advanced-filters {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
}

.filter-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 15px;
    font-family: inherit;
}

.feature-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-light);
    font-size: 15px;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--gold);
}

.results-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.view-mode {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.6);
    color: var(--gold-light);
}

/* ==================== FOOTER GRID & BRAND ==================== */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo i {
    font-size: 36px;
    color: var(--gold);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
}

.footer-logo span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.footer-logo small {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-top: 2px;
    font-weight: 400;
}

.footer-brand p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 400px;
}

/* ==================== FOOTER LOCATION SECTION ==================== */
.footer-location-section {
    margin: 60px 0 48px;
    padding: 48px;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.95) 0%,
        rgba(30, 39, 73, 0.9) 100%
    );
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 32px;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(212, 175, 55, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer-location-section::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 32px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.4),
        rgba(0, 212, 255, 0.3),
        rgba(212, 175, 55, 0.4)
    );
    background-size: 200% 200%;
    opacity: 0.6;
    filter: blur(20px);
    z-index: -1;
    animation: borderGlow 4s ease infinite;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.location-header i {
    font-size: 48px;
    color: var(--gold);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
}

.location-header h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientText 5s ease infinite;
}

.location-header p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-map-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) brightness(1) contrast(1);
}

.map-overlay-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.95) 0%,
        rgba(212, 175, 55, 0.85) 100%
    );
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 10;
}

.map-overlay-badge i {
    font-size: 16px;
}

.location-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.location-info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(8px);
}

.location-icon {
    width: 52px;
    height: 52px;
        display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 212, 255, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    color: var(--gold);
    font-size: 22px;
    flex-shrink: 0;
    }

.location-details h5 {
        font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    }

.location-details p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    }

.get-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.15) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 8px;
    }

.get-directions-btn:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.25) 100%);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    }

.get-directions-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
    }

.get-directions-btn:hover i {
    transform: translateX(4px);
    }

/* Footer Contact List Icons */
.footer-column ul li i {
    color: var(--gold);
    font-size: 16px;
    margin-right: 10px;
    width: 20px;
    display: inline-block;
    text-align: center;
    flex-shrink: 0;
    }

.footer-column ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    }

.footer-column ul li:last-child {
    align-items: center;
}

.footer-column ul li a {
    flex: 1;
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.footer-bottom span {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links-inline {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links-inline a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-inline a:hover {
    color: var(--gold-light);
}

/* Responsive Footer Updates */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
}

    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .location-map-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
}

    .footer-location-section {
        padding: 32px 24px;
    }
    
    .location-header {
        flex-direction: column;
        text-align: center;
    }
    
    .location-header h3 {
        font-size: 28px;
    }
    
    .location-info-cards {
        gap: 16px;
}

    .service-grid {
        grid-template-columns: 1fr;
    }
}

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