/* ArabiansClick — gold + black (logo palette) */
:root {
    --bg: #ffffff;
    --bg-soft: #f7f5f0;
    --bg-tint: #f0ebe0;
    --bg-card: #ffffff;
    --ink: #0b0b0b;
    --ink-soft: #2a2a2a;
    --ink-muted: #6b6560;
    --line: #e8e4db;
    --line-strong: #d4cdc0;
    --brand: #c9a227;
    --brand-dark: #a6861c;
    --brand-soft: #f7f0dc;
    --gold: #d4af37;
    --gold-deep: #996515;
    --success: #1f9d57;
    --danger: #d64545;
    --whatsapp: #25d366;
    --font-display: "Sora", "Segoe UI", sans-serif;
    --font-body: "DM Sans", "Segoe UI", sans-serif;
    --container: 1480px;
    --header-height: 88px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-pill: 999px;
    --shadow-sm: 0 2px 10px rgba(11, 11, 11, 0.05);
    --shadow: 0 12px 36px rgba(11, 11, 11, 0.08);
    --shadow-lg: 0 22px 50px rgba(11, 11, 11, 0.12);
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: #ffffff;
    color: var(--ink);
    line-height: 1.65;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

main {
    background: #ffffff;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* Keep fixed max-width containers for other page sections */
.container {
    width: min(100% - 1rem, var(--container));
    max-width: var(--container);
    margin-inline: auto;
    padding-left: 0;
    padding-right: 0;
}

/* Fluid wrappers */
.container-fluid {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
}

/* Bootstrap container padding zero for fixed-width .container (custom) */
.site-header .container.header-bar,
.hero-marketplace .container.hero-marketplace-inner,
.site-footer > .container {
    --bs-gutter-x: 0;
}

/* Header / Navbar — transparent, logo left, menus + language right */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    min-height: var(--header-height);
    background: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition:
        box-shadow 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        backdrop-filter 0.3s ease;
    display: flex;
    align-items: center;
}

.site-header.scrolled,
.site-header.is-open {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(228, 233, 240, 0.9);
    box-shadow: 0 10px 30px rgba(21, 32, 51, 0.06);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
}

.header-bar {
    width: 100%;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.75rem;
    padding-block: 0.45rem;
    flex-direction: row;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 0;
    max-width: min(200px, 56vw);
    line-height: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    transition: transform var(--transition), opacity var(--transition);
}

.brand:hover {
    transform: translateY(-1px);
    box-shadow: none;
    opacity: 0.92;
}

.brand-logo {
    display: block;
    width: auto;
    height: 64px;
    max-width: min(160px, 100%);
    max-height: 64px;
    margin: 0 auto;
    padding: 0;
    object-fit: contain;
    object-position: center center;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    filter: none;
    /* Keep logo mark orientation stable in LTR + RTL */
    transform: none;
    direction: ltr;
    unicode-bidi: isolate;
}

.brand-text,
.header-spacer {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem 1.15rem;
    margin-inline-start: auto;
    margin-inline-end: 0;
    min-width: 0;
    flex: 1 1 auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.05rem 0.2rem;
    margin-inline: auto 0.25rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-soft);
    padding: 0.55rem 0.75rem;
    white-space: nowrap;
    border-radius: 10px;
    position: relative;
    transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
    color: var(--brand);
    background: rgba(201, 162, 39, 0.08);
}

.nav-link.active {
    color: var(--brand);
    background: transparent;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.28rem;
    height: 2px;
    border-radius: 2px;
    background: var(--brand);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.header-quote-btn {
    min-height: 40px;
    padding: 0.55rem 1.05rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
    background-color: var(--brand) !important;
    border-color: var(--brand) !important;
    color: #0b0b0b !important;
    box-shadow: 0 8px 18px rgba(201, 162, 39, 0.22);
}

.header-quote-btn:hover {
    transform: translateY(-1px);
    background-color: var(--brand-dark) !important;
    border-color: var(--brand-dark) !important;
    color: #0b0b0b !important;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.18rem;
    border: 1px solid rgba(228, 233, 240, 0.95);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 2px 8px rgba(21, 32, 51, 0.04);
}

.site-header.scrolled .lang-switch,
.site-header.is-open .lang-switch {
    background: var(--bg-soft);
    box-shadow: none;
}

.lang-switch a {
    min-width: 34px;
    height: 30px;
    padding: 0 0.5rem;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.lang-switch a:hover {
    color: var(--brand);
}

.lang-switch a.active {
    color: #fff;
    background: var(--brand);
}

.lang-sep {
    display: none;
}

.header-cta,
.header-cta-mobile {
    display: none !important;
}

.nav-mobile-actions {
    display: none;
}

.nav-mobile-cta {
    display: none;
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    min-height: 44px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(228, 233, 240, 0.95);
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(21, 32, 51, 0.05);
}

.nav-toggle:hover {
    border-color: var(--brand);
    background: var(--brand-soft);
}

.nav-toggle-bar {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.site-header.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
    overflow: hidden;
}

/* Vehicle search (home hero) */
.vehicle-search {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin-bottom: 1.35rem;
    z-index: 50;
}

.vehicle-search.is-open {
    z-index: 80;
}

.vehicle-search-form {
    width: 100%;
}

.vehicle-search-box {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 56px;
    padding: 0.3rem 0.3rem 0.3rem 1rem;
    border: 1.5px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.vehicle-search.is-open .vehicle-search-box,
.vehicle-search-box:focus-within {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12), var(--shadow);
}

.vehicle-search-icon {
    display: grid;
    place-items: center;
    color: var(--ink-muted);
    flex-shrink: 0;
    margin-inline-end: 0.55rem;
}

.vehicle-search-input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 0.98rem;
    padding: 0.5rem 0.4rem;
    outline: none;
    height: 100%;
}

.vehicle-search-input::placeholder {
    color: var(--ink-muted);
}

.vehicle-search-btn {
    flex: 0 0 auto;
    border: 0;
    border-radius: 12px;
    background: var(--brand);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.7rem 1.2rem;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
}

.vehicle-search-btn:hover {
    background: var(--brand-dark);
}

.vehicle-search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: min(60vh, 400px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    z-index: 90;
}

.vehicle-search-dropdown[hidden] {
    display: none !important;
}

.vehicle-search-dropdown-label {
    padding: 0.65rem 1rem 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}

.vehicle-search-list {
    overflow-y: auto;
    max-height: 280px;
}

.vehicle-search-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--line);
    color: inherit;
    text-decoration: none;
    transition: background var(--transition);
}

.vehicle-search-item:last-child {
    border-bottom: none;
}

.vehicle-search-item:hover,
.vehicle-search-item:focus {
    background: var(--bg-soft);
    outline: none;
}

.vehicle-search-thumb {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    background: #ffffff;
    flex-shrink: 0;
}

.vehicle-search-meta {
    min-width: 0;
    flex: 1;
}

.vehicle-search-meta strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vehicle-search-meta small {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.8rem;
    color: var(--ink-muted);
    font-weight: 600;
}

.vehicle-search-empty,
.vehicle-search-loading {
    padding: 1.15rem 1rem;
    text-align: center;
    color: var(--ink-muted);
    font-size: 0.9rem;
}

.vehicle-search-footer {
    display: block;
    padding: 0.8rem 1rem;
    text-align: center;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--brand);
    background: var(--brand-soft);
    border-top: 1px solid var(--line);
}

.vehicle-search-footer:hover {
    color: var(--brand-dark);
}

/* ── Hero (Google-inspired: clean, search-first, visual proof) ── */
.hero-marketplace {
    position: relative;
    z-index: 40;
    padding: calc(var(--header-height) + 2.5rem) 0 3rem;
    overflow: visible;
    min-height: clamp(560px, 72svh, 720px);
    display: flex;
    align-items: center;
}

