/* ============================================================
   NATIONWIDE CHARTER BUSES — DESIGN SYSTEM
   ============================================================
   Design Tokens → Base → Typography → Layout → Components → Pages → Animations → Responsive
   
   RULES:
   - ALL spacing uses --space-* tokens (8pt grid). No arbitrary px values.
   - ALL radii use --radius-* tokens. No one-off border-radius values.
   - ALL colors use CSS custom properties. No hardcoded hex/rgb in component styles.
   - ALL transitions use --transition-* tokens.
   - Mobile-first: base styles are mobile, media queries add desktop enhancements.
   ============================================================ */


/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */

:root {
    /* ── Color Palette: "Midnight Authority" (Recommended) ─── */
    --color-primary:         #0B1D3A;     /* Deep navy — headers, nav, hero backgrounds */
    --color-primary-light:   #162D54;     /* Hover states, card backgrounds */
    --color-primary-dark:    #060F1F;     /* Deepest navy */
    --color-secondary:       #1A2744;     /* Dark sections, footer */
    --color-accent:          #E8A838;     /* CTAs, highlights — warm amber */
    --color-accent-hover:    #D4952E;     /* CTA hover state */
    --color-accent-light:    rgba(232, 168, 56, 0.12);  /* Accent tint backgrounds */
    --color-danger:          #D94F4F;     /* Urgency badges, phone number accents */
    --color-success:         #22C55E;     /* Confirmation states */
    --color-bg:              #F7F5F0;     /* Off-white page background */
    --color-bg-alt:          #EDE9E0;     /* Alternate section backgrounds */
    --color-surface:         #FFFFFF;     /* Cards, panels, modals */
    --color-surface-hover:   #FAFAF7;    /* Card hover */
    --color-text:            #1A1A2E;     /* Primary body text */
    --color-text-secondary:  #4B5563;     /* Secondary/muted text */
    --color-text-light:      #6B7280;     /* Captions, placeholders */
    --color-text-inverse:    #F7F5F0;     /* Text on dark backgrounds */
    --color-border:          #E5E1D8;     /* Borders, dividers */
    --color-border-light:    #F0EDE6;     /* Subtle borders */

    /* ── Spacing Scale (Tighter Corporate Grid) ───────────────────────────── */
    --space-1:   4px;
    --space-2:   8px;
    --space-3:   12px;
    --space-4:   16px;
    --space-5:   20px;
    --space-6:   24px;
    --space-7:   32px;
    --space-8:   48px;
    --space-9:   64px;
    --space-10:  96px;

    /* ── Border Radius Scale ────────────────────────────── */
    --radius-sm:   4px;
    --radius-md:   6px;  /* slightly sharper */
    --radius-lg:   12px; /* slightly sharper */
    --radius-full: 999px;

    /* ── Typography ─────────────────────────────────────── */
    --font-heading: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

    /* Font Sizes (Corporate Application Scale) */
    --text-xs:     0.6875rem;    /* 11px */
    --text-sm:     0.8125rem;    /* 13px */
    --text-base:   0.875rem;     /* 14px */
    --text-md:     0.9375rem;    /* 15px — body text */
    --text-lg:     1rem;         /* 16px */
    --text-xl:     1.125rem;     /* 18px */
    --text-2xl:    1.25rem;      /* 20px */
    --text-3xl:    1.5rem;       /* 24px — H3 mobile */
    --text-4xl:    1.75rem;      /* 28px — H2 mobile / H1 mobile */
    --text-5xl:    2.25rem;      /* 36px — H1 desktop */
    --text-6xl:    2.75rem;      /* 44px — Hero desktop */

    --leading-tight:   1.2;
    --leading-normal:  1.6;
    --leading-relaxed: 1.75;

    --weight-regular:  400;
    --weight-medium:   500;
    --weight-semibold: 600;
    --weight-bold:     700;

    /* ── Shadows ────────────────────────────────────────────── */
    --shadow-sm:    0 1px 3px rgba(11, 29, 58, 0.06), 0 1px 2px rgba(11, 29, 58, 0.04);
    --shadow-md:    0 4px 12px rgba(11, 29, 58, 0.08), 0 2px 4px rgba(11, 29, 58, 0.04);
    --shadow-lg:    0 12px 32px rgba(11, 29, 58, 0.12), 0 4px 8px rgba(11, 29, 58, 0.06);
    --shadow-xl:    0 20px 48px rgba(11, 29, 58, 0.16), 0 8px 16px rgba(11, 29, 58, 0.08);

    /* ── Transitions ────────────────────────────────────────── */
    --transition-fast:    150ms ease;
    --transition-base:    250ms ease;
    --transition-slow:    400ms ease;
    --transition-spring:  500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* ── Layout ─────────────────────────────────────────────── */
    --container-max:     1280px;
    --container-padding: var(--space-5);
    --grid-gap:          var(--space-5);
    --section-padding-y: var(--space-8);

    /* ── Z-Index Scale ──────────────────────────────────────── */
    --z-dropdown:  100;
    --z-sticky:    200;
    --z-mobile-menu: 300;
    --z-modal:     400;
    --z-chat:      500;
    --z-toast:     600;
}


