/* ==========================================
   TOYOTA GAZOO RACING — ULTRA-LUXURY DESIGN SYSTEM
   ========================================== */

:root {
    /* Color Palette */
    --obsidian: #07080A;
    --obsidian-surface: #0E1015;
    --carbon-dark: #121418;
    --carbon-card: #181B22;
    --gazoo-red: #EB0A1E;
    --gazoo-red-hover: #C70919;
    --gazoo-red-glow: rgba(235, 10, 30, 0.4);
    --gazoo-red-ambient: rgba(235, 10, 30, 0.12);
    
    --ice-white: #FFFFFF;
    --platinum-bg: #F4F5F9;
    --card-light: #FFFFFF;
    --text-primary-dark: #FFFFFF;
    --text-secondary-dark: #9CA3AF;
    --text-primary-light: #111827;
    --text-secondary-light: #4B5563;
    
    /* Metallic & Gradients */
    --gradient-hero: radial-gradient(circle at 75% 30%, rgba(235, 10, 30, 0.15) 0%, transparent 55%),
                     radial-gradient(circle at 20% 80%, rgba(235, 10, 30, 0.08) 0%, transparent 50%),
                     #07080A;
    --gradient-red: linear-gradient(135deg, #EB0A1E 0%, #FF2D3B 50%, #C70919 100%);
    --gradient-metallic: linear-gradient(135deg, #FFFFFF 0%, #E6E9F0 50%, #B8BCC6 100%);
    --gradient-card-dark: linear-gradient(145deg, #1A1D24 0%, #111317 100%);

    /* Glassmorphism */
    --glass-bg-dark: rgba(18, 20, 24, 0.85);
    --glass-border-dark: rgba(255, 255, 255, 0.12);
    --glass-bg-light: rgba(255, 255, 255, 0.85);
    --glass-border-light: rgba(0, 0, 0, 0.08);

    /* Shadows & Radii */
    --shadow-floating: 0 20px 50px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-red-neon: 0 0 30px rgba(235, 10, 30, 0.35);
    
    --radius-sm: 0.75rem;
    --radius-md: 1.25rem;
    --radius-lg: 1.75rem;
    --radius-full: 9999px;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--obsidian);
    color: var(--text-primary-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background: var(--obsidian);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s;
}
#loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(235, 10, 30, 0.2);
    border-top-color: var(--gazoo-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Typography & Utility Colors */
.text-gazoo-red { color: var(--gazoo-red) !important; }
.bg-gazoo-red { background-color: var(--gazoo-red) !important; }

.text-gradient-red {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-metallic {
    background: var(--gradient-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-gazoo {
    background: var(--gradient-red);
    color: #FFFFFF !important;
    border: none;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 20px rgba(235, 10, 30, 0.35);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-gazoo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(235, 10, 30, 0.5);
    color: #FFFFFF !important;
}
.btn-gazoo:active {
    transform: scale(0.98);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF !important;
    border: none;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    color: #FFFFFF !important;
}

.btn-outline-gazoo {
    background: transparent;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-outline-gazoo:hover {
    border-color: var(--gazoo-red);
    background: rgba(235, 10, 30, 0.1);
    color: #FFFFFF !important;
    transform: translateY(-3px);
}

/* Navbar */
#mainNav {
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
    background: transparent;
    z-index: 1030;
}
#mainNav.scrolled {
    background: rgba(7, 8, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border-dark);
    padding: 0.75rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.navbar-brand .brand-icon {
    height: 36px;
    width: auto;
    display: flex;
    align-items: center;
}
.navbar-brand .brand-text span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #FFFFFF;
}
.navbar-brand .brand-text small {
    color: var(--gazoo-red);
    font-weight: 700;
}

#mainNav .nav-link {
    color: #D1D5DB;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: #FFFFFF;
}
#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gazoo-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    transform: scaleX(1);
}

/* Mobile Responsive Navbar Drawer */
@media (max-width: 991.98px) {
    #mainNav {
        background: rgba(7, 8, 10, 0.95) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.85rem 0 !important;
    }

    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 12px !important;
        padding: 0.4rem 0.75rem !important;
        outline: none !important;
        box-shadow: none !important;
        transition: all 0.3s ease;
    }
    .navbar-toggler:hover,
    .navbar-toggler:focus {
        border-color: var(--gazoo-red) !important;
        background: rgba(235, 10, 30, 0.15) !important;
    }
    .navbar-toggler .bi-list {
        color: #FFFFFF;
        font-size: 1.65rem;
    }

    #mainNav .navbar-collapse {
        background: rgba(14, 16, 21, 0.98) !important;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-md);
        padding: 1.25rem;
        margin-top: 0.85rem;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 30px rgba(235, 10, 30, 0.15);
    }

    #mainNav .navbar-nav {
        gap: 0.35rem !important;
    }

    #mainNav .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 10px;
        color: #D1D5DB !important;
        font-weight: 600;
        transition: all 0.2s ease;
    }
    #mainNav .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #FFFFFF !important;
    }
    #mainNav .nav-link.active {
        color: var(--gazoo-red) !important;
        background: rgba(235, 10, 30, 0.15);
        border: 1px solid rgba(235, 10, 30, 0.3);
    }
    #mainNav .nav-link::after {
        display: none !important;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--gradient-hero);
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(235, 10, 30, 0.2) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
    animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 0.9; }
}