.hero-marketplace-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    background: #ffffff;
}

.hero-marketplace-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background:
        url("/Frontend/images/cover.png") right center / cover no-repeat;
    mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 55%);
}

.hero-marketplace-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-marketplace-inner {
    position: relative;
    z-index: 1;
    width: min(100% - 1rem, var(--container));
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 4vw, 3.25rem);
    align-items: center;
}

.hero-copy {
    animation: fadeUp 0.65s ease both;
    max-width: 34rem;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-pill);
    background: #fff;
    border: 1px solid var(--line);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-sm);
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.4vw, 3.65rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.02;
    color: var(--ink);
    margin: 0 0 0.85rem;
}

.hero-h1 .hero-name-dark {
    color: #0b0b0b;
}

.hero-h1 .hero-name-gold {
    color: var(--brand);
    background: linear-gradient(180deg, #e0c35a 0%, var(--brand) 48%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-desc {
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.55;
    max-width: 28rem;
    margin: 0 0 1.45rem;
}

/* Google-like elevated search */
.hero-copy .vehicle-search {
    max-width: 100%;
    margin-bottom: 0.9rem;
    z-index: 60;
}

.hero-copy .vehicle-search.is-open {
    z-index: 90;
}

.hero-copy .vehicle-search-box {
    min-height: 60px;
    padding: 0.35rem 0.35rem 0.35rem 1.05rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #fff;
    box-shadow:
        0 1px 2px rgba(21, 32, 51, 0.06),
        0 8px 28px rgba(21, 32, 51, 0.1);
}

.hero-copy .vehicle-search.is-open .vehicle-search-box,
.hero-copy .vehicle-search-box:focus-within {
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow:
        0 0 0 4px rgba(201, 162, 39, 0.12),
        0 10px 32px rgba(21, 32, 51, 0.12);
}

.hero-copy .vehicle-search-input {
    font-size: 1rem;
    padding: 0.55rem 0.55rem;
}

.hero-copy .vehicle-search-btn {
    border-radius: 999px;
    min-width: 6.5rem;
    padding: 0.8rem 1.35rem;
    font-size: 0.95rem;
}

.hero-copy .vehicle-search-dropdown {
    border-radius: 18px;
    margin-top: 0.35rem;
    top: calc(100% + 6px);
    z-index: 100;
}

.hero-hints {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.7rem;
    margin-bottom: 1.35rem;
    font-size: 0.88rem;
    color: var(--ink-muted);
}

.hero-hints-label {
    font-weight: 700;
    color: var(--ink-soft);
}

.hero-hints a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.hero-hints a:hover {
    border-bottom-color: var(--brand);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.15rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-trust-icon {
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: #e8f8ef;
    color: var(--success);
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.btn-outline-brand {
    border-color: var(--brand);
    color: var(--brand);
    background: rgba(255, 255, 255, 0.92);
}

.btn-outline-brand:hover {
    background: var(--brand);
    color: #0b0b0b;
    border-color: var(--brand);
}

/* Override Bootstrap primary — gold + black (logo palette) */
.btn.btn-primary,
a.btn.btn-primary,
button.btn.btn-primary,
.btn-primary {
    --bs-btn-color: #0b0b0b;
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-color: #0b0b0b;
    --bs-btn-hover-bg: var(--brand-dark);
    --bs-btn-hover-border-color: var(--brand-dark);
    --bs-btn-active-color: #0b0b0b;
    --bs-btn-active-bg: var(--brand-dark);
    --bs-btn-active-border-color: var(--brand-dark);
    --bs-btn-disabled-color: #0b0b0b;
    --bs-btn-disabled-bg: var(--brand);
    --bs-btn-disabled-border-color: var(--brand);
    background-color: var(--brand) !important;
    border-color: var(--brand) !important;
    color: #0b0b0b !important;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(201, 162, 39, 0.22);
}

.btn.btn-primary:hover,
a.btn.btn-primary:hover,
button.btn.btn-primary:hover,
.btn-primary:hover {
    background-color: var(--brand-dark) !important;
    border-color: var(--brand-dark) !important;
    color: #0b0b0b !important;
}

.btn.btn-primary:focus-visible,
.btn-primary:focus-visible {
    box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.35);
}

/* Hero right stage — full-bleed image + floating context */
.hero-stage {
    animation: fadeUp 0.75s ease 0.08s both;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
    width: 100%;
}

.hero-stage-frame {
    position: relative;
    width: 100%;
    padding: 0;
    border-radius: 22px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-stage-media {
    position: relative;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    aspect-ratio: 4 / 3;
    min-height: 320px;
    max-height: none;
    box-shadow: 0 22px 50px rgba(21, 32, 51, 0.14);
}

.hero-stage-media-static {
    aspect-ratio: 16 / 11;
    min-height: 360px;
    height: min(52vh, 520px);
    max-height: 520px;
}

.hero-stage-track {
    position: absolute;
    inset: 0;
}

.hero-stage-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.7s ease, transform 1s ease;
    color: inherit;
    text-decoration: none;
}

.hero-stage-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-stage-media-static .hero-stage-slide.is-active img {
    animation: heroStageZoom 14s ease-out both;
}

.hero-stage-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-stage-media-static .hero-stage-slide img {
    object-position: 55% center;
}

@keyframes heroStageZoom {
    from { transform: scale(1.06); }
    to { transform: scale(1); }
}

.hero-stage-scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(8, 14, 26, 0.08) 0%, transparent 32%, transparent 48%, rgba(8, 14, 26, 0.78) 100%),
        radial-gradient(ellipse 70% 50% at 80% 0%, rgba(201, 162, 39, 0.18), transparent 55%);
}

.hero-stage-top {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    left: auto;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
}

.hero-stage-live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.hero-stage-live-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0 rgba(31, 157, 87, 0.55);
    animation: heroPulse 1.8s ease infinite;
}

@keyframes heroPulse {
    0% { box-shadow: 0 0 0 0 rgba(31, 157, 87, 0.45); }
    70% { box-shadow: 0 0 0 8px rgba(31, 157, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(31, 157, 87, 0); }
}

.hero-stage-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.32rem 0.6rem;
    border-radius: 999px;
    background: rgba(8, 14, 26, 0.45);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.hero-stage-place {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    background: rgba(8, 14, 26, 0.48);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.hero-stage-counter-sep {
    opacity: 0.55;
}

.hero-stage-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 4;
    min-height: 3.4rem;
}

.hero-stage-caption-static {
    right: 1rem;
    max-width: 22rem;
}

.hero-stage-caption-item {
    position: absolute;
    inset: 0 auto auto 0;
    right: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    color: #fff;
    pointer-events: none;
}

.hero-stage-caption-item.is-active {
    opacity: 1;
    transform: translateY(0);
}

.hero-stage-caption-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-stage-caption-item small {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.86rem;
    font-weight: 600;
    opacity: 0.9;
}

.hero-stage-nav {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    z-index: 5;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    line-height: 1;
    transition: transform var(--transition), background var(--transition);
}

.hero-stage-nav:hover {
    transform: scale(1.06);
    background: #fff;
}

.hero-stage-prev { left: 0.7rem; }
.hero-stage-next { right: 0.7rem; }

.hero-stage-dots {
    position: absolute;
    left: 50%;
    bottom: 0.75rem;
    translate: -50% 0;
    z-index: 5;
    display: flex;
    gap: 0.35rem;
    padding: 0.3rem 0.45rem;
    border-radius: 999px;
    background: rgba(8, 14, 26, 0.35);
    backdrop-filter: blur(6px);
}

.hero-stage-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.hero-stage-dot.is-active {
    width: 20px;
    border-radius: 999px;
    background: #fff;
}

/* Interior peek card */
.hero-stage-peek {
    position: absolute;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 6;
    width: min(34%, 148px);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 3px solid #fff;
    box-shadow: 0 14px 34px rgba(21, 32, 51, 0.2);
    transform: rotate(2.5deg);
    animation: heroFloat 4.5s ease-in-out infinite;
}

.hero-stage-peek img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.hero-stage-peek span {
    display: block;
    padding: 0.35rem 0.5rem 0.45rem;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand);
    background: #fff;
}