/* ── 2. CSS RESET / BASE ──────────────────────────────────── */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-md);
    font-weight: var(--weight-regular);
    line-height: var(--leading-normal);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-hover);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

table {
    border-collapse: collapse;
    width: 100%;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-4);
    padding: var(--space-3) var(--space-5);
    background: var(--color-accent);
    color: var(--color-primary);
    font-weight: var(--weight-bold);
    border-radius: var(--radius-md);
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-4);
}

/* Selection styling */
::selection {
    background: var(--color-accent-light);
    color: var(--color-primary);
}


/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--weight-bold);
    line-height: var(--leading-tight);
    color: var(--color-primary);
}

h1 { font-size: var(--text-4xl); margin-bottom: var(--space-5); }
h2 { font-size: var(--text-3xl); margin-bottom: var(--space-5); font-weight: var(--weight-semibold); }
h3 { font-size: var(--text-2xl); margin-bottom: var(--space-4); font-weight: var(--weight-semibold); }
h4 { font-size: var(--text-xl);  margin-bottom: var(--space-3); font-weight: var(--weight-semibold); }

p {
    margin-bottom: var(--space-4);
    line-height: var(--leading-normal);
}

p:last-child {
    margin-bottom: 0;
}

.text-accent  { color: var(--color-accent); }
.text-muted   { color: var(--color-text-secondary); }
.text-light   { color: var(--color-text-light); }
.text-inverse { color: var(--color-text-inverse); }
.text-center  { text-align: center; }

.section-label {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-3);
}

.section-heading {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-3);
}

.section-subtext {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 680px;
}

.section-subtext--center {
    margin-left: auto;
    margin-right: auto;
}


/* ── 4. LAYOUT ────────────────────────────────────────────── */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

.section--dark {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--color-text-inverse);
}

.section--alt {
    background-color: var(--color-bg-alt);
}

.section--surface {
    background-color: var(--color-surface);
}

.grid {
    display: grid;
    gap: var(--grid-gap);
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }


/* ── 5. BUTTONS ───────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-weight: var(--weight-semibold);
    font-size: var(--text-base);
    line-height: 1;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

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

.btn:active {
    transform: translateY(0);
}

/* Primary / Accent CTA */
.btn--accent {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}

.btn--accent:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: var(--color-primary);
}

/* Outline */
.btn--outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--outline:hover {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
}

/* Outline on dark backgrounds */
.btn--outline-light {
    background-color: transparent;
    color: var(--color-text-inverse);
    border-color: rgba(247, 245, 240, 0.4);
}

.btn--outline-light:hover {
    background-color: rgba(247, 245, 240, 0.12);
    border-color: var(--color-text-inverse);
    color: var(--color-text-inverse);
}

/* Ghost (text-only) */
.btn--ghost {
    background: transparent;
    color: var(--color-accent);
    padding-left: 0;
    padding-right: 0;
}

.btn--ghost:hover {
    color: var(--color-accent-hover);
    box-shadow: none;
    transform: none;
}

