/* ── Fleet Single Vehicle Page ────────────────────────────────────────────────
   Loaded only on singular fleet_vehicle posts via is_singular() conditional.
   ─────────────────────────────────────────────────────────────────────────── */

/* ── Local design token (--bg-light not in main.css) ──────────────────────── */
:root {
    --fv-bg: #f6f5f3;       /* warm off-white for alternating sections */
    --fv-border: rgba(0,0,0,0.07);
}

/* ── Shared utilities ─────────────────────────────────────────────────────── */
.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 14px;
}
.pill-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.section-sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════════ */
.fv-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
    background-image: var(--fv-hero-img);
    background-size: cover;
    background-position: center 35%;
    background-color: var(--navy-dark);
}
.fv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,22,35,0.2) 0%,
        rgba(10,22,35,0.45) 45%,
        rgba(10,22,35,0.9) 100%
    );
    z-index: 0;
}
.fv-hero-inner {
    position: relative;
    z-index: 1;
    padding-top: 88px;
    padding-bottom: 52px;
    width: 100%;
}
.fv-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 12px;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.fv-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.fv-breadcrumb a:hover { color: var(--gold); }
.fv-breadcrumb span[aria-hidden] { color: rgba(255,255,255,0.25); }
.fv-hero-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.fv-badge-class {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212,175,55,0.14);
    border: 1px solid rgba(212,175,55,0.38);
    border-radius: 100px;
    padding: 5px 13px;
}
.fv-badge-popular {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(212,175,55,0.88);
    border-radius: 100px;
    padding: 5px 13px;
}
.fv-hero-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 56px);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
}
.fv-hero-sub {
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
    margin: 0 0 26px;
}
.fv-hero-ctas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ── Button base ────────────────────────────────────────────────────────────── */
.fv-cta-gold,
.fv-cta-outline,
.fv-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 13px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    min-height: 46px;
    white-space: nowrap;
}
.fv-cta-gold {
    background: var(--gold);
    color: var(--navy-dark);
}
.fv-cta-gold:hover {
    background: #e8c84a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}
.fv-cta-gold:active { transform: translateY(0); }
.fv-cta-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}
.fv-cta-outline:hover {
    border-color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.07);
}
.fv-cta-whatsapp {
    background: #25D366;
    color: #fff;
}
.fv-cta-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
}
.fv-cta-whatsapp:active { transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════════════════
   SPECS BAR
   ════════════════════════════════════════════════════════════════════════ */
.fv-specs-bar {
    background: var(--navy-dark);
    border-top: 1px solid rgba(212,175,55,0.12);
    border-bottom: 1px solid rgba(212,175,55,0.12);
    padding: 0;
}
.fv-specs-row {
    display: flex;
    align-items: stretch;
}
.fv-spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    flex: 1;
    color: rgba(255,255,255,0.65);
    border-right: 1px solid rgba(255,255,255,0.07);
}
.fv-spec-item:last-child { border-right: none; }
.fv-spec-item svg { flex-shrink: 0; opacity: 0.55; }
.fv-spec-val {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
}
.fv-spec-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-top: 2px;
}
.fv-spec-rate .fv-spec-val { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════════════════ */
.fv-about {
    padding: 80px 0;
    background: var(--fv-bg);
}
.fv-about-grid {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 60px;
    align-items: start;
}
.fv-about-text .section-heading { margin-top: 0; }
.fv-about-content {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
}
.fv-about-content p { margin: 0 0 16px; }
.fv-about-content p:last-child { margin-bottom: 0; }
.fv-features-title {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 16px;
}
.fv-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--fv-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.fv-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
    padding: 13px 16px;
    border-bottom: 1px solid var(--fv-border);
}
.fv-feature-list li:last-child { border-bottom: none; }
.fv-feature-list li svg { flex-shrink: 0; }
.fv-suitable-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 10px;
}
.fv-suitable-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.fv-suitable-pill {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    background: rgba(26,58,82,0.07);
    border: 1px solid rgba(26,58,82,0.13);
    border-radius: 100px;
    padding: 6px 13px;
}