@keyframes heroFloat {
    0%, 100% { transform: rotate(2.5deg) translateY(0); }
    50% { transform: rotate(2.5deg) translateY(-6px); }
}

/* Glass floating chips — right column, stacked in order */
.hero-stage-floats {
    position: absolute;
    z-index: 6;
    top: 50%;
    inset-inline-end: 0.9rem;
    inset-inline-start: auto;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    width: min(12.5rem, calc(100% - 1.8rem));
    pointer-events: none;
}

.hero-stage-float {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 30px rgba(21, 32, 51, 0.14);
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.hero-stage-float strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 750;
    color: var(--ink);
    line-height: 1.2;
}

.hero-stage-float small {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ink-muted);
}

.hero-stage-float-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hero-stage-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 0.75rem;
}

.hero-stage-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1.5px solid transparent;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.hero-stage-btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 10px 24px rgba(201, 162, 39, 0.28);
}

.hero-stage-btn-primary:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-1px);
}

.hero-stage-btn-ghost {
    background: #fff;
    color: var(--brand);
    border-color: #e8d9a0;
}

.hero-stage-btn-ghost:hover {
    background: var(--brand-soft);
    color: var(--brand-dark);
    transform: translateY(-1px);
}

.hero-stage-more {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-inline-start: 0.15rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink-muted);
}

.hero-stage-more a {
    color: var(--ink-soft);
}

.hero-stage-more a:hover {
    color: var(--brand);
}

/* Legacy aliases if used elsewhere */
.hero {
    position: relative;
    padding: calc(var(--header-height) + 2.5rem) 0 3.5rem;
    background: var(--bg-soft);
}

.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
    font-weight: 700;
    color: var(--ink);
}


.section {
    padding: 4.5rem 0;
}

.section-muted {
    background: #ffffff;
}

.section-alt {
    background: #ffffff;
}

/* Home page sections — solid white */
.home-services-section,
.featured-fleet-section,
.home-gallery-section,
.cta-section {
    background: #ffffff;
}

/* Image frames / placeholders — white body bg */
.g-card,
.s-card-media,
.v-card-media,
.v-card-slides,
.vehicle-images figure,
.vehicle-gallery figure,
.vd-stage,
.vd-thumb,
.about-media,
.about-image,
.service-modal-media,
.gallery-lightbox-stage,
.gallery-lightbox-stage img {
    background: #ffffff;
}
.home-services-section {
    position: relative;
    z-index: 1;
    padding-top: 3.75rem;
    padding-bottom: 3.5rem;
}

.home-services-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem 1.75rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.home-services-intro {
    max-width: 36rem;
    text-align: start;
    flex: 1 1 220px;
}

.home-services-intro .section-title {
    margin-bottom: 0.45rem;
}

.home-services-intro .section-text {
    margin-bottom: 0;
}

.home-services-all {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    margin-bottom: 0.15rem;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    background: #fff;
    color: var(--brand);
    border: 1.5px solid #e8d9a0;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.home-services-all:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    transform: translateY(-1px);
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    align-items: stretch;
}

.s-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    min-height: 100%;
}

.s-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #e8d9a0;
}

.s-card-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #ffffff;
}

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

.s-card:hover .s-card-media img {
    transform: scale(1.04);
}

.s-card-badge {
    position: absolute;
    top: 0.7rem;
    inset-inline-start: 0.7rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.s-card-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    flex: 1;
}

.s-card-title-block {
    padding: 1rem 1.05rem 0.75rem;
    border-bottom: 1px solid var(--line);
}

.s-card-title {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0;
    color: var(--ink);
}

.s-card-desc-block {
    padding: 0.85rem 1.05rem 0.35rem;
    flex: 1;
}

.s-card-text {
    margin: 0;
    color: var(--ink-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.s-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0.35rem 1.05rem 1.05rem auto;
    align-self: flex-end;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--brand);
    font: inherit;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    cursor: pointer;
}

.s-card-link:hover {
    color: var(--brand-dark);
}

/* Service detail modal */
.service-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.service-modal[hidden] {
    display: none !important;
}

.service-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(3px);
}

.service-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: min(90vh, 860px);
    overflow: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    animation: service-modal-in 0.22s ease;
}

@keyframes service-modal-in {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-modal-close {
    position: absolute;
    top: 0.7rem;
    inset-inline-end: 0.7rem;
    z-index: 2;
    width: 2.15rem;
    height: 2.15rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.service-modal-close:hover {
    background: #fff;
    color: var(--brand);
}

.service-modal-media {
    aspect-ratio: 16 / 9;
    background: #ffffff;
    overflow: hidden;
}

.service-modal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-modal-content {
    padding: 1.25rem 1.35rem 1.4rem;
}

.service-modal-eyebrow {
    margin: 0 0 0.35rem;
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.service-modal-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.25;
}

.service-modal-divider {
    height: 1px;
    margin: 0.9rem 0 1rem;
    background: var(--line);
}

.service-modal-description {
    color: var(--ink-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    white-space: pre-line;
}

.service-modal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

body.service-modal-open {
    overflow: hidden;
}
/* Featured vehicles home block */
.featured-fleet-section {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}

.featured-fleet-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem 1.75rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.featured-fleet-intro {
    max-width: 36rem;
    text-align: start;
    flex: 1 1 220px;
}

.featured-fleet-intro .section-title {
    margin-bottom: 0.45rem;
}

.featured-fleet-intro .section-text {
    margin-bottom: 0;
}

.featured-fleet-all {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    margin-bottom: 0.15rem;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(201, 162, 39, 0.24);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.featured-fleet-all:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(201, 162, 39, 0.3);
}

/* 3 per row */
.featured-fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
    align-items: stretch;
}

.v-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    min-height: 100%;
}

.v-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #e8d9a0;
}

.v-card-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
}

.v-card-slides {
    position: absolute;
    inset: 0;
    background: #ffffff;
}

.v-card-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.55s ease;
}

.v-card-slide.is-active {
    opacity: 1;
}

.v-card-category {
    position: absolute;
    top: 0.7rem;
    inset-inline-start: 0.7rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-sm);
}

.v-card-dots {
    position: absolute;
    top: 0.75rem;
    inset-inline-end: 0.7rem;
    z-index: 3;
    display: flex;
    gap: 0.3rem;
}

.v-card-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: background var(--transition), transform var(--transition);
}

.v-card-dot.is-active {
    background: #fff;
    transform: scale(1.2);
}

.v-card-body {
    padding: 0.9rem 0.95rem 0.65rem;
    flex: 1;
}

.v-card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0 0 0.3rem;
    color: var(--ink);
}

.v-card-title a {
    color: inherit;
    text-decoration: none;
}

.v-card-title a:hover {
    color: var(--brand);
}

.v-card-capacity {
    margin: 0;
    color: var(--ink-muted);
    font-size: 0.86rem;
    font-weight: 600;
}

.v-card-footer {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.65rem 0.7rem 0.75rem;
    background: #fff;
    border-top: 1px solid var(--line);
    margin-top: auto;
}

.v-action {
    flex: 1 1 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.18rem;
    min-width: 0;
    min-height: 44px;
    padding: 0.35rem 0.2rem;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--bg-soft);
    color: var(--ink-soft);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
    line-height: 1.1;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.v-action span {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v-action svg {
    flex-shrink: 0;
}

.v-action:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-soft);
}

