/* ================================================
   DRIVE365 â€” PREMIUM FRONTEND DESIGN SYSTEM
   Black & Gold Theme
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Primary Colors */
    --black-950: #030507;
    --black-900: #0B0F19;
    --black-800: #111827;
    --black-700: #1a2035;
    --black-600: #232b3e;
    --black-500: #2d3548;

    /* Gold Colors */
    --gold-300: #FFD97D;
    --gold-400: #F5C842;
    --gold-500: #D4AF37;
    --gold-600: #C4981A;
    --gold-700: #A67C00;
    --gold-800: #8B6914;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5C842 50%, #D4AF37 100%);
    --gold-gradient-hover: linear-gradient(135deg, #F5C842 0%, #FFD97D 50%, #F5C842 100%);

    /* Text Colors */
    --text-white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.55);
    --text-dim: rgba(255, 255, 255, 0.35);
    --text-gold: #D4AF37;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(212, 175, 55, 0.3);

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1100px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);
    --shadow-gold-lg: 0 8px 40px rgba(212, 175, 55, 0.35);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ---- Custom Gold Scrollbar ---- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black-950);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-500) 0%, var(--gold-700) 100%);
    border-radius: 10px;
    border: 2px solid var(--black-950);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold-400) 0%, var(--gold-500) 100%);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--gold-500) var(--black-950);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black-900);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---- Scroll to Top Button ---- */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--black-900);
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    background: var(--gold-gradient-hover);
}

.scroll-to-top::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: scrollBtnPulse 2s ease-in-out infinite;
}

@keyframes scrollBtnPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
/* Base: hidden state */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: opacity, transform;
}

/* Delay support via stagger */
[data-reveal-delay="1"] {
    transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
    transition-delay: 0.2s;
}

[data-reveal-delay="3"] {
    transition-delay: 0.3s;
}

[data-reveal-delay="4"] {
    transition-delay: 0.4s;
}

[data-reveal-delay="5"] {
    transition-delay: 0.5s;
}

[data-reveal-delay="6"] {
    transition-delay: 0.6s;
}

[data-reveal-delay="7"] {
    transition-delay: 0.7s;
}

[data-reveal-delay="8"] {
    transition-delay: 0.8s;
}

/* Animation types – hidden state */
[data-reveal="fade-up"] {
    transform: translateY(60px);
}

[data-reveal="fade-down"] {
    transform: translateY(-60px);
}

[data-reveal="fade-left"] {
    transform: translateX(-60px);
}

[data-reveal="fade-right"] {
    transform: translateX(60px);
}

[data-reveal="zoom-in"] {
    transform: scale(0.85);
}

[data-reveal="fade-in"] {
    transform: none;
}

