/* ================================================================
   LUXEDRIVE — STYLES.CSS
   Color Palette: Emerald & Gold (Pick 04)

   Color Usage:
   #FAF9F6  Off-White   35% — page bg, card bg, clean sections
   #2D6A4F  Emerald     25% — nav, stats banner, enquiry section, accents
   #1B1B1B  Rich Dark   25% — body text, footer bg, dark elements
   #D4A373  Gold        10% — CTAs, buttons, highlights, badges
   #95D5B2  Mint        5%  — fuel tags, small accent elements
   ================================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --emerald:        #2D6A4F;
    --emerald-dark:   #1e4d39;
    --emerald-light:  #3a8a65;
    --emerald-pale:   rgba(45, 106, 79, 0.08);

    --gold:           #D4A373;
    --gold-dark:      #b8834e;
    --gold-light:     #e8c49e;

    --off-white:      #FAF9F6;
    --off-white-2:    #f0ede8;

    --rich-dark:      #1B1B1B;
    --rich-dark-2:    #2a2a2a;
    --rich-dark-3:    #3a3a3a;

    --mint:           #95D5B2;
    --mint-dark:      #1B4332;

    --font-display:   'Playfair Display', serif;
    --font-body:      'Inter', sans-serif;

    --radius-sm:      8px;
    --radius-md:      14px;
    --radius-lg:      20px;
    --radius-xl:      28px;
    --radius-pill:    50px;

    --shadow-sm:      0 2px 10px rgba(0,0,0,0.07);
    --shadow-md:      0 8px 28px rgba(0,0,0,0.11);
    --shadow-lg:      0 18px 50px rgba(0,0,0,0.15);

    --transition:     all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--rich-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
}

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

/* ── Utility ───────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-emerald { color: var(--emerald); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-gold {
    background: var(--gold);
    color: var(--rich-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    border: 2px solid var(--gold);
    padding: 0.65rem 1.6rem;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--rich-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(212, 163, 115, 0.4);
}

.btn-outline-emerald {
    background: transparent;
    color: var(--emerald);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    border: 2px solid var(--emerald);
    padding: 0.65rem 1.6rem;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-outline-emerald:hover {
    background: var(--emerald);
    color: #fff;
    transform: translateY(-2px);
}

/* ================================================================
   NAVBAR
   ================================================================ */
#mainNav {
    padding: 1.3rem 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    background: transparent;
}
#mainNav.scrolled {
    background: var(--emerald);
    padding: 0.7rem 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    letter-spacing: 0.4px;
    transition: opacity 0.2s;
}
.navbar-brand:hover { opacity: 0.9; }

.brand-icon { color: var(--gold); margin-right: 5px; }
.brand-accent { color: var(--gold); }

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.2px;
    padding: 0.55rem 1rem !important;
    position: relative;
    transition: var(--transition);
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover { color: var(--gold) !important; }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

.navbar-toggler {
    border: 1.5px solid rgba(255,255,255,0.45);
    padding: 5px 10px;
    border-radius: var(--radius-sm);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile nav collapse */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--emerald-dark);
        border-radius: var(--radius-md);
        padding: 1rem 1.2rem 1.2rem;
        margin-top: 0.75rem;
        box-shadow: var(--shadow-lg);
    }
    .navbar-nav .nav-link::after { display: none; }
    .navbar-nav .nav-item.ms-lg-3 { margin-top: 0.75rem; }
    .navbar-nav .nav-item.ms-lg-3 .btn-gold { width: 100%; }
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27, 27, 27, 0.90) 0%,
        rgba(45, 106, 79, 0.72) 55%,
        rgba(27, 27, 27, 0.65) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 60px;
}

.hero-tagline {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.4rem;
}
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    max-width: 480px;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 3.2rem;
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.5px;
    margin-top: 3px;
}
.stat-divider {
    width: 1px;
    height: 38px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
}

/* Hero entrance animations (CSS, fires on load) */
.animate-hero {
    opacity: 0;
    transform: translateY(28px);
    animation: heroFadeUp 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.delay-1 { animation-delay: 0.25s; }
.delay-2 { animation-delay: 0.45s; }
.delay-3 { animation-delay: 0.65s; }
.delay-4 { animation-delay: 0.85s; }
.delay-5 { animation-delay: 1.05s; }

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-decoration: none;
    cursor: pointer;
}
.scroll-dot {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 13px;
    position: relative;
}
.scroll-dot::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%   { top: 7px; opacity: 1; }
    70%  { top: 22px; opacity: 0; }
    71%  { top: 7px; opacity: 0; }
    100% { top: 7px; opacity: 1; }
}

/* ================================================================
   SECTION SHARED STYLES
   ================================================================ */
.section-badge {
    display: inline-block;
    background: var(--emerald-pale);
    color: var(--emerald);
    border: 1px solid rgba(45, 106, 79, 0.22);
    padding: 0.28rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}