/* Sizes */
.btn--sm {
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-4);
}

.btn--lg {
    font-size: var(--text-lg);
    padding: var(--space-4) var(--space-6);
}

.btn--block {
    display: flex;
    width: 100%;
}

/* CTA pulse animation */
.btn--pulse {
    animation: cta-pulse 2s infinite;
}

@keyframes cta-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(232, 168, 56, 0.5); }
    70%  { box-shadow: 0 0 0 12px rgba(232, 168, 56, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 168, 56, 0); }
}


/* ── 6. TOP BAR ───────────────────────────────────────────── */

.top-bar {
    background-color: var(--color-primary-dark);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    display: none; /* Hidden on mobile, shown on desktop */
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar__contact {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.top-bar__link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-text-inverse);
    opacity: 0.85;
    transition: opacity var(--transition-fast);
}

.top-bar__link:hover {
    opacity: 1;
    color: var(--color-accent);
}

.top-bar__icon {
    flex-shrink: 0;
}


/* ── 7. SITE HEADER / NAVIGATION ──────────────────────────── */

.site-header {
    background-color: var(--color-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: box-shadow var(--transition-base), background-color var(--transition-base);
}

.site-header--scrolled {
    box-shadow: var(--shadow-md);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.site-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text__nationwide {
    font-family: var(--font-heading);
    font-weight: var(--weight-bold);
    font-size: var(--text-xl);
    color: var(--color-primary);
    letter-spacing: 0.02em;
}

.logo-text__charter {
    font-family: var(--font-heading);
    font-weight: var(--weight-medium);
    font-size: var(--text-sm);
    color: var(--color-accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.logo-text--footer .logo-text__nationwide {
    color: var(--color-text-inverse);
}

/* Desktop Navigation */
.main-nav {
    display: none; /* Hidden on mobile */
}

.main-nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.main-nav__item {
    position: relative;
}

.main-nav__link {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-3) var(--space-3);
    color: var(--color-text);
    font-weight: var(--weight-medium);
    font-size: var(--text-sm);
    white-space: nowrap;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.main-nav__link:hover {
    color: var(--color-accent);
}

.main-nav__chevron {
    transition: transform var(--transition-fast);
}

.main-nav__item--has-dropdown:hover .main-nav__chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 240px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2) 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: var(--z-dropdown);
    border: 1px solid var(--color-border-light);
}

.main-nav__item--has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown__link {
    display: block;
    padding: var(--space-3) var(--space-5);
    color: var(--color-text);
    font-size: var(--text-sm);
    font-weight: var(--weight-regular);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown__link:hover {
    background: var(--color-accent-light);
    color: var(--color-accent-hover);
}

/* Header Actions */
.site-header__actions {
    display: none; /* Hidden on mobile, shown on desktop */
    align-items: center;
    gap: var(--space-3);
}

.site-header__call {
    color: var(--color-primary);
}


/* ── 8. MOBILE MENU ───────────────────────────────────────── */

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: calc(var(--z-mobile-menu) + 1);
}

.mobile-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

/* Hamburger → X animation */
.mobile-toggle--active .mobile-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle--active .mobile-toggle__bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle--active .mobile-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: var(--color-surface);
    z-index: var(--z-mobile-menu);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
    padding-top: 80px;
    box-shadow: var(--shadow-xl);
}

.mobile-menu--open {
    transform: translateX(0);
}

.mobile-menu__list {
    padding: var(--space-4) var(--space-5);
}

.mobile-menu__item {
    border-bottom: 1px solid var(--color-border-light);
}

.mobile-menu__link {
    display: block;
    padding: var(--space-4) 0;
    color: var(--color-text);
    font-weight: var(--weight-medium);
    font-size: var(--text-lg);
}

.mobile-menu__link:hover {
    color: var(--color-accent);
}

.mobile-menu__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-4) 0;
    color: var(--color-text);
    font-weight: var(--weight-medium);
    font-size: var(--text-lg);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu__chevron {
    transition: transform var(--transition-base);
}

