/* Luxury Automotive Design System — Daniel Reyes Acura Sales Platform */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --color-bg-dark: #060B18;
    --color-bg-card: #0F172A;
    --color-bg-light: #F8FAFC;
    --color-surface: #1E293B;
    --color-acura-blue: #0066CC;
    --color-acura-blue-hover: #0052A3;
    --color-acura-blue-light: #EBF5FF;
    --color-silver: #E2E8F0;
    --color-text-dark: #0F172A;
    --color-text-muted: #64748B;
    --color-text-light: #F8FAFC;
    --color-border-light: #E2E8F0;
    --color-border-dark: rgba(255, 255, 255, 0.08);
    --color-gold: #F59E0B;
    --color-success: #10B981;
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.06);
    --shadow-heavy: 0 25px 50px -12px rgba(6, 11, 24, 0.35);
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-smooth: all 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FFFFFF;
    color: var(--color-text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Announcement Bar ── */
.announcement-bar {
    background: #0A0C14;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 10px 24px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #64748B;
}
.announcement-bar p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    max-width: 100%;
    line-height: 1.4;
}
.ann-label {
    color: #D90429;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
    margin-right: 4px;
}
.announcement-bar a {
    color: #E2E8F0;
    font-weight: 600;
    line-height: 1.4;
}
.announcement-bar a:hover { color: #FFFFFF; }

/* ── Primary Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 12, 20, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: #FFFFFF;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.header-logo img { display: block; }

/* Centered nav */
.header-nav { flex: 1; display: flex; justify-content: center; }
.header-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.header-nav-list > li {
    position: relative;
    padding: 10px 0;
}
.header-nav-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #CBD5E1;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}
.header-nav-list > li > a:hover,
.header-nav-list > li:hover > a,
.header-nav-list > li:focus-within > a {
    color: #FFFFFF;
    background: rgba(255,255,255,0.06);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #131620;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 10px 8px;
    min-width: 220px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.open .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
    display: block;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #94A3B8;
    border-radius: 8px;
    transition: var(--transition-smooth);
    line-height: 1.3;
}
.nav-dropdown a:hover { color: #FFFFFF; background: rgba(217,4,41,0.12); }

/* Right actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #94A3B8;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition-smooth);
}
.header-phone:hover { color: #FFFFFF; }
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    background: #D90429;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}
.btn-cta:hover {
    background: #B50222;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(217,4,41,0.4);
}

/* Flash alerts */
.flash-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1280px;
    margin: 20px auto;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
}
.flash-success { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3); color: #047857; }
.flash-error   { background: rgba(239,68,68,0.12);  border: 1px solid rgba(239,68,68,0.3);  color: #B91C1C; }

/* brand-sub kept for legacy use elsewhere */
.brand-sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D90429;
    font-weight: 700;
}

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

.nav-links a {
    color: #CBD5E1;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 0;
    position: relative;
}

.nav-links a:hover { color: #38BDF8; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.55);
}

.btn-nav {
    padding: 10px 18px 10px 22px;
}

.icon-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}

.btn-outline-dark {
    border: 1.5px solid #0066CC;
    color: #0066CC;
    background: transparent;
}

.btn-outline-dark:hover {
    background: #0066CC;
    color: #FFFFFF;
}

/* Hero Section */
.hero-section {
    position: relative;
    background:
        linear-gradient(90deg, rgba(4, 11, 20, 0.72) 0%, rgba(6, 12, 23, 0.62) 42%, rgba(4, 11, 20, 0.18) 100%),
        url('https://images.unsplash.com/photo-1549399542-7e3f8b79c341?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
    color: #FFFFFF;
    padding: 84px 0 110px;
    overflow: hidden;
}

.hero-shell {
    position: relative;
    z-index: 1;
}

.hero-content-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    min-height: 420px;
    margin-bottom: 18px;
}

.hero-copy {
    max-width: 640px;
    padding-top: 24px;
}

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 18, 31, 0.46);
    border: 1px solid rgba(125, 211, 252, 0.38);
    color: #d9f4ff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 7px 15px;
    border-radius: 999px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
    margin: 0 0 20px;
    font-weight: 800;
    max-width: 560px;
    color: #ffffff;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.hero-sub {
    max-width: 560px;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.96);
    margin: 0 0 28px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    color: rgba(226, 232, 240, 0.9);
    font-size: 13px;
    font-weight: 600;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.search-strip {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 28px 48px rgba(15, 23, 42, 0.18);
    border-radius: 18px;
    padding: 18px 18px 14px;
    margin-top: 18px;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(255,255,255,0.8);
    color: #334155;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.filter-tab.active {
    background: #e2e8f0;
    border-color: rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

.filter-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #475569;
}