.section-title {
    font-size: clamp(1.85rem, 3.8vw, 2.7rem);
    font-weight: 700;
    color: var(--rich-dark);
    margin-bottom: 0.9rem;
}
.section-subtitle {
    color: #717171;
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================================================
   FEATURES SECTION  (Off-White bg — 35%)
   ================================================================ */
.features-section {
    background: var(--off-white);
    padding: 6rem 0;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.055);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}
.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1.3rem;
    box-shadow: 0 4px 16px rgba(45,106,79,0.28);
}
.feature-card h5 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--rich-dark);
    margin-bottom: 0.55rem;
}
.feature-card p {
    font-size: 0.88rem;
    color: #6a6a6a;
    line-height: 1.65;
    margin: 0;
}

/* ================================================================
   STATS BANNER  (Emerald bg — contributes to 25%)
   ================================================================ */
.stats-banner {
    background: var(--emerald);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.banner-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    position: relative;
}
.banner-icon {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
    opacity: 0.9;
}
.banner-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.banner-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ================================================================
   FLEET SECTION  (Warm Off-White bg)
   ================================================================ */
.fleet-section {
    background: var(--off-white-2);
    padding: 6rem 0;
}

/* Filter tabs */
.fleet-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}
.filter-btn {
    background: transparent;
    color: var(--rich-dark);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.45rem 1.3rem;
    border: 1.5px solid rgba(0,0,0,0.15);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover {
    border-color: var(--emerald);
    color: var(--emerald);
}
.filter-btn.active {
    background: var(--emerald);
    border-color: var(--emerald);
    color: #fff;
}

/* Car Card */
.car-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.055);
    transition: var(--transition-slow);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.car-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

/* Card image */
.car-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--off-white-2);
}
.car-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.car-card:hover .car-img-wrap img { transform: scale(1.07); }

/* Overlay gradient on image */
.car-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(27,27,27,0.35), transparent);
    pointer-events: none;
}

.car-badge-top {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 1;
    background: var(--emerald);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.22rem 0.7rem;
    border-radius: var(--radius-pill);
}

/* Fuel type tags (Mint — 5%) */
.fuel-tag {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    z-index: 1;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.22rem 0.7rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.fuel-petrol  { background: rgba(149,213,178,0.92); color: var(--mint-dark); }
.fuel-diesel  { background: rgba(149,213,178,0.75); color: var(--mint-dark); }
.fuel-electric{ background: var(--emerald-dark);     color: #fff; }
.fuel-hybrid  { background: rgba(149,213,178,0.92); color: var(--mint-dark); }

/* Card body */
.car-card-body {
    padding: 1.4rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.car-type-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--emerald);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.car-name {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--rich-dark);
    margin-bottom: 0.8rem;
}
.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}
.spec-item {
    display: flex;
    align-items: center;
    gap: 0.32rem;
    font-size: 0.8rem;
    color: #787878;
}
.spec-item i {
    color: var(--emerald);
    font-size: 0.9rem;
}

/* Card footer */
.car-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.07);
    gap: 0.5rem;
}
.car-price {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}
.price-from {
    font-size: 0.68rem;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.price-value {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--emerald);
    line-height: 1;
}
.price-period { font-size: 0.72rem; color: #a0a0a0; }

.btn-enquire {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--rich-dark);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.btn-enquire:hover {
    background: var(--gold);
    color: var(--rich-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(212,163,115,0.38);
}

/* ================================================================
   ENQUIRY SECTION  (Emerald bg — contributes to 25%)
   ================================================================ */
.enquiry-section {
    background: var(--emerald);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
/* Decorative circles */
.enquiry-section::before,
.enquiry-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255,255,255,0.04);
}
.enquiry-section::before {
    width: 420px; height: 420px;
    top: -130px; right: -100px;
}
.enquiry-section::after {
    width: 320px; height: 320px;
    bottom: -100px; left: -80px;
}

.enquiry-card {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: 3rem 3.2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.selected-car-display {
    display: inline-block;
    background: var(--emerald-pale);
    border: 1px dashed rgba(45,106,79,0.3);
    color: #6a6a6a;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.45rem 1.2rem;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    margin-top: 0.5rem;
}
.selected-car-display.has-car {
    background: rgba(45,106,79,0.12);
    border: 1px solid rgba(45,106,79,0.4);
    color: var(--emerald);
    font-weight: 600;
}

/* Form controls */
.form-label {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--rich-dark);
    letter-spacing: 0.2px;
    margin-bottom: 0.4rem;
}
.required { color: #d94f4f; }
.optional  { color: #a0a0a0; font-weight: 400; font-size: 0.78rem; }

.custom-input {
    border: 1.5px solid #dedad4;
    border-radius: var(--radius-md);
    padding: 0.68rem 1rem;
    font-family: var(--font-body);
    font-size: 0.88rem;
    background: #fff;
    color: var(--rich-dark);
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
}
.custom-input:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}
.custom-input.car-readonly {
    background: rgba(45,106,79,0.06);
    color: var(--emerald);
    font-weight: 600;
    cursor: default;
}
/* Override Bootstrap was-validated styles */
.form-control.custom-input:focus,
.form-select.custom-input:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #d94f4f;
}
.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: var(--emerald);
}
.invalid-feedback {
    font-size: 0.78rem;
    color: #d94f4f;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2.5rem 1.5rem;
    animation: fadeInScale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-icon {
    font-size: 4.5rem;
    color: var(--emerald);
    margin-bottom: 1.2rem;
    line-height: 1;
}
.success-message h4 {
    font-size: 1.7rem;
    color: var(--rich-dark);
    margin-bottom: 0.5rem;
}
.success-message p {
    color: #6a6a6a;
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

/* ================================================================
   FOOTER  (Rich Dark bg — contributes to 25%)
   ================================================================ */
.site-footer {
    background: var(--rich-dark);
    padding: 4.5rem 0 2rem;
    color: rgba(255,255,255,0.65);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.9rem;
    display: block;
}
.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 1.6rem;
}

.social-links { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.social-links a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.92rem;
    text-decoration: none;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--rich-dark);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.2rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}