.v-action-wa {
    background: #e9f9ef;
    border-color: #bfe8cf;
    color: #168a45;
}

.v-action-wa:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.v-action-call:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.v-action-enquiry {
    background: var(--brand-soft);
    border-color: #e8d9a0;
    color: var(--brand);
}

.v-action-enquiry:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.v-action-email:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.v-action-disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: not-allowed;
}

.section-header {
    margin-bottom: 2.25rem;
}

.section-header.center {
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0.7rem;
    color: var(--ink);
}

.section-text {
    color: var(--ink-muted);
    font-size: 0.98rem;
}

.section-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* ── Features ── */
.features-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1.25rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 1rem;
    font-weight: 800;
}

.feature-item h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--ink);
}

.feature-item p {
    color: var(--ink-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ── Cards ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

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

.card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    border-color: #e8d9a0;
    box-shadow: var(--shadow);
}

.card-media {
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #ffffff;
    position: relative;
}

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

.card:hover .card-media img {
    transform: scale(1.04);
}

.card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.28rem 0.65rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    color: var(--brand);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.card-body {
    padding: 1.15rem 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.4rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--ink);
}

.card-meta {
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 700;
}

.card-text {
    color: var(--ink-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.4rem;
    color: var(--brand);
    font-size: 0.84rem;
    font-weight: 700;
}

.card-link:hover {
    color: var(--brand-dark);
}

/* services (list page) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    color: inherit;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #e8d9a0;
    box-shadow: var(--shadow);
}

.service-card-title {
    padding: 1rem 1.15rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, var(--brand-soft), #fff);
    color: var(--ink);
}

.service-card-image {
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #ffffff;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.04);
}

.service-card-body {
    padding: 1.1rem;
    color: var(--ink-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Vehicle detail blocks */
.vehicle-slide {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--line);
}

.vehicle-slide:last-child {
    border-bottom: none;
}

.vehicle-slide-top {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 1.75rem;
    align-items: start;
    margin-bottom: 1.25rem;
}

.vehicle-name {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--ink);
}

.vehicle-meta {
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.4rem;
}

.vehicle-desc {
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.75;
}

.vehicle-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.vehicle-images figure,
.vehicle-gallery figure {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    border: 1px solid var(--line);
}

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

.vehicle-images figure:hover img,
.vehicle-gallery figure:hover img {
    transform: scale(1.03);
}

.vehicle-images figcaption,
.vehicle-gallery figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0.4rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink-soft);
    border-top-right-radius: 8px;
}

.vehicle-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
}

.vehicle-gallery-plain figure {
    aspect-ratio: 16 / 10;
}

/* About / detail */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
    align-items: center;
}

.about-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact page (redesigned — not the old two-card layout) */
.contact-page {
    padding: calc(var(--header-height) + 2rem) 0 4.5rem;
    background:
        radial-gradient(ellipse 50% 40% at 10% 0%, rgba(201, 162, 39, 0.07), transparent 55%),
        radial-gradient(ellipse 40% 35% at 100% 20%, rgba(196, 163, 90, 0.08), transparent 50%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 45%);
}

.contact-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
}

.contact-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.45rem;
}

.contact-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 0.55rem;
}

.contact-lead {
    color: var(--ink-muted);
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.65;
}

.contact-intro-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}

.contact-response-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius-pill);
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.86rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.contact-response-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1f9d57;
    box-shadow: 0 0 0 4px rgba(31, 157, 87, 0.15);
}

.contact-wa-link {
    font-size: 0.92rem;
    font-weight: 700;
    color: #128c47;
}

.contact-wa-link:hover {
    color: #0d6d36;
}

.contact-channels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

.contact-channel {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.15rem 1.1rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    min-height: 118px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-channel::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--brand), var(--gold));
}

.contact-channel:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #e8d9a0;
}

.contact-channel.is-static {
    cursor: default;
}

.contact-channel.is-static:hover {
    transform: none;
}

.channel-wa::before {
    background: linear-gradient(180deg, #25d366, #128c47);
}

.channel-map::before {
    background: linear-gradient(180deg, var(--gold), #d4a84b);
}

.channel-tag {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.channel-value {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
    word-break: break-word;
}

.channel-hint {
    margin-top: auto;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand);
}

.channel-wa .channel-hint {
    color: #128c47;
}

.channel-map .channel-hint {
    color: var(--gold-deep);
}

.contact-board {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
}

.contact-board-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(120deg, #0b0b0b 0%, #1a1a1a 42%, #c9a227 100%);
    color: #fff;
}

.contact-board-head h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
}

.contact-board-head p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-board-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.contact-board-social a {
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.contact-board-social a:hover {
    background: rgba(255, 255, 255, 0.24);
}

.contact-board-body {
    padding: 1.5rem 1.5rem 1.65rem;
}

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

.form-group-full {
    grid-column: 1 / -1;
}

.contact-form-modern .form-control {
    background: #f7f5f0;
    border: 1.5px solid transparent;
}

.contact-form-modern .form-control:focus {
    background: #fff;
    border-color: var(--brand);
}

.contact-form-modern textarea.form-control {
    min-height: 150px;
}

.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
    margin-top: 0.35rem;
    padding-top: 0.5rem;
}

.contact-submit {
    min-width: 180px;
}

.contact-form-note {
    font-size: 0.84rem;
    color: var(--ink-muted);
}

/* Keep old contact-grid styles for any other use, lightly diluted */
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.15fr;
    gap: 1.35rem;
}

.contact-info-card,
.contact-form-wrap {
    background: #fff;
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-item {
    display: flex;
    gap: 0.9rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
    color: var(--ink-muted);
    font-weight: 700;
}

.contact-item p,
.contact-item a {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--brand);
}

.contact-social {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.contact-social h4 {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    color: var(--ink-muted);
    font-weight: 700;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.social-links a,
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    color: var(--ink-soft);
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--bg-soft);
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.social-link-icon-only {
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border-radius: 10px;
}

.social-link-icon {
    display: grid;
    place-items: center;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.social-link-icon-only .social-link-icon {
    width: 1.1rem;
    height: 1.1rem;
}

.social-link-icon svg {
    display: block;
    width: 15px;
    height: 15px;
}

.social-link-icon-only .social-link-icon svg {
    width: 16px;
    height: 16px;
}

.social-links a:hover,
.social-link:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-soft);
    transform: translateY(-1px);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.form-control {
    width: 100%;
    background: var(--bg-soft);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-control:focus {
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12);
}

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

.alert {
    padding: 0.9rem 1rem;
    margin-bottom: 1.1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 0.92rem;
}

.alert-success {
    background: rgba(31, 157, 87, 0.08);
    border-color: rgba(31, 157, 87, 0.35);
    color: var(--success);
}

.alert-error {
    background: rgba(214, 69, 69, 0.08);
    border-color: rgba(214, 69, 69, 0.35);
    color: var(--danger);
}

.alert-error ul {
    padding-left: 1.1rem;
    list-style: disc;
}

/* Page hero — pure white first band so fixed header sits on it like home */
.page-hero {
    padding: calc(var(--header-height) + 2.25rem) 0 2.25rem;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.page-hero-compact {
    padding-bottom: 1.5rem;
}

.page-hero-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem 2rem;
}

.page-hero-copy {
    max-width: 40rem;
    margin: 0;
    margin-inline: 0;
    text-align: start;
}

.page-hero-copy .section-title {
    margin-bottom: 0.5rem;
    text-align: start;
}

.page-hero-copy .section-text {
    margin-bottom: 0;
    text-align: start;
}

.page-hero-copy .section-eyebrow {
    text-align: start;
}

.services-page-hero .services-hero-copy {
    max-width: 42rem;
    margin: 0;
    margin-inline-start: 0;
    margin-inline-end: auto;
    text-align: start;
}

.page-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    background: var(--brand);
    color: #0b0b0b;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(201, 162, 39, 0.24);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.page-hero-cta:hover {
    background: var(--brand-dark);
    color: #0b0b0b;
    transform: translateY(-1px);
}