.form-control {
    width: 100%;
    border: 1px solid #dfe6ee;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    color: #0f172a;
    outline: none;
}

.form-control:focus {
    border-color: rgba(0, 102, 204, 0.55);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.12);
}

.search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 150px;
    height: 46px;
    font-size: 16px;
    font-weight: 700;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 4px;
}

.option-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    background: #f8fafc;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 13px;
    color: #334155;
    font-weight: 600;
}

.option-pill input {
    accent-color: #0f172a;
}

@media (max-width: 980px) {
    .hero-content-row {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
    }

    .hero-spotlight {
        margin-left: 0;
    }

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

@media (max-width: 640px) {
    .hero-section {
        padding-top: 60px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions a {
        width: 100%;
    }

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

    .search-btn {
        width: 100%;
    }
}


.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--color-border-light);
    font-family: inherit;
    font-size: 14px;
    color: var(--color-text-dark);
    background: #F8FAFC;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--color-acura-blue);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.12);
}

/* Section Controls */
.section-padding { padding: 90px 0; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.section-title {
    font-size: 38px;
    color: var(--color-bg-dark);
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 16px;
    margin-top: 8px;
}

/* Vehicle Cards Grid */
.vehicle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: 28px; }
.featured-hidden { display: none; }
.featured-vehicle-item { min-width: 0; }
.featured-vehicle-item > .vehicle-card { height: 100%; }
.featured-view-more-wrap { display: flex; justify-content: center; margin-top: 32px; }
.featured-view-more { min-width: 170px; }
.featured-inventory .btn-outline-dark { border-radius: 3px; border-color: #bfc3c7; color: #202327; box-shadow: none; }
.featured-inventory .btn-outline-dark:hover { background: #202327; color: #fff; }
.vehicle-card { display: flex; flex-direction: column; min-width: 0; background: #fff; border: 1px solid #dedfe1; border-radius: 6px; overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.vehicle-card:hover { border-color: #b8bdc2; box-shadow: 0 14px 30px -16px #15191c35; }
.vehicle-card .card-media { position: relative; display: block; aspect-ratio: 3 / 2; overflow: hidden; background: #f0f1f1; }
.vehicle-card .card-media img { display: block; width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.vehicle-card:hover .card-media img { transform: scale(1.025); }
.vehicle-image-empty { height: 100%; display: grid; place-items: center; padding: 30px; font-size: 13px; color: #747a80; }
.vehicle-badges { position: absolute; inset: 14px 14px auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.badge-condition, .badge-price-drop { font-size: 9px; font-weight: 700; padding: 5px 8px; border-radius: 2px; line-height: 1.4; letter-spacing: 0; }
.badge-condition { background: #202327; color: #fff; }
.badge-price-drop { background: #b80d2b; color: #fff; }
.vehicle-card .card-body { padding: 23px; display: flex; flex-direction: column; flex: 1; border-top: 1px solid #e6e7e8; }
.vehicle-name { font-size: 23px; font-weight: 500; color: #191c20; line-height: 1.25; overflow-wrap: anywhere; margin: 0 0 6px; }
.vehicle-trim { font-size: 12px; color: #70767c; min-height: 20px; margin-bottom: 22px; overflow-wrap: anywhere; }
.vehicle-pricing { margin-top: auto; margin-bottom: 22px; }
.vehicle-price-label { display: block; font-size: 9px; color: #777d83; margin-bottom: 4px; }
.price-container { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; }
.current-price { font-family: 'Outfit', sans-serif; font-size: 30px; font-weight: 500; color: #1c1f23; font-variant-numeric: tabular-nums; }
.previous-price { color: #83898f; font-size: 13px; }
.vehicle-card .specs-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; border-block: 1px solid #e3e5e6; padding: 15px 0; margin: 0 0 20px; }
.specs-row > div { min-width: 0; }
.specs-row dt { font-size: 9px; color: #858a8f; margin-bottom: 5px; }
.specs-row dd { font-size: 11px; color: #42494f; overflow-wrap: anywhere; }
.vehicle-card .card-actions { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.vehicle-view-link, .vehicle-enquiry-link { display: inline-flex; align-items: center; gap: 14px; min-height: 40px; font-size: 12px; font-weight: 600; }
.vehicle-view-link { color: #202327; }
.vehicle-enquiry-link { color: #ac102b; }
.vehicle-view-link span, .vehicle-enquiry-link span { font-size: 20px; }
.vehicle-card a:focus-visible { outline: 2px solid #b80d2b; outline-offset: -3px; }
.inventory-page { background: #f6f6f5; min-height: 80vh; }
.inventory-heading { padding-bottom: 30px; margin-bottom: 32px; border-bottom: 1px solid #d9dcdd; }
.inventory-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 36px; }
.inventory-results { min-width: 0; }
.inventory-filters { border-top: 2px solid #272b2f; padding-top: 24px; }
.inventory-page .form-control { border-radius: 3px; background: #fff; }
.inventory-page .btn { border-radius: 3px; box-shadow: none; }
.inventory-page .btn-primary { background: #b80d2b; color: #fff; }
.inventory-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.about-page { background: #f6f6f5; padding-bottom: 64px; }
.about-heading { padding-bottom: 32px; margin-bottom: 40px; border-bottom: 1px solid #d9dcdd; }
.about-heading h1 { font-size: 52px; font-weight: 500; margin-bottom: 10px; color: #202327; }
.about-heading h1 span { color: #b80d2b; }
.about-heading > p { color: #6b7177; font-size: 14px; }
.about-introduction { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 70px; align-items: center; }
.about-portrait { position: relative; margin: 0; background: #25282c; border-top: 3px solid #b80d2b; aspect-ratio: 1 / 1.08; }
.about-portrait img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: bottom; filter: grayscale(1); padding-bottom: 45px; }
.about-portrait figcaption { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 18px 22px; background: #1c1f23; color: #c0c4c8; font-size: 9px; }
.about-copy h2 { font-size: 35px; font-weight: 500; line-height: 1.2; margin: 14px 0 24px; }
.about-copy > p { font-size: 14px; line-height: 1.9; color: #656c73; margin-bottom: 18px; }
.about-copy blockquote { margin: 28px 0; padding-left: 20px; border-left: 2px solid #b80d2b; font: 21px/1.5 'Outfit', sans-serif; color: #343a40; }
.about-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.about-primary, .about-secondary { display: inline-flex; align-items: center; gap: 24px; font-size: 12px; font-weight: 600; min-height: 46px; }
.about-primary { background: #b80d2b; color: #fff; border-radius: 3px; padding: 12px 24px; }
.about-primary:hover { background: #920720; }
.about-secondary { border-bottom: 1px solid #b8bdc2; }
.about-approach { background: #fff; padding: 64px 0; }
.about-approach-heading h2 { font-size: 32px; font-weight: 500; margin-bottom: 36px; }
.about-principles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px; }
.about-principles article { border-top: 1px solid #c8cccf; padding-top: 20px; }
.about-principles article > span { font-size: 10px; color: #a70d29; }
.about-principles h3 { font-size: 22px; margin: 20px 0 14px; font-weight: 500; }
.about-principles p { color: #6b7177; font-size: 13px; line-height: 1.9; }
.about-disclosure { margin-top: 48px; padding-top: 24px; border-top: 1px solid #dedfe1; display: flex; gap: 40px; }
.about-disclosure strong { flex-shrink: 0; font-size: 12px; }
.about-disclosure p { font-size: 11px; color: #767c82; max-width: 720px; line-height: 1.8; }
@media (max-width: 900px) { .about-introduction { gap: 32px; } .about-copy h2 { font-size: 29px; } .inventory-layout { grid-template-columns: 200px minmax(0, 1fr); gap: 24px; } }
@media (max-width: 760px) {
    .about-introduction, .about-principles, .inventory-layout { grid-template-columns: minmax(0, 1fr); }
    .about-heading h1 { font-size: 40px; }
    .about-portrait { max-width: 500px; width: 100%; }
    .about-disclosure { flex-direction: column; gap: 12px; }
    .about-approach-heading h2 { font-size: 28px; }
}
@media (prefers-reduced-motion: reduce) { .vehicle-card, .vehicle-card .card-media img { transition: none; } .vehicle-card:hover .card-media img { transform: none; } }

/* Shopping pathways */
.shopping-pathways { background: #f2f4f4; border-block: 1px solid #e1e5e4; }
.pathways-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 36px; }
.pathways-eyebrow { display: block; color: #0066cc; font-size: 11px; font-weight: 800; margin-bottom: 12px; }
.pathways-heading .section-title { margin-bottom: 0; scroll-margin-top: 110px; }
.pathways-heading .section-subtitle { max-width: 440px; font-size: 14px; margin: 0; }
.pathways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pathway-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 8px 16px -10px #182c3033, 0 24px 40px -30px #182c3044;
    transition: var(--transition-smooth);
}

.pathway-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--color-acura-blue);
}

.pathway-icon {
    display: none;
}
.pathway-media { position: relative; height: 224px; background: #fff; overflow: hidden; flex-shrink: 0; }
.pathway-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.pathway-new .pathway-media img { object-fit: contain; padding: 40px 14px 0; }
.pathway-used .pathway-media img { object-position: center 65%; }
.pathway-card:hover .pathway-media img { transform: scale(1.035); }
.pathway-category { font-size: 10px; font-weight: 800; line-height: 1.5; }
.pathway-media .pathway-category { position: absolute; top: 18px; left: 20px; z-index: 1; background: #fff; padding: 6px 10px; border-radius: 3px; }
.pathway-body { display: flex; flex-direction: column; flex: 1; padding: 28px; }
.pathway-detail { font-size: 11px; color: #536570; margin-bottom: 10px; }
.pathway-body h3 { font-size: 25px; margin-bottom: 14px; letter-spacing: 0; }
.pathway-body p { color: #5b6770; font-size: 13px; line-height: 1.8; margin-bottom: 24px; }
.pathway-link { border-top: 1px solid #e3e8eb; padding-top: 18px; margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13px; font-weight: 800; color: #005bb6; min-height: 48px; }
.pathway-link span { font-size: 23px; line-height: 1; transition: transform .2s; }
.pathway-link:hover span { transform: translateX(4px); }
.pathway-link:focus-visible { outline: 3px solid #0066cc; outline-offset: 5px; }
.pathway-trade { background: #173e38; border-color: #173e38; color: #fff; position: relative; }
.pathway-trade > .pathway-category { padding: 24px 28px 0; color: #b7e2d2; }
.pathway-trade .pathway-body { padding-top: 34px; }
.pathway-trade .pathway-detail { color: #b7d0c9; }
.pathway-trade h3 { font-size: 34px; }
.pathway-trade p { color: #d0dfda; }
.pathway-trade .pathway-link { color: #fff; border-color: #ffffff30; }
.pathway-trade .pathway-link:focus-visible { outline-color: #b7e2d2; }
.pathway-steps { list-style: none; counter-reset: trade; margin: 0 0 26px; }
.pathway-steps li { counter-increment: trade; display: flex; align-items: center; gap: 12px; font-size: 12px; padding-block: 9px; }
.pathway-steps li::before { content: '0' counter(trade); color: #9bc6b7; font-size: 10px; border-bottom: 1px solid #ffffff35; padding-bottom: 3px; }
@media (max-width: 1000px) and (min-width: 769px) {
    .pathways-grid { gap: 16px; }
    .pathway-body { padding: 20px; }
    .pathway-body h3 { font-size: 23px; }
    .pathway-trade h3 { font-size: 30px; }
}
@media (max-width: 768px) {
    .pathways-heading { flex-direction: column; align-items: flex-start; gap: 18px; }
    .pathways-heading .section-title { font-size: 30px; }
    .shopping-pathways .pathways-grid { grid-template-columns: 1fr; }
    .pathway-media { height: 230px; }
}
@media (prefers-reduced-motion: reduce) {
    .pathway-card, .pathway-media img, .pathway-link, .pathway-link span { transition: none; }
    .pathway-card:hover, .pathway-card:hover .pathway-media img, .pathway-link:hover span { transform: none; }
}

/* Personal contact page */
.contact-page { background: #f6f6f5; }
.contact-heading { margin-bottom: 42px; border-bottom: 1px solid #d9dcdd; padding-bottom: 30px; }
.contact-heading h1 { font-size: 42px; color: #191c20; margin-bottom: 12px; }
.contact-heading > p { color: #687078; font-size: 15px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.2fr); gap: 64px; align-items: start; }
.contact-profile { min-width: 0; }
.contact-portrait { position: relative; min-height: 290px; overflow: hidden; background: #25282c; color: #fff; border-top: 3px solid #c8102e; }
.contact-portrait-copy { position: relative; z-index: 1; padding: 28px; width: 56%; }
.contact-portrait-copy > span { font-size: 9px; color: #c6c9cd; }
.contact-portrait-copy h2 { font-size: 46px; line-height: 1.05; margin: 22px 0 12px; font-weight: 500; }
.contact-name-dot { color: #e83150; }
.contact-portrait-copy p { font-size: 11px; color: #c6c9cd; }
.contact-portrait img { position: absolute; bottom: 0; right: -12px; width: 57%; height: 97%; object-fit: contain; object-position: right bottom; filter: grayscale(1); }
.contact-languages { position: absolute; bottom: 18px; left: 28px; font-size: 10px; color: #d4d7da; }
.contact-profile-body { padding: 26px 0 0; }
.contact-intro { color: #626970; font-size: 13px; line-height: 1.9; margin-bottom: 26px; }
.contact-small-label { display: block; font-size: 10px; font-weight: 600; color: #6b7177; margin-bottom: 9px; }
.contact-phone-row { padding: 0 0 23px; }
.contact-phone-row > a:first-of-type { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-family: 'Outfit', sans-serif; font-size: 29px; color: #1c1f23; }
.contact-phone-row > a:first-of-type > span { color: #b60c2a; font-size: 25px; }
.contact-text-link { display: inline-block; font-size: 11px; color: #626970; margin-top: 8px; }
.contact-channel { display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid #d9dcdd; padding: 18px 0; }
.contact-channel > span:first-child { min-width: 0; }
.contact-channel strong { font-size: 13px; font-weight: 600; overflow-wrap: anywhere; }
.contact-channel > span:last-child { font-size: 23px; color: #b60c2a; }
.contact-channel:hover, .contact-socials a:hover, .contact-text-link:hover { color: #b60c2a; }
.contact-location { border-top: 1px solid #d9dcdd; padding-top: 22px; margin-bottom: 22px; }
.contact-location strong { display: block; font-size: 14px; margin-bottom: 5px; }
.contact-location address { font-style: normal; font-size: 12px; line-height: 1.8; color: #626970; max-width: 300px; }
.contact-socials { display: flex; flex-wrap: wrap; gap: 22px; font-size: 11px; padding-bottom: 23px; }
.contact-socials a { display: flex; gap: 6px; }
.contact-disclaimer { font-size: 10px; line-height: 1.8; color: #737980; border-top: 1px solid #d9dcdd; padding-top: 18px; }
.contact-form-panel { padding-top: 28px; border-top: 3px solid #25282c; min-width: 0; }
.contact-form-panel h2 { font-size: 32px; margin: 14px 0; }
.contact-form-intro { font-size: 13px; color: #626970; line-height: 1.9; max-width: 440px; margin-bottom: 32px; }
.contact-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 20px; }
.contact-fields .form-group { margin: 0; min-width: 0; }
.contact-field-wide { grid-column: 1 / -1; }
.contact-fields label { font-size: 12px; color: #383e44; }
.contact-fields .form-control { background: #fff; border: 1px solid #d5d9dc; border-radius: 3px; font-size: 14px; padding: 14px; width: 100%; }
.contact-fields .form-control:focus { border-color: #8f9399; box-shadow: 0 0 0 3px #25282c10; }
.contact-fields textarea { min-height: 150px; resize: vertical; }
.contact-submit { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; margin-top: 26px; padding: 17px 22px; background: #b80d2b; color: #fff; border: 0; border-radius: 3px; font: inherit; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .2s; }
.contact-submit span { font-size: 23px; }
.contact-submit:hover { background: #920720; }
.contact-page a:focus-visible, .contact-submit:focus-visible { outline: 2px solid #b80d2b; outline-offset: 4px; }
.contact-form-note { margin-top: 40px; padding-top: 24px; border-top: 1px solid #d9dcdd; display: flex; justify-content: space-between; gap: 24px; }
.contact-form-note > span { font-size: 10px; color: #737980; }
.contact-form-note p { font-family: 'Outfit', sans-serif; font-size: 21px; line-height: 1.4; color: #737980; }
@media (max-width: 1000px) { .contact-layout { gap: 32px; } .contact-portrait-copy h2 { font-size: 38px; } }
@media (max-width: 760px) {
    .contact-layout { grid-template-columns: minmax(0, 1fr); gap: 42px; }
    .contact-heading h1 { font-size: 32px; }
    .contact-portrait { min-height: 280px; }
    .contact-portrait-copy h2 { font-size: 44px; }
    .contact-form-panel h2 { font-size: 28px; }
    .contact-fields { grid-template-columns: minmax(0, 1fr); }
}

/* Client stories */
.client-stories { background: #fff; }
.stories-heading { align-items: flex-end; }
.stories-eyebrow { display: block; color: #b70928; font-size: 11px; font-weight: 700; margin-bottom: 12px; }
#stories-title { scroll-margin-top: 110px; }
.stories-all { display: inline-flex; gap: 20px; align-items: center; font-size: 13px; font-weight: 700; padding-block: 12px; border-bottom: 1px solid #bec2c6; }
.stories-all span { font-size: 24px; }
.stories-stage { display: grid; grid-template-columns: minmax(220px, .75fr) minmax(0, 1.5fr); background: #141619; color: #fff; border-top: 3px solid #ba1230; }
.stories-person { position: relative; min-height: 480px; overflow: hidden; background: #23262a; border-right: 1px solid #ffffff15; }
.stories-signature { position: absolute; z-index: 1; top: 30px; left: 30px; font-family: 'Outfit', sans-serif; font-size: 23px; line-height: 1.25; }
.stories-person img { position: absolute; bottom: 54px; height: 70%; width: 100%; object-fit: contain; object-position: center bottom; filter: grayscale(1); }
.stories-person-name { position: absolute; bottom: 0; inset-inline: 0; padding: 20px 30px; background: #1d2023; border-top: 1px solid #ffffff15; }
.stories-person-name strong, .stories-person-name span { display: block; }
.stories-person-name strong { font-size: 15px; }
.stories-person-name span { color: #afb4ba; font-size: 11px; margin-top: 4px; }
.stories-content { padding: 32px 44px; min-width: 0; display: flex; flex-direction: column; }
.stories-topline { display: flex; justify-content: space-between; align-items: center; color: #aab0b8; font-size: 10px; padding-bottom: 24px; border-bottom: 1px solid #ffffff20; }
.stories-counter { font-variant-numeric: tabular-nums; font-size: 12px; }
.stories-counter b { color: #fff; font-size: 21px; font-weight: 500; }
.stories-slides { flex: 1; }
.story-slide { padding: 26px 0; }
.is-enhanced .stories-slides { display: grid; }
.is-enhanced .story-slide { grid-area: 1 / 1; visibility: hidden; opacity: 0; transform: translateX(16px); pointer-events: none; min-width: 0; }
.is-enhanced .story-slide.is-active { visibility: visible; opacity: 1; transform: translateX(0); pointer-events: auto; transition: opacity .5s ease, transform .5s ease; }
.story-stars { color: #e8c98b; font-size: 17px; margin-bottom: 18px; }
.story-slide blockquote { margin: 0 0 30px; }
.story-slide blockquote p { font-family: 'Outfit', sans-serif; font-size: 26px; line-height: 1.5; font-weight: 400; overflow-wrap: anywhere; }
.story-slide blockquote p::before { content: '\201c'; color: #d25062; }
.story-slide blockquote p::after { content: '\201d'; color: #d25062; }
.story-author { display: flex; align-items: center; gap: 12px; }
.story-initial { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid #ffffff30; border-radius: 50%; font-size: 13px; color: #dedfe1; flex-shrink: 0; }
.story-author strong, .story-author div > span { display: block; }
.story-author strong { font-size: 13px; }
.story-author div > span { font-size: 11px; color: #aab0b8; margin-top: 3px; }
.stories-controls { display: flex; align-items: center; gap: 36px; margin-top: 10px; padding-top: 22px; border-top: 1px solid #ffffff20; }
.stories-controls[hidden] { display: none; }
.stories-road { position: relative; display: flex; flex: 1; justify-content: space-between; min-width: 0; background: repeating-linear-gradient(90deg, #70757b 0 5px, transparent 5px 12px) left 13px / 100% 1px no-repeat; }
.story-stop { width: 32px; min-height: 46px; border: 0; background: #141619; color: #aab0b8; cursor: pointer; position: relative; padding-top: 17px; font: inherit; font-size: 10px; }
.story-stop::before { content: ''; position: absolute; top: 9px; left: 13px; width: 6px; height: 6px; border: 1px solid #92969c; border-radius: 50%; background: #141619; }
.story-stop[aria-current="true"] { color: #fff; }
.stories-road-marker { position: absolute; z-index: 2; pointer-events: none; top: 8px; left: clamp(8px, var(--story-position, 0%), calc(100% - 24px)); height: 8px; width: 16px; background: #d90429; border-radius: 2px; box-shadow: -6px 0 12px #d9042955; transition: left .65s cubic-bezier(.22,1,.36,1); }
.stories-buttons { display: flex; gap: 8px; }
.stories-buttons button { height: 42px; width: 42px; display: grid; place-items: center; border: 1px solid #ffffff30; border-radius: 50%; color: #fff; background: transparent; font-size: 21px; cursor: pointer; transition: background .2s, border-color .2s; }
.stories-buttons [data-review-pause] { font-size: 11px; }
.stories-buttons button:hover { background: #a80b28; border-color: #d90429; }
.client-stories button:focus-visible, .stories-all:focus-visible { outline: 2px solid #e97c8e; outline-offset: 5px; }
.stories-empty { padding-block: 50px; }
@media (max-width: 900px) {
    .stories-content { padding: 28px; }
    .story-slide blockquote p { font-size: 23px; }
    .stories-controls { gap: 16px; }
}
@media (max-width: 650px) {
    .stories-stage { grid-template-columns: minmax(0, 1fr); }
    .stories-person { min-height: 150px; border-right: 0; border-bottom: 1px solid #ffffff20; }
    .stories-signature { top: 22px; left: 22px; font-size: 20px; max-width: 60%; }
    .stories-person img { width: 36%; height: 145px; bottom: 0; right: 8px; }
    .stories-person-name { padding: 0; left: 22px; bottom: 20px; width: 60%; background: none; border: 0; }
    .stories-person-name span { font-size: 9px; }
    .stories-content { padding: 24px 22px; }
    .story-slide blockquote p { font-size: 22px; }
    .stories-heading .section-title { font-size: 30px; }
    .stories-heading { align-items: flex-start; }
    .stories-buttons { gap: 6px; }
    .stories-buttons button { width: 36px; height: 40px; }
}
@media (prefers-reduced-motion: reduce) {
    .is-enhanced .story-slide, .is-enhanced .story-slide.is-active, .stories-road-marker, .stories-buttons button { transition: none; transform: none; }
}

/* Review Cards */
.review-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
}

.review-name {
    display: block;
    font-size: 14px;
    color: #0A1128;
    margin-bottom: 2px;
}

.review-source {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748B;
}

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

.review-quote {
    font-size: 15px;
    color: #1E293B;
    line-height: 1.7;
    margin: 0;
}

/* ── Disclaimer Strip ── */
.disclaimer-strip {
    background: #080A12;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 14px 32px;
    text-align: center;
}
.disclaimer-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #E2E8F0;
    max-width: 960px;
    line-height: 1.6;
    font-weight: 500;
}

.disclaimer-inner svg {
    color: #F8FAFC;
    flex-shrink: 0;
}

/* ── Footer ── */
.site-footer {
    background: #080A12;
    color: #FFFFFF;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 32px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

.footer-brand-col {}
.footer-logo-link { display: inline-block; margin-bottom: 20px; }
.footer-tagline {
    font-size: 14px;
    font-weight: 700;
    color: #CBD5E1;
    margin-bottom: 12px;
}
.footer-tagline span { color: #D90429; }
.footer-desc {
    font-size: 13px;
    color: #8FA1B8;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 24px;
}

.footer-social-row {
    display: flex;
    gap: 10px;
}
.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    transition: var(--transition-smooth);
}
.footer-social-btn:hover {
    border-color: #D90429;
    background: rgba(217,4,41,0.12);
    color: #FFFFFF;
}

.footer-nav-col {}
.footer-col-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-link-list a {
    font-size: 13px;
    font-weight: 500;
    color: #A7B4C7;
    transition: var(--transition-smooth);
}
.footer-link-list a:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

.footer-contact-col {}
.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 4px;
}
.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.footer-contact-row svg { flex-shrink: 0; margin-top: 3px; }
.contact-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #475569;
    font-weight: 700;
    margin-bottom: 3px;
}
.contact-value {
    font-size: 13px;
    font-weight: 600;
    color: #CBD5E1;
    display: block;
    line-height: 1.5;
}
a.contact-value:hover { color: #FFFFFF; }

/* Footer bottom bar */
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #334155;
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-bottom-links a {
    color: #334155;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    transition: var(--transition-smooth);
}
.footer-bottom-links a:hover { color: #FFFFFF; }

/* Floating Chat & Action Bars */
.floating-chat-trigger {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    background: var(--color-acura-blue);
    color: #FFFFFF;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.floating-chat-trigger:hover {
    transform: scale(1.08);
}

.floating-chat-modal {
    position: fixed;
    bottom: 92px;
    right: 24px;
    z-index: 998;
    width: 360px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
}

.chat-modal-header {
    background: #060B18;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #060B18;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 16px;
}

.mobile-action-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.mobile-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    padding: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.mobile-cta-btn.highlight {
    background: var(--color-acura-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2.5px;
    background-color: #FFFFFF;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(4, 8, 20, 0.85);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

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

.mobile-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100dvh;
    background: #060B18;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.mobile-drawer-overlay.active .mobile-drawer {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.mobile-drawer-close {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #FFFFFF;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

.mobile-drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-drawer-links a {
    color: #E2E8F0;
    font-size: 16px;
    font-weight: 600;
    display: block;
    padding: 6px 0;
}

.mobile-drawer-links a:hover { color: #D90429; }

.mobile-drawer-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mobile-drawer-contacts {
    display: flex;
    gap: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #94A3B8;
}
.mobile-drawer-contacts a {
    color: #94A3B8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.mobile-drawer-contacts a:hover { color: #FFFFFF; }

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 420px);
    gap: 32px;
    align-items: start;
}

.detail-grid > div {
    min-width: 0;
}

.main-gallery {
    overflow: hidden;
    border-radius: 22px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.main-gallery img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.thumbnail-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(110px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.thumbnail-strip img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.2s ease;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.thumbnail-strip img.active {
    border-color: #0066CC;
    opacity: 1;
    box-shadow: 0 18px 30px rgba(0, 102, 204, 0.18);
}

.sticky-inquiry-box {
    position: sticky;
    top: 22px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}

@media (max-width: 1024px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sticky-inquiry-box {
        position: static;
    }

    .main-gallery img {
        height: 440px;
    }
}

@media (max-width: 768px) {
    .main-gallery img {
        height: 320px;
    }

    .thumbnail-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .thumbnail-strip img {
        height: 94px;
    }

    .sticky-inquiry-box {
        padding: 18px;
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .detail-grid {
        gap: 20px;
    }

    .main-gallery {
        border-radius: 16px;
    }

    .main-gallery img {
        height: 240px;
    }

    .thumbnail-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .thumbnail-strip img {
        height: 118px;
    }
}

.vehicle-detail-page { background: #f6f6f5; }
.vehicle-detail-page .main-gallery { border-radius: 4px; box-shadow: none; background: #eceeef; }
.vehicle-detail-page .main-gallery img { object-fit: contain; }
.vehicle-detail-page .sticky-inquiry-box { border: 0; border-top: 3px solid #b80d2b; border-radius: 0; box-shadow: none; background: transparent; padding: 26px 0; }
.vehicle-detail-page .thumbnail-strip img { border-radius: 3px; box-shadow: none; }
.vehicle-detail-page .thumbnail-strip img.active { border-color: #b80d2b; }
.vehicle-detail-page .btn, .vehicle-detail-page .form-control { border-radius: 3px; box-shadow: none; }
.vehicle-detail-page .btn-primary { background: #b80d2b; }
.detail-pricing { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.detail-pricing .current-price { font-size: 38px; }

/* ── Responsive Breakpoints ── */
@media (max-width: 1024px) {
    .header-nav { display: none; }
    .header-phone { display: none; }
    .mobile-menu-toggle { display: flex; }
    .desktop-only { display: none !important; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 40px; }
    .search-form { grid-template-columns: repeat(3, 1fr); }
    .detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-top { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand-col { grid-column: 1 / -1; }
    .footer-contact-col { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .header-inner { padding: 0 20px; }
    .announcement-bar {
        font-size: 12px;
        padding: 8px 12px;
    }
    .announcement-bar p {
        display: block;
        line-height: 1.45;
        text-align: center;
    }
    .ann-label {
        display: block;
        margin: 0 0 2px;
        font-size: 10px;
    }
    .announcement-bar a {
        display: inline;
        font-size: 12px;
    }
    .section-padding { padding: 50px 0; }
    .hero-section { padding: 40px 0 80px 0; }
    .hero-title { font-size: 32px; letter-spacing: -0.5px; }
    .hero-sub { font-size: 15px; }
    .search-strip { margin-top: -30px; padding: 16px; }
    .search-form { grid-template-columns: 1fr; }
    .search-form button { grid-column: 1 / -1; width: 100%; }
    .vehicle-grid { grid-template-columns: 1fr; }
    .pathways-grid { grid-template-columns: 1fr; }
    [style*="grid-template-columns: 1fr 1.5fr"],
    [style*="grid-template-columns: 1fr 1.2fr"],
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: repeat(2, 1fr)"],
    [style*="grid-template-columns: repeat(3, 1fr)"],
    [style*="grid-template-columns: 280px 1fr"] {
        grid-template-columns: 1fr !important;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .section-header .btn {
        width: 100%;
        justify-content: center;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .review-card {
        padding: 22px 18px;
    }
    .review-top {
        gap: 10px;
        margin-bottom: 14px;
    }
    .review-avatar {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    .review-name {
        font-size: 13px;
    }
    .review-source {
        font-size: 10px;
    }
    .review-quote {
        font-size: 14px;
    }
    .footer-top { grid-template-columns: 1fr 1fr; padding: 40px 20px 32px; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; padding: 18px 20px; }
    .mobile-action-bar { display: block; }
    body { padding-bottom: 82px; }
    .floating-chat-modal { width: calc(100vw - 32px); right: 16px; bottom: 85px; }
    #tawkchat-minified-wrapper,
    #tawkchat-container,
    .tawk-min-container,
    .tawk-widget-iframe,
    .tawk-live-chat-widget,
    iframe[id^="tawk"] {
        bottom: 98px !important;
        right: 12px !important;
        z-index: 998 !important;
    }
}

@media (max-width: 480px) {
    .footer-top { grid-template-columns: 1fr; }
    .hero-card img { height: 260px; }
    .section-title {
        font-size: 30px;
        line-height: 1.08;
    }
}