.mobile-menu__toggle[aria-expanded="true"] .mobile-menu__chevron {
    transform: rotate(180deg);
}

.mobile-menu__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
    padding-left: var(--space-4);
}

.mobile-menu__toggle[aria-expanded="true"] + .mobile-menu__submenu {
    max-height: 500px;
}

.mobile-menu__subitem .mobile-menu__link {
    font-size: var(--text-base);
    font-weight: var(--weight-regular);
    padding: var(--space-3) 0;
    color: var(--color-text-secondary);
}

.mobile-menu__cta {
    padding: var(--space-5);
    border-top: 1px solid var(--color-border);
}

/* Body scroll lock when mobile menu is open */
body.menu-open {
    overflow: hidden;
}


/* ── 9. MOBILE CTA BAR ───────────────────────────────────── */

.mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: var(--color-primary);
    box-shadow: 0 -4px 16px rgba(11, 29, 58, 0.2);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.mobile-cta-bar--visible {
    transform: translateY(0);
}

.mobile-cta-bar__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4);
    color: var(--color-text-inverse);
    font-weight: var(--weight-semibold);
    font-size: var(--text-base);
    text-decoration: none;
    transition: background var(--transition-fast);
}

.mobile-cta-bar__btn--call {
    background: var(--color-danger);
}

.mobile-cta-bar__btn--call:hover {
    background: #C0392B;
    color: var(--color-text-inverse);
}

.mobile-cta-bar__btn--quote {
    background: var(--color-accent);
    color: var(--color-primary);
}

.mobile-cta-bar__btn--quote:hover {
    background: var(--color-accent-hover);
    color: var(--color-primary);
}


/* ── 10. HERO SECTION ─────────────────────────────────────── */

.hero {
    position: relative;
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    padding: var(--space-9) 0 var(--space-8);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-secondary) 100%);
    z-index: 0;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--space-7);
    align-items: center;
}

.hero__content {
    max-width: 640px;
}

.hero__label {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--color-accent-light);
    color: var(--color-accent);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
    letter-spacing: 0.04em;
}

.hero__title {
    font-size: var(--text-4xl);
    color: var(--color-text-inverse);
    margin-bottom: var(--space-5);
    line-height: var(--leading-tight);
}

.hero__title span {
    color: var(--color-accent);
}

.hero__subtitle {
    font-size: var(--text-lg);
    color: rgba(247, 245, 240, 0.8);
    margin-bottom: var(--space-6);
    line-height: var(--leading-normal);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.hero__visual {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Decorative elements */
.hero__decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.06;
    z-index: 0;
}

.hero__decoration--1 {
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
}

.hero__decoration--2 {
    bottom: -40px;
    left: 10%;
    width: 180px;
    height: 180px;
}


/* ── 11. TRUST BAR ────────────────────────────────────────── */

.trust-bar {
    background: var(--color-surface);
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--color-border-light);
    position: relative;
    z-index: 1;
    margin-top: calc(-1 * var(--space-6));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
    text-align: center;
}

.trust-bar__stat {
    padding: var(--space-3);
}

.trust-bar__value {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.trust-bar__label {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    font-weight: var(--weight-medium);
}


/* ── 12. SERVICE CARDS ────────────────────────────────────── */

.service-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--color-accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    color: var(--color-accent);
}

.service-card__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.service-card__desc {
    color: var(--color-text-secondary);
    font-size: var(--text-base);
    flex: 1;
    margin-bottom: var(--space-5);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: var(--weight-semibold);
    font-size: var(--text-sm);
    color: var(--color-accent);
    transition: gap var(--transition-fast);
}

.service-card__link:hover {
    gap: var(--space-3);
}


/* ── 13. FLEET CARDS / CAROUSEL ───────────────────────────── */

.fleet-scroll {
    display: flex;
    gap: var(--space-5);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-4);
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) var(--color-border-light);
}

.fleet-scroll::-webkit-scrollbar {
    height: 6px;
}

.fleet-scroll::-webkit-scrollbar-track {
    background: var(--color-border-light);
    border-radius: var(--radius-full);
}

.fleet-scroll::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: var(--radius-full);
}