/* Fleet listing page */
.fleet-page-section {
    padding-top: 2.5rem;
}

/* Contact page layout: info left · form right · locations below */
.contact-layout-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
    background:
        radial-gradient(ellipse 45% 40% at 0% 10%, rgba(201, 162, 39, 0.06), transparent 55%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 42%);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.35fr);
    gap: 1.35rem;
    align-items: start;
    margin-bottom: 2.75rem;
}

.contact-side {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.5rem 1.35rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

.contact-side-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.contact-side-text {
    color: var(--ink-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.contact-side-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.contact-side-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.9rem 0.95rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #f7f9fc;
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.contact-side-item:hover {
    border-color: #e8d9a0;
    background: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.contact-side-item.is-static {
    cursor: default;
}

.contact-side-item.is-static:hover {
    transform: none;
    box-shadow: none;
}

.contact-side-item.is-wa:hover {
    border-color: rgba(37, 211, 102, 0.45);
}

.contact-side-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: var(--brand-soft);
    color: var(--brand);
}

.contact-side-icon.is-email {
    background: rgba(201, 162, 39, 0.1);
}

.contact-side-icon.is-wa {
    background: rgba(37, 211, 102, 0.14);
    color: #128c47;
}

.contact-side-item span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-side-item small {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.contact-side-item strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
    word-break: break-word;
}

.contact-side-number {
    display: block;
    text-decoration: none;
    color: inherit;
    width: fit-content;
}

.contact-side-number:hover strong {
    color: var(--brand);
}

.contact-side-number + .contact-side-number {
    margin-top: 0.15rem;
}

.contact-form-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.5rem 1.5rem 1.65rem;
    box-shadow: var(--shadow);
}

.contact-form-panel-head {
    margin-bottom: 1.15rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.contact-form-panel-head h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.contact-form-panel-head p {
    color: var(--ink-muted);
    font-size: 0.92rem;
    margin: 0;
}

.contact-locations {
    padding-top: 0.25rem;
}

.contact-locations-head {
    margin-bottom: 1.25rem;
}

.contact-locations-head .section-title {
    margin-bottom: 0;
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
}

.contact-locations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-location-card {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    padding: 1.25rem 1.2rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.contact-location-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: rgba(196, 163, 90, 0.14);
    color: var(--gold-deep, #9a7330);
}

.contact-location-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.3rem;
}

.contact-location-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* About page */
.about-page {
    background: #fff;
}

.about-page-hero .about-page-hero-copy {
    max-width: min(36rem, 100%);
}

.about-page-hero-text {
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 32rem;
    color: var(--ink-muted);
    margin-bottom: 0;
}

.about-main {
    padding-top: 2rem;
    padding-bottom: 4.5rem;
}

.about-panel {
    width: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: clamp(1.35rem, 2.5vw, 2.1rem);
    box-shadow: var(--shadow-sm);
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(300px, 1.25fr) minmax(0, 1fr);
    gap: 2rem 2.5rem;
    align-items: start;
}

.about-media {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #f0ece3;
    box-shadow: var(--shadow-sm);
}

.about-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.55s ease;
}

.about-media:hover img {
    transform: scale(1.03);
}

.about-media-tag {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(11, 11, 11, 0.82);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    backdrop-filter: blur(6px);
}

.about-media-tag-line {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--brand);
}

.about-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-content-label {
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 0.85rem;
}

.about-prose {
    color: var(--ink-soft);
    font-size: 1.03rem;
    line-height: 1.9;
    flex: 1 1 auto;
}

.about-prose p {
    margin: 0 0 1rem;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.85rem;
    padding-top: 1.35rem;
    border-top: 1px solid var(--line);
}

.about-btn,
.about-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.about-btn-outline {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--line-strong);
}

.about-btn-outline:hover {
    border-color: var(--brand);
    color: var(--brand-dark);
    background: var(--brand-soft);
    transform: translateY(-1px);
}

.about-social {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.about-social-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.75rem;
}

.about-social-links {
    margin-top: 0;
}

.about-social-links .social-link {
    background: #fff;
    border-color: var(--line);
    color: var(--ink-soft);
    box-shadow: var(--shadow-sm);
}

.about-social-links .social-link:hover {
    border-color: var(--brand);
    color: var(--brand-dark);
    background: var(--brand-soft);
}

/* Home gallery */
.home-gallery-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    background: #fff;
}

.home-gallery-head {
    margin-bottom: 1.75rem;
}

.home-gallery-intro {
    max-width: 36rem;
    text-align: start;
}

.home-gallery-intro .section-title {
    margin-bottom: 0.45rem;
}

.home-gallery-intro .section-text {
    margin-bottom: 0;
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.85rem;
}

.g-card {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #ffffff;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.g-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: #e8d9a0;
}

.g-card:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.g-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.g-card:hover img {
    transform: scale(1.04);
}

.g-card-caption {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 2.1rem 0.85rem 0.75rem;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(11, 11, 11, 0.22) 28%,
        rgba(11, 11, 11, 0.78) 100%
    );
    color: #fff;
    text-align: start;
    pointer-events: none;
    transition: padding var(--transition);
}

.g-card:hover .g-card-caption {
    padding-bottom: 0.9rem;
}

.g-card-caption-bar {
    display: block;
    width: 1.6rem;
    height: 2px;
    border-radius: 2px;
    background: var(--brand);
    box-shadow: 0 0 8px rgba(201, 162, 39, 0.45);
}

.g-card-caption-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

/* Gallery lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gallery-lightbox[hidden] {
    display: none !important;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 16, 28, 0.88);
    backdrop-filter: blur(4px);
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    max-height: min(92vh, 900px);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: gallery-lightbox-in 0.22s ease;
}

@keyframes gallery-lightbox-in {
    from {
        opacity: 0;
        transform: scale(0.97);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-lightbox-stage {
    width: 100%;
    max-height: min(78vh, 780px);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
}

.gallery-lightbox-stage img {
    width: 100%;
    max-height: min(70vh, 700px);
    object-fit: contain;
    display: block;
    background: #ffffff;
}

.gallery-lightbox-caption {
    margin: 0;
    padding: 0.85rem 1.1rem 1rem;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #faf8f2 100%);
    border-top: 1px solid var(--line);
}

.gallery-lightbox-caption:not([hidden]) {
    border-top: 2px solid rgba(201, 162, 39, 0.45);
}

.gallery-lightbox-close {
    position: fixed;
    top: 1rem;
    inset-inline-end: 1rem;
    z-index: 1310;
    width: 2.85rem;
    height: 2.85rem;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--danger, #d64545);
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow:
        0 0 0 3px rgba(214, 69, 69, 0.28),
        0 10px 24px rgba(214, 69, 69, 0.45);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.gallery-lightbox-close span {
    display: block;
    margin-top: -0.08em;
    line-height: 1;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
    background: #b83232;
    color: #fff;
    transform: scale(1.06);
    outline: none;
    box-shadow:
        0 0 0 4px rgba(214, 69, 69, 0.35),
        0 12px 28px rgba(214, 69, 69, 0.55);
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 2.6rem;
    height: 2.6rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background var(--transition), transform var(--transition);
}

.gallery-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.gallery-lightbox-prev {
    inset-inline-start: -0.35rem;
}

.gallery-lightbox-next {
    inset-inline-end: -0.35rem;
}

.gallery-lightbox-counter {
    margin: 0.85rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

body.gallery-lightbox-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .gallery-lightbox {
        padding: 0.65rem;
    }

    .gallery-lightbox-nav {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1.5rem;
    }

    .gallery-lightbox-prev {
        inset-inline-start: 0.35rem;
        top: auto;
        bottom: 3.4rem;
        transform: none;
    }

    .gallery-lightbox-next {
        inset-inline-end: 0.35rem;
        top: auto;
        bottom: 3.4rem;
        transform: none;
    }

    .gallery-lightbox-close {
        top: 0.75rem;
        inset-inline-end: 0.75rem;
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.65rem;
    }
}

/* CTA */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 3.75rem 0 4rem;
    text-align: start;
    overflow: hidden;
    background: #ffffff;
}