.badge-hero {
    display: inline-block;
}
.badge-hero .badge {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #E5E7EB;
    font-weight: 600;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
}
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}
.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gazoo-red);
    margin: 0;
    line-height: 1;
}
.stat-item small {
    color: #9CA3AF;
    font-size: 0.85rem;
    font-weight: 500;
}

/* FIXED CAR CONTAINER & SLIDESHOW */
.hero-car-wrapper {
    position: relative;
    text-align: center;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 25px;
}

.hero-car-img {
    width: 100%;
    max-width: 580px;
    height: 350px;
    object-fit: contain;
    object-position: center;
    padding: 15px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, rgba(10, 12, 16, 0.8) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.7);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-car-img.fade-out {
    opacity: 0.1;
    transform: scale(0.96);
}

.floating-card {
    position: absolute;
    background: rgba(18, 20, 24, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    z-index: 5;
    animation: floatAnim 4s ease-in-out infinite;
    transition: all 0.3s ease;
}
.floating-card.card-1 { top: 3%; left: -3%; animation-delay: 0s; }
.floating-card.card-2 { bottom: 8%; right: -1%; animation-delay: 2s; }

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

/* Hero Carousel Controls Bar */
.hero-car-controls {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(14, 16, 21, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    padding: 6px 16px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(235, 10, 30, 0.15);
    z-index: 10;
    white-space: nowrap;
}

.hero-car-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    padding: 0;
}
.hero-car-btn:hover {
    background: var(--gazoo-red);
    border-color: var(--gazoo-red);
    color: #FFFFFF;
    transform: scale(1.12);
}

.hero-car-title-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    min-width: 150px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.hero-car-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-car-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-car-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}
.hero-car-dot.active {
    width: 18px;
    border-radius: 10px;
    background: var(--gazoo-red);
    box-shadow: 0 0 10px rgba(235, 10, 30, 0.6);
}

/* Search Bar Section */
.search-section {
    position: relative;
    z-index: 20;
    margin-top: -30px;
    margin-bottom: 40px;
}
.search-card {
    background: #14171D;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.search-card .form-control,
.search-card .form-select {
    background-color: #0B0D11 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #FFFFFF !important;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
}
.search-card .form-control::placeholder { color: #6B7280; }
.search-card .form-control:focus,
.search-card .form-select:focus {
    border-color: var(--gazoo-red) !important;
    box-shadow: 0 0 0 3px rgba(235, 10, 30, 0.25) !important;
}

/* Section Common */
.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-top: 0.5rem;
}
.section-subtitle {
    color: var(--gazoo-red);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Car Showcase Section */
#mobil {
    background-color: #0B0D11;
    padding: 5rem 0;
}
.car-card {
    background: #14171E;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.car-card:hover {
    transform: translateY(-8px);
    border-color: rgba(235, 10, 30, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(235, 10, 30, 0.15);
}

.car-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: radial-gradient(circle at center, #1c202a 0%, #0a0c10 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    z-index: 1;
}
.car-img-box img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.6));
}
.car-card:hover .car-img-box img {
    transform: scale(1.08);
}
.car-badge-top {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gazoo-red);
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.car-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.car-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 0.25rem;
}
.car-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gazoo-red);
    margin-bottom: 1rem;
}
.car-specs {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #9CA3AF;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.car-specs span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.car-specs i { color: var(--gazoo-red); }

/* Promo Section */
#promo {
    background: #F4F5F8;
    color: var(--text-primary-light);
    padding: 5rem 0;
}
#promo h2 { color: #111827; }
#promo p { color: #4B5563; }