/* Revealed state */
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Children stagger inside a reveal group */
[data-reveal-children].revealed>* {
    opacity: 0;
    animation: revealChild 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

[data-reveal-children].revealed>*:nth-child(1) {
    animation-delay: 0.05s;
}

[data-reveal-children].revealed>*:nth-child(2) {
    animation-delay: 0.1s;
}

[data-reveal-children].revealed>*:nth-child(3) {
    animation-delay: 0.15s;
}

[data-reveal-children].revealed>*:nth-child(4) {
    animation-delay: 0.2s;
}

[data-reveal-children].revealed>*:nth-child(5) {
    animation-delay: 0.25s;
}

[data-reveal-children].revealed>*:nth-child(6) {
    animation-delay: 0.3s;
}

[data-reveal-children].revealed>*:nth-child(7) {
    animation-delay: 0.35s;
}

[data-reveal-children].revealed>*:nth-child(8) {
    animation-delay: 0.4s;
}

[data-reveal-children].revealed>*:nth-child(9) {
    animation-delay: 0.45s;
}

[data-reveal-children].revealed>*:nth-child(10) {
    animation-delay: 0.5s;
}

[data-reveal-children].revealed>*:nth-child(11) {
    animation-delay: 0.55s;
}

[data-reveal-children].revealed>*:nth-child(12) {
    animation-delay: 0.6s;
}

[data-reveal-children].revealed>*:nth-child(13) {
    animation-delay: 0.65s;
}

@keyframes revealChild {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   TOP BAR (Above Navbar)
   ============================================ */
.topbar {
    background: var(--black-950);
    border-bottom: none;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

/* ---- Left: Contact Info ---- */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.topbar-item:hover {
    color: var(--gold-400);
}

.topbar-item i {
    font-size: 12px;
    color: var(--gold-500);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Separator dots between items */
.topbar-left .topbar-item:not(:last-child)::after {
    content: '';
    width: 4px;
    height: 4px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    margin-left: 16px;
    flex-shrink: 0;
}

/* ---- Right: Social Icons ---- */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.topbar-social::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.topbar-social i {
    position: relative;
    z-index: 1;
}

.topbar-social:hover {
    color: var(--black-900);
    border-color: var(--gold-500);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.topbar-social:hover::before {
    opacity: 1;
}

/* ---- Topbar Responsive ---- */
@media (max-width: 992px) {
    .topbar-left {
        gap: 14px;
    }

    .topbar-left .topbar-item:not(:last-child)::after {
        margin-left: 6px;
    }

    .topbar-location {
        display: none;
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 0;
        overflow: hidden;
    }

    .topbar-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
        gap: 10px;
    }

    /* Left side — cycling contact items */
    .topbar-left {
        display: flex;
        flex-wrap: nowrap;
        overflow: hidden;
        gap: 0;
        flex: 1;
        min-width: 0;
        position: relative;
        height: 20px;
    }

    .topbar-left .topbar-item {
        position: absolute;
        top: 0;
        left: 0;
        white-space: nowrap;
        font-size: 0.72rem;
        gap: 6px;
        opacity: 0;
        transform: translateY(8px);
        animation: topbarCycle 8s ease-in-out infinite;
    }

    .topbar-left .topbar-item:nth-child(1) {
        animation-delay: 0s;
    }

    .topbar-left .topbar-item:nth-child(2) {
        animation-delay: 4s;
    }

    .topbar-left .topbar-item:not(:last-child)::after {
        display: none;
    }

    .topbar-left .topbar-item i {
        font-size: 0.65rem;
    }

    .topbar-location {
        display: none !important;
    }

    @keyframes topbarCycle {
        0% {
            opacity: 0;
            transform: translateY(8px);
        }

        5% {
            opacity: 1;
            transform: translateY(0);
        }

        45% {
            opacity: 1;
            transform: translateY(0);
        }

        50% {
            opacity: 0;
            transform: translateY(-8px);
        }

        100% {
            opacity: 0;
            transform: translateY(-8px);
        }
    }

    /* Divider */
    .topbar-right {
        gap: 6px;
        flex-shrink: 0;
        padding-left: 10px;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }

    .topbar-social {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }

    .topbar-social::before {
        display: none;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.heading-xl {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
}

.heading-lg {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}

.heading-md {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 700;
    color: var(--text-white);
}

.heading-sm {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted {
    color: var(--text-muted);
}

.section-subtitle {
    color: var(--gold-500);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 16px auto 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--black-900);
    box-shadow: var(--shadow-gold);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.btn-outline {
    background: transparent;
    color: var(--gold-500);
    border: 2px solid var(--gold-500);
}

.btn-outline:hover {
    background: var(--gold-500);
    color: var(--black-900);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--glass-bg);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-dark:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
    border-radius: 14px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 10px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.card-body {
    padding: 24px;
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 37px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    background: #FFFFFF;
    box-shadow: none;
    transition: top 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: #FFFFFF;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    top: 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-brand img {
    height: 42px;
    width: auto;
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.03);
}

/* Center nav wrapper */
.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav a {
    color: #0B0F19;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 6px 0;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: var(--transition);
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
    width: 100%;
}

.navbar-nav a.active {
    color: #0B0F19;
    font-weight: 700;
}

.navbar-nav a:hover {
    color: var(--gold-600);
}

/* CTA button */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.navbar-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #0B0F19;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(212, 175, 55, 0.08);
}

.navbar-cart:hover {
    background: rgba(212, 175, 55, 0.18);
    color: var(--gold-600);
    transform: translateY(-1px);
}

.navbar-cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: #0B0F19;
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 50%;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.4);
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-gradient);
    color: #0B0F19;
    font-weight: 700;
    font-size: 0.82rem;
    border: none;
    cursor: pointer;
    padding: 11px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.25);
    letter-spacing: 0.2px;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
}

.btn-nav-cta i {
    font-size: 0.75rem;
}

/* Mobile hamburger */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.navbar-toggle span {
    width: 22px;
    height: 2px;
    background: #0B0F19;
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile nav — handled by mobile.css */
@media (max-width: 768px) {
    .navbar-center {
        display: none;
    }

    .navbar-actions {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, var(--black-900) 0%, var(--black-950) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: var(--gold-400);
    margin-bottom: 24px;
}

.hero-badge::before {
    content: 'â˜…';
    font-size: 0.75rem;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.hero-stat-number {
    font-family: 'Cairo', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.3s both;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* ============================================
   SEARCH BOX
   ============================================ */
.search-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.search-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.search-field label {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: 'Cairo', sans-serif;
    transition: var(--transition);
    outline: none;
}

.search-field input:focus,
.search-field select:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.search-field select option {
    background: var(--black-800);
    color: var(--text-white);
}

/* ============================================
   VEHICLE CARDS
   ============================================ */
.vehicle-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.vehicle-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.vehicle-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.vehicle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.vehicle-card:hover .vehicle-card-image img {
    transform: scale(1.05);
}

.vehicle-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold-gradient);
    color: var(--black-900);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vehicle-card-body {
    padding: 24px;
}

.vehicle-card-category {
    color: var(--gold-500);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.vehicle-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.vehicle-card-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.vehicle-card-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.vehicle-card-spec svg {
    width: 16px;
    height: 16px;
    color: var(--gold-500);
}

.vehicle-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.vehicle-card-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-400);
}

.vehicle-card-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* ============================================
   CATEGORIES GRID
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--gold-500);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-4px);
}