.fleet-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.fleet-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.fleet-card__visual {
    height: 160px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fleet-card__icon {
    color: var(--color-accent);
    opacity: 0.3;
}

.fleet-card__badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
}

.fleet-card__body {
    padding: var(--space-5);
}

.fleet-card__name {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.fleet-card__tagline {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
}

.fleet-card__link {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}


/* ── 14. VALUE PROPOSITION ────────────────────────────────── */

.value-prop__grid {
    display: grid;
    gap: var(--space-7);
}

.value-prop__item {
    display: flex;
    gap: var(--space-5);
    align-items: flex-start;
}

.value-prop__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.value-prop__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.value-prop__text {
    color: var(--color-text-secondary);
    font-size: var(--text-base);
}


/* ── 15. TESTIMONIALS ─────────────────────────────────────── */

.testimonial-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    position: relative;
}

.testimonial-card__stars {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
    color: var(--color-accent);
}

.testimonial-card__text {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--color-text);
    margin-bottom: var(--space-5);
    font-style: italic;
}

.testimonial-card__text::before {
    content: '\201C';
    font-size: var(--text-4xl);
    color: var(--color-accent);
    line-height: 0;
    vertical-align: -0.3em;
    margin-right: var(--space-1);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--weight-bold);
    color: var(--color-accent);
    font-size: var(--text-lg);
}

.testimonial-card__name {
    font-weight: var(--weight-semibold);
    color: var(--color-primary);
    font-size: var(--text-base);
}

.testimonial-card__company {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}


/* ── 16. FAQ ACCORDION ────────────────────────────────────── */

.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-5) 0;
    text-align: left;
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--color-primary);
    cursor: pointer;
    background: none;
    border: none;
    gap: var(--space-4);
    transition: color var(--transition-fast);
}

.faq-item__question:hover {
    color: var(--color-accent);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform var(--transition-base);
}

.faq-item--open .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item--open .faq-item__answer {
    max-height: 500px;
    padding-bottom: var(--space-5);
}

.faq-item__answer p {
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
}


/* ── 17. FORMS ────────────────────────────────────────────── */

.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    font-weight: var(--weight-medium);
    font-size: var(--text-sm);
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-light);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-light);
}

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

.form-error {
    font-size: var(--text-sm);
    color: var(--color-danger);
    margin-top: var(--space-2);
}


/* ── 18. FOOTER ───────────────────────────────────────────── */

.footer-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: var(--space-8) 0;
}

.footer-cta__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    align-items: center;
    text-align: center;
}

.footer-cta__heading {
    font-size: var(--text-3xl);
    color: var(--color-text-inverse);
}

.footer-cta__sub {
    color: rgba(247, 245, 240, 0.75);
    font-size: var(--text-lg);
}

.footer-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
}

.site-footer .footer-main {
    background: var(--color-secondary);
    padding: var(--space-8) 0;
}

.footer-main__grid {
    display: grid;
    gap: var(--space-7);
}

.footer-col__brand {
    margin-bottom: var(--space-5);
}

.footer-col__desc {
    color: rgba(247, 245, 240, 0.65);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-5);
}

.footer-col__heading {
    color: var(--color-text-inverse);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
}

.footer-col__links li {
    margin-bottom: var(--space-3);
}

.footer-col__links a {
    color: rgba(247, 245, 240, 0.65);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer-col__links a:hover {
    color: var(--color-accent);
}

.footer-col__contact li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    color: rgba(247, 245, 240, 0.65);
    font-size: var(--text-sm);
}

.footer-col__contact a {
    color: rgba(247, 245, 240, 0.65);
}

.footer-col__contact a:hover {
    color: var(--color-accent);
}

.footer-col__contact svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

.footer-nap {
    margin-top: var(--space-5);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(247, 245, 240, 0.1);
}

.footer-nap__name {
    color: var(--color-text-inverse);
    font-weight: var(--weight-semibold);
    font-size: var(--text-sm);
    margin-bottom: var(--space-1);
}

.footer-nap__phone {
    color: var(--color-accent);
    font-size: var(--text-sm);
}