.countdown-wrapper-luxury {
    background: #0f1218;
    border: 1px solid rgba(235, 10, 30, 0.35);
    border-radius: var(--radius-lg);
    padding: 0.65rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(235, 10, 30, 0.15);
    backdrop-filter: blur(10px);
}

.countdown-label-box {
    display: flex;
    align-items: center;
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 0.85rem;
}

.countdown-digits-grid {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.digit-box {
    background: #171b24;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.55rem;
    min-width: 46px;
    text-align: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.digit-box-active {
    background: rgba(235, 10, 30, 0.15);
    border-color: rgba(235, 10, 30, 0.5);
}

.digit-num {
    display: block;
    font-family: 'Outfit', 'Inter', monospace;
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.digit-box-active .digit-num {
    color: var(--gazoo-red);
}

.digit-unit {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    color: #9CA3AF;
    text-transform: uppercase;
    margin-top: 3px;
    letter-spacing: 0.04em;
}

.digit-sep {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gazoo-red);
    margin: 0 1px;
    animation: blinkColon 1s ease-in-out infinite;
}

@keyframes blinkColon {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@media (max-width: 576px) {
    .countdown-wrapper-luxury {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }
    .countdown-label-box {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 0.5rem;
        justify-content: center;
    }
}

.promo-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
}
.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.promo-ribbon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gazoo-red);
    color: #FFF;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

/* About / Why Choose Me Section */
#tentang {
    background: #0E1015;
    padding: 5rem 0;
}
.why-item-box {
    background: #161922;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}
.why-item-box:hover {
    border-color: var(--gazoo-red);
    transform: translateY(-3px);
}

/* Credit Simulator */
#simulasi {
    background: #07080A;
    padding: 5.5rem 0;
}
.calc-card-luxury {
    background: #14171E;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.result-box-luxury {
    background: linear-gradient(135deg, rgba(235, 10, 30, 0.15) 0%, rgba(18, 20, 24, 0.9) 100%);
    border: 1px solid rgba(235, 10, 30, 0.3);
    border-radius: var(--radius-md);
    padding: 2rem;
}
.form-range::-webkit-slider-thumb {
    background: var(--gazoo-red);
    box-shadow: 0 0 15px rgba(235, 10, 30, 0.6);
}

/* Comparison Section */
.compare-section {
    background: #0E1015;
    padding: 5rem 0;
}
.vs-badge-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gazoo-red);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 0 25px rgba(235, 10, 30, 0.5);
}

/* Testimonials Photo Carousel Section */
#testimoni {
    background: #F4F5F8;
    color: var(--text-primary-light);
    padding: 5rem 0;
    overflow: hidden;
}
#testimoni h2 { color: #111827; }

.testimonialSwiper {
    padding: 1.5rem 0 3.5rem;
}
.testimonialSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.testimonial-photo-card {
    width: 290px;
    height: 360px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-photo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.testimonial-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
.testimonial-photo-card:hover img {
    transform: scale(1.08);
}
.testimonial-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-photo-card:hover .testimonial-photo-overlay {
    opacity: 1;
}

/* Gallery Section */
#galeri {
    background: #0B0D11;
    padding: 5rem 0;
}
.gallery-item-box {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #14171E;
}
.gallery-item-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}
.gallery-item-box:hover img {
    transform: scale(1.1);
}
.gallery-overlay-icon {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item-box:hover .gallery-overlay-icon {
    opacity: 1;
}

/* Modern Ultra-Sleek FAQ Section */
#faq {
    background: #07080A;
    padding: 6rem 0;
    scroll-margin-top: 80px;
}