.category-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.category-card-name {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.category-card-count {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    opacity: 0.3;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--glass-bg);
    border: 2px solid var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold-400);
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.step-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

.cta-banner h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
}

.cta-banner p {
    position: relative;
    z-index: 2;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn {
    position: relative;
    z-index: 2;
}

/* ============================================
   DRIVEWISE HOMEPAGE â€” FIGMA EXACT REPLICA
   ============================================ */

/* ---- HERO ---- */
.hero-dw {
    position: relative;
    overflow: visible;
    padding: 160px 0 0;
    background: var(--black-900);
}

.hero-dw-gold-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: var(--gold-gradient);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
    overflow: hidden;
}

.hero-dw-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.hero-dw-left {
    flex: 0 1 50%;
    max-width: 540px;
    padding: 40px 0 80px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-dw-title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 16px;
}

.hero-dw-brand {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-dw-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px;
}

.hero-dw-btns {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-dw-right {
    flex: 0 1 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 3;
    animation: fadeInRight 0.8s ease-out 0.2s both;
    align-self: flex-end;
}

.hero-dw-car {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    margin-bottom: -4px;
}

/* ---- DW BUTTONS ---- */
.dw-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    border-radius: 8px;
    padding: 12px 24px;
}

.dw-btn-primary {
    background: var(--gold-gradient);
    color: var(--black-900);
    box-shadow: var(--shadow-gold);
}

.dw-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.dw-btn-ghost {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--glass-border);
}

.dw-btn-ghost:hover {
    border-color: var(--gold-500);
    color: var(--gold-400);
}

.dw-btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: 6px;
}

.dw-btn-lg {
    padding: 16px 36px;
    font-size: 0.95rem;
    border-radius: 10px;
}

/* ---- BOOKING FILTER BAR ---- */
.dw-booking-filter {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 20;
    margin-top: -10px;
    margin-bottom: 32px;
}

.booking-filter-card {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.05);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-filter-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.08);
}

.filter-field {
    flex: 1;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

.filter-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-400);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.filter-label i {
    font-size: 0.7rem;
    opacity: 0.8;
}

.filter-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    font-size: 0.92rem;
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
    padding: 4px 0;
    cursor: pointer;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.filter-input::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(0.7) sepia(1) hue-rotate(10deg) saturate(3);
    cursor: pointer;
}