.footer-socials {
    display: flex;
    gap: var(--space-3);
}

.footer-socials__link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(247, 245, 240, 0.08);
    color: rgba(247, 245, 240, 0.6);
    transition: all var(--transition-fast);
}

.footer-socials__link:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

.footer-bottom {
    background: var(--color-primary-dark);
    padding: var(--space-5) 0;
}

.footer-bottom__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
    text-align: center;
}

.footer-bottom__copy {
    font-size: var(--text-sm);
    color: rgba(247, 245, 240, 0.4);
}

.footer-bottom__links {
    display: flex;
    gap: var(--space-5);
}

.footer-bottom__links a {
    font-size: var(--text-sm);
    color: rgba(247, 245, 240, 0.5);
}

.footer-bottom__links a:hover {
    color: var(--color-accent);
}


/* ── 19. FINAL CTA SECTION ────────────────────────────────── */

.final-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: var(--space-9) 0;
    text-align: center;
}

.final-cta__heading {
    color: var(--color-text-inverse);
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.final-cta__sub {
    color: rgba(247, 245, 240, 0.75);
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
}

.final-cta__phone-wrapper {
    margin-top: var(--space-8);
    display: flex;
    justify-content: center;
    width: 100%;
}

.final-cta__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-4) var(--space-8) var(--space-4) var(--space-6);
    border-radius: 50px;
    color: var(--color-text-inverse);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.final-cta__phone:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 168, 56, 0.2);
    color: var(--color-accent);
}

.final-cta__phone .pulse-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    color: var(--color-primary);
    border-radius: 50%;
    position: relative;
}

.final-cta__phone .pulse-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.final-cta__phone .phone-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.final-cta__phone .phone-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    font-weight: var(--weight-bold);
    margin-bottom: 2px;
}

.final-cta__phone .phone-number {
    font-size: var(--text-2xl);
    font-weight: var(--weight-extrabold);
    line-height: 1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}


/* ── 20. SCROLL REVEAL ANIMATIONS ─────────────────────────── */

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

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

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slide-in-right {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* ── 21. TABLES ───────────────────────────────────────────── */

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.data-table th {
    background: var(--color-primary);
    color: var(--color-text-inverse);
    font-weight: var(--weight-semibold);
    font-size: var(--text-sm);
    text-align: left;
    padding: var(--space-4) var(--space-5);
}

.data-table td {
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--color-border-light);
    font-size: var(--text-sm);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table tbody tr:hover {
    background: var(--color-surface-hover);
}


/* ── 22. RESPONSIVE — TABLET (768px+) ─────────────────────── */

@media (min-width: 768px) {
    :root {
        --container-padding: var(--space-6);
    }

    h1 { font-size: var(--text-5xl); }
    h2 { font-size: var(--text-4xl); }
    h3 { font-size: var(--text-2xl); }

    .section-heading { font-size: var(--text-4xl); }

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

    .hero__title {
        font-size: var(--text-5xl);
    }

    .trust-bar__grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .footer-bottom__inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-cta__inner {
        flex-direction: row;
        text-align: left;
    }

    .footer-cta__text {
        flex: 1;
    }
}


/* ── 23. RESPONSIVE — DESKTOP (1024px+) ───────────────────── */

@media (min-width: 1024px) {
    :root {
        --section-padding-y: var(--space-9);
    }

    .top-bar {
        display: block;
    }

    .main-nav {
        display: flex;
    }

    .site-header__actions {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }

    .mobile-cta-bar {
        display: none;
    }

    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .grid--4 { grid-template-columns: repeat(4, 1fr); }

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

    .hero__title {
        font-size: var(--text-6xl);
    }

    .value-prop__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main__grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .final-cta__heading {
        font-size: var(--text-5xl);
    }
}


/* ── 24. RESPONSIVE — LARGE DESKTOP (1440px+) ─────────────── */

@media (min-width: 1440px) {
    :root {
        --container-max: 1320px;
    }
}


/* ── 26. SIDEBAR LAYOUT ──────────────────────────────────── */

.page-with-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-7);
}