/* ══════════════════════════════════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════════════════════════════════ */
.fv-gallery {
    padding: 80px 0;
    background: #fff;
}
.fv-gallery-header {
    text-align: center;
    margin-bottom: 36px;
}
.fv-gallery-note {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--text-muted);
    margin: 6px 0 0;
    font-style: italic;
}
/* Desktop: wide hero image top, 3 equal images below */
.fv-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.fv-gallery-1 {
    grid-column: 1 / -1;  /* full width */
    aspect-ratio: 21/8;
}
.fv-gallery-2,
.fv-gallery-3,
.fv-gallery-4 {
    aspect-ratio: 4/3;
}
.fv-gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--navy-dark);
}
.fv-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.fv-gallery-item:hover img { transform: scale(1.04); }
.fv-gallery-placeholder {
    width: 100%;
    height: 100%;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.2);
}
.fv-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    background: linear-gradient(to top, rgba(10,22,35,0.72) 0%, transparent 100%);
}

/* ══════════════════════════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════════════════════════ */
.fv-pricing {
    padding: 80px 0;
    background: var(--fv-bg);
}
.fv-pricing-header {
    text-align: center;
    margin-bottom: 44px;
}
.fv-pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 720px;
    margin: 0 auto 24px;
}
.fv-price-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.fv-price-card--featured {
    background: var(--navy-dark);
    border-color: rgba(212,175,55,0.25);
    box-shadow: 0 4px 24px rgba(10,22,35,0.18);
}
.fv-price-card-top { display: flex; flex-direction: column; gap: 4px; }
.fv-price-type {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}
.fv-price-card--featured .fv-price-type { color: #fff; }
.fv-price-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}
.fv-price-card--featured .fv-price-desc { color: rgba(255,255,255,0.5); }
.fv-price-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.fv-price-from {
    font-family: var(--font-ui);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
.fv-price-card--featured .fv-price-from { color: rgba(255,255,255,0.45); }
.fv-price-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1;
}
.fv-price-card--featured .fv-price-num { color: var(--gold); }
.fv-price-num small {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
}
.fv-price-card--featured .fv-price-num small { color: rgba(212,175,55,0.65); }
.fv-price-incl {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}
.fv-price-incl li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-body);
}
.fv-price-card--featured .fv-price-incl li { color: rgba(255,255,255,0.65); }
.fv-price-btn {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: 6px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    min-height: 46px;
    background: rgba(26,58,82,0.07);
    color: var(--navy-dark);
    border: 1px solid rgba(26,58,82,0.14);
    transition: background 0.18s, transform 0.18s;
}
.fv-price-btn:hover {
    background: rgba(26,58,82,0.13);
    transform: translateY(-1px);
}
.fv-price-btn:active { transform: translateY(0); }
.fv-price-card--featured .fv-price-btn {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: transparent;
}
.fv-price-card--featured .fv-price-btn:hover {
    background: #e8c84a;
    box-shadow: 0 6px 20px rgba(212,175,55,0.3);
}
.fv-pricing-note {
    text-align: center;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}
.fv-pricing-note a {
    color: var(--gold);
    text-decoration: none;
}
.fv-pricing-note a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════════════════
   AMENITIES STRIP
   fleet.css is not loaded on single vehicle pages, so we define here.
   ════════════════════════════════════════════════════════════════════════ */
.fleet-amenities-strip {
    background: var(--navy-dark);
    padding: 40px 0;
    border-top: 1px solid rgba(212,175,55,0.15);
    border-bottom: 1px solid rgba(212,175,55,0.15);
}
.fas-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    text-align: center;
    margin-bottom: 24px;
}
.fas-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.fas-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    padding: 10px 28px;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.fas-item:last-child { border-right: none; }
.fas-item svg { color: var(--gold); flex-shrink: 0; opacity: 0.9; }