.filter-input option {
    background: #1a1a2e;
    color: #fff;
    padding: 10px 16px;
}

.filter-input::placeholder {
    color: var(--text-dim);
}

select.filter-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 20px;
    padding-left: 8px;
    text-indent: 4px;
}

.filter-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.25), transparent);
    align-self: stretch;
    margin: 12px 0;
}

.filter-search-btn {
    background: var(--gold-gradient);
    border: none;
    padding: 16px 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--black-900);
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 0 16px 16px 0;
    white-space: nowrap;
    min-width: 140px;
}

.filter-search-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.filter-search-btn:active {
    transform: scale(0.98);
}

.filter-search-btn i {
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .booking-filter-card {
        flex-direction: column;
        border-radius: 16px;
    }

    .filter-field {
        padding: 14px 20px;
    }

    .filter-divider {
        width: 100%;
        height: 1px;
        margin: 0;
        background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.2), transparent);
    }

    .filter-search-btn {
        border-radius: 0 0 16px 16px;
        padding: 16px;
        min-width: unset;
    }
}

/* ---- STATS BAR ---- */
.dw-stats-bar {
    background: var(--gold-gradient);
    padding: 32px 0;
    margin-top: 0;
}

.dw-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
}

.dw-stat {
    position: relative;
}

.dw-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(0, 0, 0, 0.12);
}

.dw-stat-num {
    display: block;
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--black-900);
    line-height: 1;
}

.dw-stat-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 4px;
}

/* ---- SECTIONS ---- */
.dw-section {
    padding: 70px 0;
}

.dw-section-dark {
    background: var(--black-950);
}

.dw-section-title {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 40px;
}

/* ---- DEALS ---- */
.dw-deals-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dw-deal-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-align: center;
    padding-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.dw-deal-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.dw-deal-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(180deg, var(--black-700) 0%, var(--black-800) 100%);
}

.dw-deal-img img {
    max-height: 140px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.dw-deal-card:hover .dw-deal-img img {
    transform: scale(1.06);
}

.dw-deal-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2.5rem;
    color: var(--gold-500);
    opacity: 0.2;
}

.dw-deal-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 14px 0 4px;
}

.dw-deal-price {
    color: var(--gold-400);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

/* ---- CAR SLIDER ---- */
.dw-choose-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.dw-choose-arrows {
    display: flex;
    gap: 10px;
}

.dw-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold-500);
    background: transparent;
    color: var(--gold-500);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.dw-arrow:hover {
    background: var(--gold-500);
    color: var(--black-900);
}

.dw-car-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
}

.dw-car-slider::-webkit-scrollbar {
    display: none;
}

.dw-slider-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.dw-slider-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.dw-slider-card-img {
    height: 160px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--black-700), var(--black-800));
}

.dw-slider-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.dw-slider-card:hover .dw-slider-card-img img {
    transform: scale(1.05);
}

.dw-slider-card-body {
    padding: 16px;
}

.dw-slider-card-cat {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-500);
}

.dw-slider-card-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 4px 0 8px;
}

.dw-slider-card-specs {
    display: flex;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.dw-slider-card-specs span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dw-slider-card-specs i {
    color: var(--gold-500);
    margin-right: 3px;
}

.dw-slider-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
}

.dw-slider-card-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold-400);
}

.dw-slider-card-price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* ---- HOW IT WORKS ---- */
.dw-steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.dw-step {
    text-align: center;
    flex: 1;
    max-width: 260px;
    padding: 0 16px;
}

.dw-step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    border: 2px solid var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold-400);
    background: rgba(212, 175, 55, 0.08);
}

.dw-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.dw-step p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.dw-step-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-700));
    margin-top: 35px;
    flex-shrink: 0;
    opacity: 0.4;
}

/* ---- TESTIMONIALS ---- */
.dw-testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dw-testimonial {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 24px;
    position: relative;
    transition: var(--transition);
}

.dw-testimonial:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-3px);
}

.dw-testimonial-border {
    width: 40px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin-bottom: 16px;
}

.dw-testimonial p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.dw-testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--glass-border);
}

.dw-testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--black-900);
}