.cta-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem 1.75rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.cta-intro {
    max-width: 36rem;
    text-align: start;
    flex: 1 1 220px;
}

.cta-intro .section-title {
    margin-bottom: 0.45rem;
    max-width: none;
    margin-inline: 0;
}

.cta-intro .section-text {
    margin: 0;
    max-width: none;
}

.cta-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    margin-bottom: 0.15rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    border: 1.5px solid var(--brand);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.cta-contact-btn:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

/* Contact info cards — light project style */
.cta-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    align-items: stretch;
}

.cta-info-card {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    min-height: 100%;
    padding: 1.15rem 1.1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: inherit;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition),
        background var(--transition);
}

a.cta-info-card:hover {
    transform: translateY(-2px);
    border-color: #e8d9a0;
    box-shadow: var(--shadow);
    background: #fff;
}

a.cta-info-card:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.cta-info-card.is-static {
    cursor: default;
}

.cta-info-card.is-wa:hover {
    border-color: rgba(37, 211, 102, 0.45);
}

.cta-info-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand);
}

.cta-info-icon.is-phone,
.cta-info-icon.is-email {
    background: var(--brand-soft);
    color: var(--brand);
}

.cta-info-icon.is-wa {
    background: rgba(37, 211, 102, 0.14);
    color: #1b9d4a;
}

.cta-info-icon.is-map {
    background: rgba(201, 162, 39, 0.08);
    color: var(--brand-dark);
}

.cta-info-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    flex: 1;
}

.cta-info-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand);
    line-height: 1.3;
}

.cta-info-card.is-wa .cta-info-label {
    color: #1b9d4a;
}

.cta-info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.45;
    word-break: break-word;
}

.cta-info-card.is-location .cta-info-value {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink-soft);
    line-height: 1.5;
}

.cta-info-action {
    margin-top: 0.15rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-muted);
}

a.cta-info-card:hover .cta-info-action {
    color: var(--brand);
}

a.cta-info-card.is-wa:hover .cta-info-action {
    color: #1b9d4a;
}

/* Home plan-trip: single card — contact left · booking right */
.cta-booking-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.35fr);
    gap: 0;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cta-booking-side {
    padding: 1.5rem 1.35rem;
    background: #f7f9fc;
    border-inline-end: 1px solid var(--line);
}

.cta-booking-side .contact-side-icon.is-map {
    background: rgba(201, 162, 39, 0.1);
    color: var(--brand-dark);
}

.cta-booking-panel {
    padding: 1.5rem 1.5rem 1.65rem;
    min-width: 0;
}

.cta-booking-panel .contact-form-panel-head {
    margin-bottom: 1.15rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.cta-booking-panel .contact-form-panel-head h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.cta-booking-panel .contact-form-panel-head p {
    color: var(--ink-muted);
    font-size: 0.92rem;
    margin: 0;
}

.cta-booking-panel .booking-form .form-control[type="date"],
.cta-booking-panel .booking-form .form-control[type="time"] {
    color-scheme: light;
    min-height: 2.85rem;
}

/* Footer */
.site-footer {
    background: #0b0b0b;
    color: #e8e4db;
    border-top: 1px solid rgba(201, 162, 39, 0.22);
    padding: 3.25rem 0 1.3rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem 2.75rem;
    margin-bottom: 2rem;
}

.footer-grid > div {
    flex: 0 1 auto;
    min-width: 0;
}

/* Brand / intro column */
.footer-grid > div:first-child {
    flex: 1 1 240px;
    max-width: 320px;
}

/* Keep Quick Links + Contact + Locations + payments tight, left-to-right */
.footer-grid-4 > div:not(:first-child),
.footer-grid-5 > div:not(:first-child) {
    flex: 0 1 auto;
    width: min(100%, 180px);
}

.footer-grid-5 > .footer-col-locations {
    width: min(100%, 260px);
    max-width: 280px;
}

.footer-grid-4 > div:last-child,
.footer-grid-5 > div:last-child {
    width: min(100%, 240px);
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-brand a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 0;
    padding: 0.55rem 0.75rem;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    max-width: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.footer-brand a:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
}

.footer-brand-logo {
    display: block;
    width: 188px;
    height: auto;
    max-width: min(188px, 100%);
    max-height: 96px;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    filter: none;
}

.footer-text {
    color: #a8a29a;
    font-size: 0.84rem;
    max-width: 280px;
    line-height: 1.55;
}

.footer-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a847a;
    margin-bottom: 0.12rem;
    font-weight: 700;
}

.footer-phone-line {
    display: block;
    line-height: 1.45;
}

.footer-phone-line + .footer-phone-line {
    margin-top: 0.15rem;
}

.footer-col-locations .footer-location-name {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.footer-col-locations .footer-location-address {
    display: block;
    color: #a8a29a;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.55;
}

.footer-col-locations .footer-links li {
    margin-bottom: 1rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
}

.pay-logo {
    height: 32px;
    width: auto;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #fff;
    object-fit: contain;
}

.footer-title {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-inline: 0;
    text-align: start;
}

.footer-links li {
    margin-bottom: 0.5rem;
    padding: 0;
    margin-inline: 0;
}

.footer-links a,
.footer-links li {
    color: #a8a29a;
    font-size: 0.9rem;
}

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

.footer-bottom {
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem 1.25rem;
    flex-wrap: wrap;
    color: #8a847a;
    font-size: 0.84rem;
}

.footer-bottom-line {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.5;
}

.footer-bottom-sep {
    margin-inline: 0.35rem;
    opacity: 0.7;
}

.footer-bottom-links {
    flex-shrink: 0;
}

.footer-bottom a {
    color: #a8a29a;
}

.footer-bottom a:hover {
    color: var(--gold);
}

.footer-bottom-line a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom-line a:hover {
    color: var(--gold);
}

.site-footer .social-links a {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: #d5cfc4;
}

.site-footer .social-links a:hover {
    background: rgba(201, 162, 39, 0.25);
    border-color: rgba(201, 162, 39, 0.55);
    color: var(--gold);
}

.site-footer .social-link-whatsapp:hover {
    background: rgba(37, 211, 102, 0.18);
    border-color: rgba(37, 211, 102, 0.45);
    color: #6dff9c;
}

/* Primary actions: gold fills with black type (logo palette) */
.lang-switch a.active,
.vehicle-search-btn,
.hero-stage-btn-primary,
.s-card-more,
.v-card-btn,
.cta-btn-primary,
.btn-primary,
.contact-submit,
.page-pagination .page-link.active {
    color: #0b0b0b !important;
}

.vehicle-search-btn:hover,
.hero-stage-btn-primary:hover {
    color: #0b0b0b !important;
}

/* Fleet detail page */
.vd-page {
    background: #fff;
}

.vd-hero {
    padding: calc(var(--header-height) + 1.25rem) 0 0;
    background: #ffffff;
}

.vd-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.55rem;
    font-size: 0.88rem;
    color: var(--ink-muted);
    padding-bottom: 1.25rem;
}

.vd-breadcrumb a {
    color: var(--ink-soft);
    font-weight: 600;
}

.vd-breadcrumb a:hover {
    color: var(--brand);
}