/* ══════════════════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════════════════ */
.fv-faq {
    padding: 80px 0;
    background: var(--fv-bg);
}
.fv-faq-header { margin-bottom: 32px; }
.faq-list {
    max-width: 720px;
    border: 1px solid var(--fv-border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.faq-item {
    border-bottom: 1px solid var(--fv-border);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    transition: background 0.14s;
    min-height: 56px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { background: rgba(26,58,82,0.03); }
.faq-chevron {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(26,58,82,0.07);
    flex-shrink: 0;
    position: relative;
    transition: background 0.2s;
}
.faq-chevron::before,
.faq-chevron::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--navy);
    border-radius: 2px;
    transform: translate(-50%, -50%);
}
.faq-chevron::before { width: 8px; height: 1.5px; }
.faq-chevron::after  { width: 1.5px; height: 8px; transition: transform 0.2s; }
details[open] .faq-chevron::after { transform: translate(-50%, -50%) scaleY(0); }
details[open] .faq-chevron { background: rgba(212,175,55,0.18); }
details[open] .faq-q { color: var(--navy); }
.faq-a {
    padding: 2px 20px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-body);
}
.faq-a p { margin: 0; }

/* ══════════════════════════════════════════════════════════════════════════
   OTHER VEHICLES
   ════════════════════════════════════════════════════════════════════════ */
.fv-other-vehicles {
    padding: 80px 0;
    background: #fff;
}
.fv-other-header { margin-bottom: 32px; }
.fv-other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.fv-other-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--fv-border);
    text-decoration: none;
    background: #fff;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.fv-other-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26,58,82,0.1);
}
.fv-other-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--navy-dark);
}
.fv-other-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.fv-other-card:hover .fv-other-img img { transform: scale(1.05); }
.fv-other-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.15);
}
.fv-other-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(10,22,35,0.8);
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: 100px;
    padding: 4px 10px;
}
.fv-other-info {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.fv-other-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}
.fv-other-specs {
    display: flex;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--text-muted);
}
.fv-other-link {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.03em;
    margin-top: auto;
    padding-top: 8px;
}
.fv-other-more { text-align: center; }
.fv-other-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    border: 1px solid rgba(26,58,82,0.18);
    border-radius: 6px;
    padding: 11px 24px;
    transition: background 0.18s, border-color 0.18s;
}
.fv-other-all:hover {
    background: rgba(26,58,82,0.05);
    border-color: rgba(26,58,82,0.32);
}
.fv-other-empty { text-align: center; }

/* ══════════════════════════════════════════════════════════════════════════
   BOTTOM CTA
   ════════════════════════════════════════════════════════════════════════ */