.faq-help-box {
    background: #14171E;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.faq-card-modern {
    background: #12151C;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-card-modern:hover {
    border-color: rgba(235, 10, 30, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.faq-header-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.35rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-header-btn:focus {
    outline: none;
}

.faq-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--gazoo-red);
    background: rgba(235, 10, 30, 0.12);
    padding: 0.25rem 0.65rem;
    border-radius: 8px;
    border: 1px solid rgba(235, 10, 30, 0.2);
}

.faq-question-text {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
}

.faq-icon-toggle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-header-btn:not(.collapsed) {
    background: rgba(235, 10, 30, 0.06);
}
.faq-header-btn:not(.collapsed) .faq-question-text {
    color: var(--gazoo-red);
}
.faq-header-btn:not(.collapsed) .faq-icon-toggle {
    transform: rotate(180deg);
    background: var(--gazoo-red);
    color: #FFFFFF;
    border-color: var(--gazoo-red);
    box-shadow: 0 0 15px rgba(235, 10, 30, 0.4);
}

.faq-answer-body {
    padding: 0 1.5rem 1.5rem 4.1rem;
    color: #9CA3AF;
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1rem;
}
@media (max-width: 576px) {
    .faq-answer-body {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox-modal.active { display: flex; }
.lightbox-modal img { max-width: 90%; max-height: 85vh; border-radius: var(--radius-md); object-fit: contain; }

/* Contact Section */
#kontak {
    background: #0E1015;
    padding: 5rem 0;
}

/* Footer */
footer {
    background: #050608;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 0 2rem;
    color: #9CA3AF;
}

/* WhatsApp Widget & Close Button */
.wa-widget-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.wa-popup-box {
    position: relative;
    background: #161922;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    width: 290px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    margin-bottom: 0.75rem;
    display: none;
}
.wa-popup-box.active { display: block; }

.wa-close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    color: #9CA3AF;
    font-size: 1rem;
    line-height: 1;
    padding: 4px 6px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wa-close-btn:hover {
    color: #FFFFFF;
    background: rgba(235, 10, 30, 0.85);
}

/* Showroom Central Display Banner Card */
.showroom-banner-card {
    cursor: pointer;
    background: #0D0F14;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.showroom-banner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(235, 10, 30, 0.6) !important;
    box-shadow: 0 20px 45px rgba(235, 10, 30, 0.25), 0 0 30px rgba(0, 0, 0, 0.8) !important;
}
.showroom-banner-card img {
    transition: transform 0.6s ease;
}
.showroom-banner-card:hover img {
    transform: scale(1.015);
}
.banner-overlay-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(15, 18, 24, 0.9);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: var(--transition-smooth);
}
.showroom-banner-card:hover .banner-overlay-badge {
    background: var(--gazoo-red);
    border-color: var(--gazoo-red);
}

/* ==========================================
   MOBILE RESPONSIVE & OVERFLOW FIXES
   ========================================== */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
    width: 100%;
}

.hero-section, .search-section, footer, header, nav, section, main, .container {
    max-width: 100vw;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
        min-height: auto;
    }
    .hero-bg-glow {
        width: 260px;
        height: 260px;
        right: -60px;
        top: 10%;
    }
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.2;
    }
    .hero-car-wrapper {
        min-height: 290px;
        margin-top: 1.5rem;
        padding-bottom: 25px;
    }
    .hero-car-img {
        max-width: 100%;
        height: 210px;
        padding: 8px;
    }
    .floating-card {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    .floating-card.card-1 {
        top: -5px;
        left: 0;
    }
    .floating-card.card-2 {
        bottom: 25px;
        right: 0;
    }
    .floating-card small {
        font-size: 0.7rem;
    }
    .hero-car-controls {
        bottom: -8px;
        padding: 4px 12px;
        gap: 6px;
        max-width: 92vw;
    }
    .hero-car-title-badge {
        font-size: 0.75rem;
        min-width: 110px;
    }
    .hero-car-btn {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
}