.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.75rem;
}
.footer-contact li i {
    color: var(--gold);
    font-size: 1rem;
    min-width: 16px;
    margin-top: 2px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 2.5rem 0 1.5rem;
}
.footer-copyright {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    margin: 0;
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.fade-up    { transform: translateY(44px); }
.animate-on-scroll.fade-left  { transform: translateX(-44px); }
.animate-on-scroll.fade-right { transform: translateX(44px); }
.animate-on-scroll.zoom-in    { transform: scale(0.94); }

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

/* Stagger delays for scroll-triggered children */
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.32s; }
.animate-on-scroll.delay-4 { transition-delay: 0.44s; }

/* ================================================================
   RESPONSIVE OVERRIDES
   ================================================================ */

/* Tablet */
@media (max-width: 991.98px) {
    .hero-section { background-attachment: scroll; }  /* Parallax off on mobile */
    .hero-stats { gap: 1.2rem; }
    .stat-number { font-size: 1.5rem; }
    .enquiry-card { padding: 2.2rem 2rem; }
}

/* Mobile */
@media (max-width: 767.98px) {
    .features-section,
    .fleet-section,
    .enquiry-section,
    .stats-banner { padding: 4rem 0; }

    .hero-cta { flex-direction: column; }
    .hero-cta .btn-gold,
    .hero-cta .btn-outline-light { width: 100%; text-align: center; }

    .stat-divider { display: none; }
    .hero-stats { gap: 1.5rem; }

    .car-card-footer { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
    .btn-enquire { width: 100%; justify-content: center; }
    .enquiry-card { padding: 1.8rem 1.4rem; }

    .footer-brand { font-size: 1.35rem; }
    .site-footer { padding: 3rem 0 1.5rem; }
}

/* Small mobile */
@media (max-width: 424.98px) {
    .hero-title { font-size: 2.4rem; }
    .section-title { font-size: 1.7rem; }
    .banner-number { font-size: 1.6rem; }
}

/* ================================================================
   FLOATING CONTACT BUTTONS  (bottom-right, WhatsApp + Phone)
   ================================================================ */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    z-index: 9999;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-radius: var(--radius-pill);
    padding: 0 18px 0 6px;
    height: 54px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, max-width 0.3s ease, padding 0.25s ease;
    overflow: hidden;
    max-width: 54px;
    white-space: nowrap;
}

.floating-btn:hover {
    max-width: 180px;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.22);
}

/* ── Icon circle ──────────────────────────────────────────────── */
.floating-btn__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Place whatsapp_icon.png and phone_icon.png at the same level as styles.css */
.floating-btn__icon--whatsapp {
    background-image: url('whatsapp_icon.png');
    background-color: #25D366;
}
.floating-btn__icon--phone {
    background-image: url('phone_icon.png');
    background-color: var(--emerald);
}

/* ── Label text ───────────────────────────────────────────────── */
.floating-btn__label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    opacity: 0;
    transition: opacity 0.2s ease 0.05s;
    pointer-events: none;
}
.floating-btn:hover .floating-btn__label { opacity: 1; }

/* ── Per-button colours ───────────────────────────────────────── */
.floating-btn--whatsapp {
    background: #25D366;
    color: #fff;
}
.floating-btn--whatsapp:hover { background: #1ebe5d; color: #fff; }

.floating-btn--phone {
    background: var(--emerald);
    color: #fff;
}
.floating-btn--phone:hover { background: var(--emerald-dark); color: #fff; }

/* ── Mobile ───────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .floating-contact {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }

    .floating-btn {
        height: 50px;
        max-width: 50px;
        padding: 0 4px;
    }

    .floating-btn:focus,
    .floating-btn:active {
        max-width: 160px;
        padding: 0 16px 0 4px;
    }

    .floating-btn:focus .floating-btn__label,
    .floating-btn:active .floating-btn__label {
        opacity: 1;
    }

    .floating-btn__icon {
        width: 38px;
        height: 38px;
    }
}