.fv-bottom-cta {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 72px 0;
}
.fv-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.fv-cta-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.8vw, 30px);
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}
.fv-cta-sub {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    margin: 0;
}
.fv-cta-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (1024px)
   ════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .fv-about-grid        { grid-template-columns: 1fr; gap: 40px; }
    .fv-other-grid        { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .fv-pricing-cards     { grid-template-columns: 1fr; max-width: 480px; }

    /* Gallery: top wide + 2 below on tablet */
    .fv-gallery-1         { aspect-ratio: 16/6; }
    .fv-gallery-grid      { grid-template-columns: repeat(2, 1fr); }
    .fv-gallery-1         { grid-column: 1 / -1; aspect-ratio: 16/6; }
    .fv-gallery-2,
    .fv-gallery-3         { aspect-ratio: 4/3; }
    .fv-gallery-4         { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (768px)
   ════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Hero */
    .fv-hero {
        min-height: min(88svh, 520px);
        background-position: center 25%;
    }
    .fv-hero-inner        { padding-top: 72px; padding-bottom: 32px; }
    .fv-hero-title        { font-size: clamp(26px, 7.5vw, 40px); margin-bottom: 8px; }
    .fv-hero-sub          { font-size: 12px; margin-bottom: 20px; }
    .fv-breadcrumb        { margin-bottom: 14px; font-size: 11px; }
    .fv-hero-ctas         { flex-direction: column; gap: 8px; }
    .fv-cta-gold,
    .fv-cta-outline       { width: 100%; }

    /* Specs bar: 2-column grid */
    .fv-specs-bar         { padding: 0; }
    .fv-specs-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .fv-spec-item {
        padding: 14px 16px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    /* right column items get a left border */
    .fv-spec-item:nth-child(even) {
        border-left: 1px solid rgba(255,255,255,0.06);
    }
    /* 5th item (rate) spans full width */
    .fv-spec-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-content: center;
        border-bottom: none;
        border-top: 1px solid rgba(255,255,255,0.06);
        padding: 14px 16px;
    }
    /* last pair — no bottom border */
    .fv-spec-item:nth-last-child(-n+2):nth-child(odd),
    .fv-spec-item:nth-last-child(1):nth-child(even) {
        border-bottom: none;
    }

    /* Section padding */
    .fv-about,
    .fv-gallery,
    .fv-pricing,
    .fv-faq,
    .fv-other-vehicles    { padding: 52px 0; }
    .fv-bottom-cta        { padding: 52px 0; }

    /* About */
    .fv-about-grid        { grid-template-columns: 1fr; gap: 32px; }

    /* Gallery: top wide + 2 equal below */
    .fv-gallery-grid      { grid-template-columns: 1fr 1fr; gap: 6px; }
    .fv-gallery-1         { grid-column: 1 / -1; aspect-ratio: 16/7; }
    .fv-gallery-2         { aspect-ratio: 1; }
    .fv-gallery-3         { aspect-ratio: 1; }
    .fv-gallery-4         { display: none; }

    /* Pricing */
    .fv-pricing-cards     { grid-template-columns: 1fr; max-width: 100%; gap: 16px; }
    .fv-price-card        { padding: 24px 20px; }
    .fv-price-num         { font-size: 36px; }

    /* Other vehicles */
    .fv-other-grid        { grid-template-columns: 1fr 1fr; gap: 12px; }

    /* Amenities strip: 2-column grid on mobile */
    .fleet-amenities-strip { padding: 28px 0; }
    .fas-label             { margin-bottom: 16px; }
    .fas-items             { display: grid; grid-template-columns: 1fr 1fr; gap: 0; justify-items: start; }
    .fas-item {
        width: 100%;
        padding: 11px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        font-size: 12px;
    }
    /* even items get a left border to form the column divider */
    .fas-item:nth-child(even)     { border-left: 1px solid rgba(255,255,255,0.07); }
    /* last two items — no bottom border */
    .fas-item:nth-last-child(-n+2) { border-bottom: none; }

    /* Bottom CTA */
    .fv-cta-inner         { flex-direction: column; align-items: stretch; gap: 20px; }
    .fv-cta-btns          { flex-direction: column; gap: 8px; }
    .fv-cta-btns .fv-cta-gold,
    .fv-cta-btns .fv-cta-outline,
    .fv-cta-btns .fv-cta-whatsapp { width: 100%; }
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Small Mobile (480px)
   ════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .fv-hero              { min-height: min(92svh, 480px); }
    .fv-hero-inner        { padding-top: 68px; padding-bottom: 28px; }
    .fv-hero-title        { font-size: clamp(22px, 8.5vw, 34px); }
    .fv-hero-sub          { display: none; }

    /* Specs: still 2-col but tighter */
    .fv-spec-item         { padding: 12px 12px; }
    .fv-spec-val          { font-size: 13px; }

    /* Gallery: single wide image only */
    .fv-gallery-grid      { grid-template-columns: 1fr; gap: 6px; }
    .fv-gallery-1         { grid-column: 1; aspect-ratio: 4/3; }
    .fv-gallery-2,
    .fv-gallery-3,
    .fv-gallery-4         { display: none; }

    /* Other vehicles: single column */
    .fv-other-grid        { grid-template-columns: 1fr; }

    /* Section headings */
    .section-heading      { font-size: clamp(22px, 7vw, 28px); }

    /* Pricing note wraps better */
    .fv-pricing-note      { font-size: 12px; }

    /* Amenities: tighter padding at small breakpoint */
    .fas-item              { padding: 10px 14px; font-size: 11px; gap: 7px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .fv-cta-gold,
    .fv-cta-outline,
    .fv-cta-whatsapp,
    .fv-price-btn,
    .fv-other-card,
    .fv-gallery-item img,
    .fv-other-img img     { transition: none; }
    .fv-cta-gold:hover,
    .fv-cta-whatsapp:hover,
    .fv-other-card:hover  { transform: none; box-shadow: none; }
}