@media (min-width: 1024px) {
    .page-with-sidebar {
        grid-template-columns: 1fr 380px;
        align-items: start;
    }
}

.page-content {
    min-width: 0; /* Prevent grid blowout */
}


/* ── 27. QUOTE SIDEBAR ────────────────────────────────────── */

.quote-sidebar {
    position: relative;
}

@media (min-width: 1024px) {
    .quote-sidebar {
        position: sticky;
        top: calc(var(--header-height) + var(--space-5));
    }
}

.quote-sidebar__inner {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
}

.quote-sidebar__header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-bottom: var(--space-4);
    margin-bottom: var(--space-5);
    border-bottom: 2px solid var(--color-accent);
    color: var(--color-primary);
}

.quote-sidebar__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    margin: 0;
    color: var(--color-primary);
}

.quote-form__group {
    margin-bottom: var(--space-4);
}

.quote-form__label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-1);
}

.quote-form__req {
    color: var(--color-danger);
}

.quote-form__input,
.quote-form__textarea {
    width: 100%;
    padding: var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.quote-form__input:focus,
.quote-form__textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-light);
}

.quote-form__input::placeholder,
.quote-form__textarea::placeholder {
    color: var(--color-text-light);
}

.quote-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.quote-sidebar__note {
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    text-align: center;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.spin {
    animation: spin 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
}


/* ── 28. INTERNAL HERO (Sub-pages) ────────────────────────── */

.hero--internal {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 60%, var(--color-secondary) 100%);
    padding: var(--space-9) 0 var(--space-8);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero--internal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(232, 168, 56, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero--internal .hero__title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    color: var(--color-text-inverse);
    margin-bottom: var(--space-4);
}

.hero--internal .hero__subtitle {
    font-size: var(--text-lg);
    color: rgba(247, 245, 240, 0.8);
    max-width: 680px;
    margin: 0 auto;
}


/* ── 29. FLEET GALLERY ────────────────────────────────────── */

.fleet-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    margin-top: var(--space-5);
}

@media (min-width: 640px) {
    .fleet-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .fleet-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fleet-gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    position: relative;
}

.fleet-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.fleet-gallery__item:hover img {
    transform: scale(1.05);
}


/* ── 30. CONTENT SECTIONS (rich text) ─────────────────────── */

.content-block {
    line-height: var(--leading-relaxed);
}

.content-block h2 {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--color-accent-light);
}

.content-block h3 {
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    color: var(--color-primary);
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
}

.content-block p {
    margin-bottom: var(--space-4);
    color: var(--color-text);
    font-size: var(--text-base);
}

.content-block ul,
.content-block ol {
    margin-left: var(--space-5);
    margin-bottom: var(--space-4);
}

.content-block li {
    margin-bottom: var(--space-2);
    padding-left: var(--space-2);
    color: var(--color-text);
}

.content-block ul li::marker {
    color: var(--color-accent);
}

.content-block .highlight-box {
    background: var(--color-accent-light);
    border-left: 4px solid var(--color-accent);
    padding: var(--space-4) var(--space-5);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: var(--space-5) 0;
}

.content-block .highlight-box p {
    margin-bottom: 0;
    font-weight: var(--weight-medium);
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    margin: var(--space-4) 0;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text);
    padding: var(--space-2) var(--space-3);
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border-light);
}

.amenity-item svg {
    color: var(--color-success);
    flex-shrink: 0;
}

@media (max-width: 639px) {
    .amenity-grid {
        grid-template-columns: 1fr;
    }
}


/* ── 31. FLEET VEHICLE HERO BANNER ────────────────────────── */

.fleet-hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-5);
    box-shadow: var(--shadow-md);
}


/* ── 25. PRINT STYLES ─────────────────────────────────────── */

@media print {
    .top-bar,
    .site-header,
    .mobile-cta-bar,
    .footer-cta,
    .site-footer,
    .quote-sidebar,
    .btn--accent,
    .btn--outline {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }

    a { color: #000; text-decoration: underline; }
    h1, h2, h3 { color: #000; }
}