.dw-testimonial-author strong {
    display: block;
    color: var(--text-white);
    font-size: 0.85rem;
}

.dw-testimonial-author span {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ---- CTA ---- */
.dw-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 50px 36px;
    text-align: center;
}

.dw-cta h2 {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.dw-cta p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* ---- DW RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero-dw-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-dw-left {
        max-width: 100%;
        padding: 20px 0 40px;
    }

    .hero-dw-btns {
        justify-content: center;
    }

    .hero-dw-desc {
        margin: 0 auto 28px;
    }

    .hero-dw-gold-bg {
        width: 100%;
        clip-path: none;
        opacity: 0.08;
    }

    .hero-dw-car {
        max-height: 280px;
    }

    .hero-dw-right {
        align-self: center;
    }

    .dw-deals-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .dw-testimonials-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-dw {
        padding: 100px 0 0;
    }

    .dw-brands-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 24px;
    }

    .dw-brand-item {
        font-size: 0.8rem;
    }

    .dw-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .dw-stat:not(:last-child)::after {
        display: none;
    }

    .dw-deals-row {
        grid-template-columns: 1fr;
    }

    .dw-steps-row {
        flex-direction: column;
        align-items: center;
    }

    .dw-step-line {
        width: 2px;
        height: 30px;
        margin: 0;
    }

    .dw-choose-header {
        flex-direction: column;
        gap: 12px;
    }

    .dw-choose-header .dw-section-title {
        text-align: center;
    }

    .dw-cta {
        padding: 36px 20px;
    }

    .dw-section {
        padding: 50px 0;
    }
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black-950);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand-text {
    font-family: 'Cairo', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold-500);
    color: var(--black-900);
    border-color: var(--gold-500);
}

.footer-heading {
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-400);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ============================================
   VEHICLE DETAIL PAGE
   ============================================ */
.vehicle-hero {
    padding: 120px 0 60px;
    position: relative;
}

.vehicle-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.vehicle-main-image {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.vehicle-main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.vehicle-info-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    position: sticky;
    top: 100px;
}

.vehicle-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.spec-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
}

.spec-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 18px;
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.spec-item-icon i {
    font-size: 18px;
    color: #1a1a2e;
    line-height: 1;
}

.spec-item-icon svg {
    width: 20px;
    height: 20px;
}

/* Custom PNG icon variant — dark icon inside gold circle */
.spec-item-icon-img img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0);
}

/* Small inline spec icons (slider cards) */
.spec-inline-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 2px;
    filter: invert(76%) sepia(50%) saturate(500%) hue-rotate(6deg) brightness(95%);
}

.spec-item-label {
    color: var(--gold-400);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    font-weight: 600;
}

.spec-item-value {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.05rem;
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.pricing-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.pricing-tier:hover,
.pricing-tier.active {
    border-color: var(--gold-500);
    background: rgba(212, 175, 55, 0.08);
}

.pricing-tier-name {
    font-weight: 600;
    color: var(--text-white);
}

.pricing-tier-price {
    font-weight: 800;
    color: var(--gold-400);
    font-size: 1.15rem;
}

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: 'Cairo', sans-serif;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-control::placeholder {
    color: var(--text-dim);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Order Summary Sidebar */
.order-summary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    position: sticky;
    top: 100px;
}

.order-summary-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
}

.order-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.order-total {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 2px solid var(--gold-500);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--gold-400);
}

/* ============================================
   CUSTOMER AUTH PAGES
   ============================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
    background: var(--black-950);
    position: relative;
}

.auth-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
    width: 100%;
    max-width: 480px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.auth-header {
    text-align: center;
    margin-bottom: 36px;
}

.auth-header h1 {
    font-family: 'Cairo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-muted);
}

/* ============================================
   CUSTOMER DASHBOARD
   ============================================ */
.dashboard-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

.dashboard-sidebar {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.dashboard-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-400);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
}

.dashboard-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-400);
}

.dashboard-stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Scroll animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   VEHICLES GRID PAGE
   ============================================ */
.vehicles-page {
    padding: 120px 0 80px;
}