.vd-breadcrumb span:last-child {
    color: var(--ink);
    font-weight: 600;
}

.vd-main {
    padding-top: 0.5rem;
    padding-bottom: 4rem;
}

.vd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.85fr);
    gap: 2rem 2.5rem;
    align-items: start;
}

.vd-gallery {
    min-width: 0;
}

.vd-stage {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #ffffff;
    aspect-ratio: 16 / 11;
    box-shadow: var(--shadow-sm);
}

.vd-stage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.25s ease;
}

.vd-stage-label {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0.45rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink-soft);
    border-top-right-radius: 10px;
}

.vd-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.vd-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 11;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    cursor: pointer;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.vd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vd-thumb:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.vd-thumb.is-active {
    border-color: var(--brand);
    box-shadow: 0 0 0 1px var(--brand);
}

.vd-info {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.5rem 1.4rem 1.45rem;
    box-shadow: var(--shadow);
}

.vd-category {
    display: inline-block;
    margin-bottom: 0.7rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vd-title {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.8vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 0.55rem;
}

.vd-capacity {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
    color: var(--ink-muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.vd-capacity svg {
    flex-shrink: 0;
    color: var(--brand);
}

.vd-desc {
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 1.35rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line);
}

.vd-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.vd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 46px;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.vd-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.vd-btn svg {
    flex-shrink: 0;
}

.vd-btn-call {
    border-color: rgba(201, 162, 39, 0.25);
    background: var(--brand-soft);
    color: var(--brand);
}

.vd-btn-call:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.vd-btn-wa {
    border-color: rgba(37, 211, 102, 0.35);
    background: rgba(37, 211, 102, 0.1);
    color: #128c47;
}

.vd-btn-wa:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.vd-btn-email {
    border-color: var(--line);
    color: var(--ink-soft);
}

.vd-btn-email:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-soft);
}

.vd-btn-primary {
    grid-column: 1 / -1;
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    box-shadow: 0 10px 24px rgba(201, 162, 39, 0.22);
}

.vd-btn-primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
    box-shadow: 0 12px 28px rgba(201, 162, 39, 0.28);
}

.vd-call-dropdown {
    width: 100%;
}

.vd-call-dropdown .vd-btn {
    width: 100%;
}

.vd-call-dropdown .call-dropdown-menu {
    width: 100%;
    min-width: 0;
}

.vd-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    color: var(--ink-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.vd-back:hover {
    color: var(--brand);
}

/* Legacy fleet detail helpers (kept for any residual use) */
.fleet-cta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.75rem;
    align-items: flex-start;
}

.call-dropdown {
    position: relative;
}

.call-dropdown-toggle {
    min-width: 10rem;
}

.call-caret {
    font-size: 0.75rem;
    opacity: 0.8;
}

.call-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.7rem;
    z-index: 40;
    box-shadow: var(--shadow);
}

.call-dropdown-label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.call-dropdown-menu a {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.6rem 0.65rem;
    border: 1px solid transparent;
    border-radius: 10px;
    margin-bottom: 0.25rem;
    color: var(--ink-soft);
}

.call-dropdown-menu a:last-child {
    margin-bottom: 0;
}

.call-dropdown-menu a:hover {
    border-color: var(--line);
    background: var(--bg-soft);
    color: var(--ink);
}

.call-dropdown-menu a strong {
    font-size: 0.74rem;
    color: var(--brand);
}

.call-dropdown-menu a span {
    font-size: 0.92rem;
}

.fleet-detail-section {
    padding-top: 1.5rem;
}

.fleet-detail-desc {
    max-width: 720px;
    margin-bottom: 1.5rem;
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.8;
}

.fleet-detail-back {
    margin-top: 1.75rem;
}

.fleet-gallery-divider {
    height: 1px;
    background: var(--line);
    margin: 1.75rem 0 1.35rem;
}

.fleet-gallery-block .section-eyebrow {
    margin-bottom: 1rem;
}

.text-link {
    color: var(--ink-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.text-link:hover {
    color: var(--brand);
}

/* Legal pages — Privacy & Terms */
.legal-page {
    background: #ffffff;
}

.legal-hero .legal-hero-copy {
    max-width: none !important;
    width: 100%;
}

.legal-hero-text {
    margin-bottom: 0;
    font-size: 0.92rem;
}

.legal-main {
    padding-top: 2rem;
    padding-bottom: 4.5rem;
}

.legal-panel {
    max-width: none;
    width: 100%;
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: clamp(1.75rem, 3.5vw, 2.75rem);
    box-shadow: var(--shadow-sm);
}

.legal-prose {
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.9;
    letter-spacing: 0.01em;
}

.legal-prose br {
    display: block;
    content: "";
    margin-top: 0.55rem;
}

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.legal-btn,
.legal-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.legal-btn-outline {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--line-strong);
}

.legal-btn-outline:hover {
    border-color: var(--brand);
    color: var(--brand-dark);
    background: var(--brand-soft);
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .legal-actions {
        justify-content: stretch;
    }

    .legal-actions .legal-btn,
    .legal-actions .legal-btn-outline {
        flex: 1 1 auto;
        min-width: 0;
    }
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 1100;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35);
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.07);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* Motion */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.empty-state {
    text-align: center;
    padding: 2.25rem 1.5rem;
    border: 1.5px dashed var(--line-strong);
    border-radius: var(--radius);
    color: var(--ink-muted);
    background: var(--bg-soft);
}