.vehicles-page-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.filter-sidebar {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group-title {
    font-weight: 700;
    color: var(--text-white);
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--glass-border);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.filter-option:hover {
    color: var(--gold-400);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.pagination a:hover {
    border-color: var(--gold-500);
    color: var(--gold-400);
}

.pagination .active {
    background: var(--gold-gradient);
    border-color: var(--gold-500);
    color: var(--black-900);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-bg-shape {
        width: 100%;
        opacity: 0.08;
        clip-path: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vehicles-page-grid {
        grid-template-columns: 1fr;
    }

    .filter-sidebar {
        position: static;
    }

    .vehicle-detail-grid {
        grid-template-columns: 1fr;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
}

/* ============================================
   FLEET SHOWCASE GALLERY
   ============================================ */
.dw-gallery-section {
    background: var(--black-900);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.dw-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.dw-gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.dw-gallery-label {
    display: inline-block;
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    position: relative;
    padding: 0 24px;
}

.dw-gallery-label::before,
.dw-gallery-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--gold-500);
    opacity: 0.5;
}

.dw-gallery-label::before {
    right: 100%;
    margin-right: 0;
}

.dw-gallery-label::after {
    left: 100%;
    margin-left: 0;
}

.dw-gallery-header .dw-section-title {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.dw-gallery-subtitle {
    color: var(--gray-400);
    font-size: 17px;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

/* ---- Featured Row (3 large images) ---- */
.dw-gallery-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.dw-gallery-featured .dw-gallery-card {
    height: 320px;
}

/* ---- Gallery Grid (uniform) ---- */
.dw-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

/* ---- Gallery Card ---- */
.dw-gallery-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    animation: galleryFadeIn 0.6s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
    height: 220px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.dw-gallery-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.15), 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.dw-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.dw-gallery-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

/* ---- Gold Overlay ---- */
.dw-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 40%,
            rgba(212, 175, 55, 0.08) 70%,
            rgba(11, 15, 25, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
}

.dw-gallery-card:hover .dw-gallery-overlay {
    opacity: 1;
}

.dw-gallery-overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.dw-gallery-card:hover .dw-gallery-overlay-content {
    transform: translateY(0);
}

.dw-gallery-overlay-content i {
    color: var(--gold-400);
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(11, 15, 25, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(10px);
}

/* ---- Shine sweep ---- */
.dw-gallery-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(212, 175, 55, 0.06) 40%,
            rgba(212, 175, 55, 0.12) 50%,
            rgba(212, 175, 55, 0.06) 60%,
            transparent 100%);
    transform: skewX(-15deg);
    pointer-events: none;
    transition: left 0.7s ease;
}

.dw-gallery-card:hover .dw-gallery-shine {
    left: 130%;
}

/* ---- CTA ---- */
.dw-gallery-cta {
    text-align: center;
}

.dw-gallery-cta .dw-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 60px;
    background: var(--gold-gradient);
    color: var(--black-900);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.dw-gallery-cta .dw-btn:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ---- Gallery Responsive ---- */
@media (max-width: 1200px) {
    .dw-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .dw-gallery-featured {
        gap: 12px;
    }

    .dw-gallery-featured .dw-gallery-card {
        height: 260px;
    }

    .dw-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .dw-gallery-card {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .dw-gallery-section {
        padding: 60px 0;
    }

    .dw-gallery-header .dw-section-title {
        font-size: 30px;
    }

    .dw-gallery-featured {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .dw-gallery-featured .dw-gallery-card {
        height: 220px;
    }

    .dw-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .dw-gallery-card {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .dw-gallery-section {
        padding: 40px 0;
    }

    .dw-gallery-header .dw-section-title {
        font-size: 24px;
    }

    .dw-gallery-subtitle {
        font-size: 14px;
    }

    .dw-gallery-featured {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .dw-gallery-featured .dw-gallery-card {
        height: 200px;
    }

    .dw-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .dw-gallery-card {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .auth-card {
        padding: 32px 24px;
    }
}

/* ======================= FLEET & PHILOSOPHY ======================= */
.dw-philosophy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dw-philosophy-desc {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.dw-philosophy-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dw-philosophy-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.dw-philosophy-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--black-900);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.dw-philosophy-feature h4 {
    color: var(--text-white);
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.dw-philosophy-feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.dw-philosophy-image {
    position: relative;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dw-philosophy-image img {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.dw-philosophy-badge {
    position: absolute;
    bottom: -15px;
    right: 30px;
    background: var(--gold-gradient);
    padding: 12px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.dw-philosophy-badge-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--black-900);
    line-height: 1;
}

.dw-philosophy-badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black-800);
    font-weight: 600;
}

/* ======================= OUR PROMISE ======================= */
.dw-promise-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.dw-promise-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.dw-promise-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.dw-promise-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--black-900);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.dw-promise-card h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dw-promise-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .dw-philosophy {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dw-promise-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .dw-promise-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CUSTOM PAGINATION
   ============================================ */
.custom-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}

.page-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: transparent;
    color: var(--gold-500);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.page-arrow:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold-500);
}

.page-arrow.disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

.page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.page-num:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
    color: #fff;
}

.page-num.active {
    background: var(--gold-gradient);
    color: #0B0F19;
    border-color: transparent;
    font-weight: 800;
}

.page-dots {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    padding: 0 4px;
}

/* ============================================
   GALLERY LIGHTBOX / SLIDESHOW
   ============================================ */
.dw-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.dw-lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* Backdrop */
.dw-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Close button */
.dw-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(11, 15, 25, 0.6);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dw-lightbox-close:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-500);
    color: var(--gold-400);
    transform: rotate(90deg);
}

/* Counter pill */
.dw-lightbox-counter {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 10;
    background: rgba(11, 15, 25, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 8px 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Cairo', sans-serif;
}

.dw-lightbox-counter span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Main image wrapper */
.dw-lightbox-stage {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    max-height: 70vh;
    padding: 0 80px;
    transform: scale(0.92);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.dw-lightbox.active .dw-lightbox-stage {
    transform: scale(1);
}

.dw-lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.1);
    transition: opacity 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.dw-lightbox-img.fading {
    opacity: 0;
}

/* Navigation arrows */
.dw-lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(11, 15, 25, 0.5);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dw-lightbox-arrow:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold-500);
    color: var(--gold-400);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

.dw-lightbox-arrow:active {
    transform: translateY(-50%) scale(0.92);
}

.dw-lightbox-prev {
    left: 20px;
}

.dw-lightbox-next {
    right: 20px;
}

/* Thumbnail strip */
.dw-lightbox-thumbs {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(11, 15, 25, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 16px;
    max-width: 90vw;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.dw-lightbox-thumbs::-webkit-scrollbar {
    display: none;
}

.dw-lightbox-thumb {
    width: 56px;
    height: 40px;
    min-width: 56px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
    position: relative;
}

.dw-lightbox-thumb:hover {
    opacity: 0.8;
}

.dw-lightbox-thumb.active {
    opacity: 1;
    border-color: var(--gold-500);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.dw-lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Lightbox responsive */
@media (max-width: 768px) {
    .dw-lightbox-stage {
        padding: 0 50px;
        max-height: 60vh;
    }

    .dw-lightbox-img {
        max-height: 60vh;
        border-radius: 10px;
    }

    .dw-lightbox-arrow {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .dw-lightbox-prev {
        left: 6px;
    }

    .dw-lightbox-next {
        right: 6px;
    }

    .dw-lightbox-close {
        width: 40px;
        height: 40px;
        top: 14px;
        right: 14px;
        font-size: 17px;
    }

    .dw-lightbox-counter {
        top: 18px;
        left: 14px;
        padding: 6px 14px;
        font-size: 12px;
    }

    .dw-lightbox-thumb {
        width: 46px;
        height: 34px;
        min-width: 46px;
    }
}

@media (max-width: 480px) {
    .dw-lightbox-stage {
        padding: 0 44px;
        max-height: 55vh;
    }

    .dw-lightbox-img {
        max-height: 55vh;
    }

    .dw-lightbox-thumbs {
        bottom: 16px;
        padding: 6px 10px;
        gap: 5px;
        border-radius: 12px;
    }

    .dw-lightbox-thumb {
        width: 40px;
        height: 30px;
        min-width: 40px;
        border-radius: 6px;
    }
}