/* Responsive */
@media (min-width: 992px) and (max-width: 1200px) {
    .nav-link {
        font-size: 0.84rem;
        padding: 0.45rem 0.55rem;
    }

    .nav-menu {
        gap: 0.05rem 0.1rem;
    }

    .brand {
        max-width: min(168px, 42vw);
        padding: 0;
    }

    .brand-logo {
        width: auto;
        height: 58px;
        max-height: 58px;
        max-width: min(140px, 100%);
        direction: ltr;
    }

    .header-quote-btn {
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 1100px) {
    .header-quote-btn {
        display: none;
    }

    .footer-grid > div:first-child {
        flex: 1 1 100%;
        max-width: none;
    }

    .footer-grid-4 > div:not(:first-child),
    .footer-grid-5 > div:not(:first-child) {
        width: min(100%, 220px);
    }

    .footer-grid-5 > .footer-col-locations {
        width: min(100%, 280px);
    }

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

@media (max-width: 991.98px) {
    .hero-marketplace {
        min-height: auto;
        padding-top: calc(var(--header-height) + 1.6rem);
        padding-bottom: 2.25rem;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .hero-copy {
        max-width: none;
        order: 1;
        text-align: start;
    }

    .hero-stage {
        order: 2;
    }

    .hero-stage-media {
        max-height: none;
        min-height: 300px;
        height: min(48vh, 440px);
        aspect-ratio: 16 / 11;
        border-radius: 18px;
    }

    .hero-stage-media-static {
        max-height: none;
        min-height: 300px;
        height: min(48vh, 440px);
    }

    .hero-stage-floats {
        inset-inline-end: 0.65rem;
        inset-inline-start: auto;
        width: min(11.5rem, calc(100% - 1.3rem));
        gap: 0.45rem;
    }

    .hero-stage-float {
        padding: 0.45rem 0.55rem;
    }

    .hero-stage-float strong {
        font-size: 0.74rem;
    }

    .hero-stage-float small {
        font-size: 0.66rem;
    }

    .hero-stage-peek {
        width: min(32%, 130px);
        right: 0.9rem;
        bottom: 0.9rem;
    }

    .hero-stage-actions {
        justify-content: flex-start;
    }

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

    .home-services-head,
    .featured-fleet-head {
        align-items: flex-start;
    }

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

    .about-grid,
    .contact-grid,
    .contact-channels,
    .contact-locations-grid,
    .features-strip {
        grid-template-columns: 1fr 1fr;
    }

    .contact-layout,
    .about-layout {
        grid-template-columns: 1fr;
    }

    .contact-side,
    .about-media {
        position: static;
    }

    .about-media {
        width: 100%;
        height: 360px;
    }

    .about-actions {
        justify-content: stretch;
    }

    .about-actions .about-btn,
    .about-actions .about-btn-outline {
        flex: 1 1 auto;
    }

    .vd-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vd-info {
        position: static;
    }

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

    .cta-booking-card {
        grid-template-columns: 1fr;
    }

    .cta-booking-side {
        border-inline-end: 0;
        border-bottom: 1px solid var(--line);
    }

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

    .cta-head {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .home-services-head,
    .featured-fleet-head,
    .cta-head {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .home-services-all,
    .featured-fleet-all,
    .cta-contact-btn {
        align-self: flex-start;
    }

    .featured-fleet-grid {
        grid-template-columns: 1fr;
    }

    .contact-locations-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

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

    .page-hero-cta {
        align-self: flex-start;
    }

    .contact-form-panel {
        padding: 1.25rem 1.1rem 1.4rem;
    }

    .contact-side {
        padding: 1.25rem 1.1rem;
    }

    .cta-contact-grid {
        grid-template-columns: 1fr;
    }

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

    .v-action {
        font-size: 0.58rem;
        min-height: 42px;
    }

    .v-action svg {
        width: 14px;
        height: 14px;
    }

    .hero-marketplace {
        padding-top: calc(var(--header-height) + 1.25rem);
        padding-bottom: 1.75rem;
    }

    .hero-h1 {
        font-size: clamp(2.05rem, 9vw, 2.55rem);
    }

    .hero-copy .vehicle-search-box {
        min-height: 54px;
        border-radius: 16px;
        padding-left: 0.85rem;
    }

    .hero-copy .vehicle-search-btn {
        min-width: auto;
        padding-inline: 1rem;
        border-radius: 12px;
        font-size: 0.88rem;
    }

    .hero-stage-media {
        min-height: 240px;
        height: 260px;
        max-height: 280px;
        border-radius: 16px;
    }

    .hero-stage-frame {
        border-radius: 16px;
        padding: 0;
    }

    .hero-stage-nav {
        width: 36px;
        height: 36px;
        font-size: 1.35rem;
    }

    .hero-stage-floats {
        inset-inline-end: 0.5rem;
        inset-inline-start: auto;
        gap: 0.35rem;
        width: min(10.5rem, calc(100% - 1rem));
    }

    .hero-stage-float {
        padding: 0.4rem 0.5rem;
    }

    .hero-stage-float-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .hero-stage-actions {
        gap: 0.5rem;
    }

    .hero-stage-btn {
        flex: 1 1 auto;
        min-width: 7.5rem;
        min-height: 44px;
        font-size: 0.84rem;
        padding-inline: 0.9rem;
    }

    .hero-stage-more {
        width: 100%;
        margin-inline-start: 0;
        justify-content: center;
    }

    .hero-trust {
        gap: 0.45rem 0.85rem;
    }

    .contact-channels,
    .contact-form-grid,
    .about-grid,
    .features-strip,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid > div:first-child,
    .footer-grid-4 > div:not(:first-child),
    .footer-grid-4 > div:last-child,
    .footer-grid-5 > div:not(:first-child),
    .footer-grid-5 > div:last-child,
    .footer-grid-5 > .footer-col-locations {
        flex: 1 1 100%;
        width: 100%;
        max-width: none;
    }

    .contact-board-body {
        padding: 1.15rem;
    }

    .contact-board-head {
        padding: 1.15rem;
    }
}

@media (max-width: 380px) {
    .hero-stage-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stage-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 78px;
    }

    .nav-toggle {
        display: flex;
    }

    .brand {
        max-width: min(148px, 48vw);
        padding: 0;
        border-radius: 0;
    }

    .brand-logo {
        width: auto;
        height: 52px;
        max-height: 52px;
        max-width: min(128px, 100%);
        direction: ltr;
    }

    .lang-switch-desktop {
        display: none !important;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
        margin: 0;
        padding: 0.85rem 1.15rem 1.35rem;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease;
        max-height: calc(100svh - var(--header-height));
        overflow-y: auto;
        z-index: 5;
    }

    .nav-menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        padding: 0.9rem 0.65rem;
        font-size: 0.98rem;
        border-radius: 10px;
        border-bottom: none;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        color: var(--brand);
        background: var(--brand-soft);
    }

    .nav-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 0.65rem;
        padding-top: 0.85rem;
        border-top: 1px solid var(--line);
    }

    .nav-mobile-actions .lang-switch {
        width: 100%;
    }

    .nav-mobile-actions .lang-switch a {
        flex: 1;
        height: 38px;
    }

    .nav-mobile-cta {
        display: inline-flex;
    }

    .vehicle-search-box {
        min-height: 52px;
        padding-left: 0.8rem;
    }

    .vehicle-search-btn {
        padding: 0.65rem 0.95rem;
        font-size: 0.85rem;
    }

    .cards-grid,
    .cards-grid-2,
    .services-grid,
    .vehicle-images,
    .vehicle-gallery {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-bottom: 2.5rem;
    }

    .fleet-cta-bar .btn,
    .fleet-cta-bar .call-dropdown {
        width: 100%;
    }

    .fleet-cta-bar .call-dropdown-toggle {
        width: 100%;
    }

    .vd-actions {
        grid-template-columns: 1fr;
    }

    .vd-btn-primary {
        grid-column: auto;
    }

    .vd-stage {
        aspect-ratio: 4 / 3;
        border-radius: 16px;
    }

    .vd-info {
        padding: 1.25rem 1.1rem 1.3rem;
    }

    .call-dropdown-menu {
        left: 0;
        right: 0;
        min-width: 0;
        width: 100%;
    }

    .section {
        padding: 3.25rem 0;
    }

    .contact-form-wrap,
    .contact-info-card {
        padding: 1.15rem;
    }
}
/* RTL */
body.is-rtl {
    font-family: "Cairo", var(--font-body), sans-serif;
}

body.is-rtl .header-bar {
    flex-direction: row;
}

body.is-rtl .brand {
    justify-content: center;
    align-items: center;
    margin: 0;
    order: 0;
}

body.is-rtl .brand-logo {
    display: block;
    width: auto;
    height: 64px;
    max-width: min(160px, 100%);
    max-height: 64px;
    object-fit: contain;
    object-position: center center;
    margin-inline: auto;
    transform: none !important;
    direction: ltr;
    unicode-bidi: isolate;
}

body.is-rtl .header-right {
    margin-inline-start: auto;
    margin-inline-end: 0;
    justify-content: flex-start;
}

body.is-rtl .nav-menu {
    margin-inline: 0.25rem auto 0 0;
}

body.is-rtl .brand-text strong,
body.is-rtl .hero-brand,
body.is-rtl .section-title,
body.is-rtl .vehicle-name,
body.is-rtl .card-title,
body.is-rtl .s-card-title,
body.is-rtl .service-card-title {
    font-family: "Cairo", var(--font-display), sans-serif;
    letter-spacing: 0;
}

body.is-rtl .footer-brand a {
    justify-content: center;
}

body.is-rtl .footer-brand-logo {
    object-position: center center;
    margin-inline: 0;
    direction: ltr;
    transform: none !important;
}

body.is-rtl .hero-quick-item:hover {
    transform: translateX(-3px);
}

body.is-rtl .whatsapp-float {
    right: auto;
    left: 1.2rem;
}

body.is-rtl .call-dropdown-menu {
    left: auto;
    right: 0;
}

body.is-rtl .card-badge {
    left: auto;
    right: 0.75rem;
}
