/* ==========================================================================
   THE CORP CRUISE — LUXURY BRAND STYLING SYSTEM
   Deep Navy · Champagne Gold · Executive White
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Palette */
    --bg-0: #05080f;
    /* Deepest black-navy canvas */
    --bg-1: #090d1a;
    /* Primary background */
    --bg-2: #0d1220;
    /* Card / panel backgrounds */
    --bg-3: #111829;
    /* Elevated surface / inputs */
    --bg-4: #16203a;
    /* Hover states */

    /* Gold accent system */
    --gold: #c9a96e;
    /* Primary champagne gold */
    --gold-light: #e0c99a;
    /* Highlights, text accents */
    --gold-dim: #8a6c3e;
    /* Subdued gold for borders */
    --gold-glow: rgba(201, 169, 110, 0.12);
    --gold-glow-lg: rgba(201, 169, 110, 0.06);

    /* Text */
    --text-primary: #f4f0eb;
    /* Warm white — not harsh pure white */
    --text-secondary: #b0aaa2;
    /* Warm silver for body */
    --text-muted: #636169;
    /* Muted captions */

    /* Borders */
    --border: rgba(201, 169, 110, 0.12);
    --border-hover: rgba(201, 169, 110, 0.28);
    --border-light: rgba(244, 240, 235, 0.06);

    /* Type */
    --font-display: 'Outfit', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --max-w: 1200px;
    --header-h: 76px;
    --radius-xl: 20px;
    --radius-lg: 14px;
    --radius-md: 8px;
    --radius-sm: 5px;
    --radius-pill: 999px;

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --duration: 0.35s;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    background-color: var(--bg-1);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration) var(--ease-out);
}

ul {
    list-style: none;
}

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

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-1);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dim);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.mt-10 {
    margin-top: 10px;
}

.font-light {
    font-weight: 300;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dim) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--gold) !important;
}

/* --------------------------------------------------------------------------
   3. SECTION LABELS & TYPOGRAPHY COMPONENTS
   -------------------------------------------------------------------------- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.section-description {
    max-width: 580px;
    margin: 0 auto 60px auto;
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

/* Decorative divider */
.section-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 0 auto 20px auto;
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

/* Primary: gold fill */
.btn-primary {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%);
    color: var(--bg-0);
    border: 1px solid var(--gold);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold-light);
    box-shadow: 0 4px 30px rgba(201, 169, 110, 0.25);
}

/* Outline: dark with gold border */
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: var(--gold-glow);
}

.btn-lg {
    padding: 17px 38px;
    font-size: 0.95rem;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.8rem;
}

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

.desktop-only {}

/* --------------------------------------------------------------------------
   5. FORM ELEMENTS
   -------------------------------------------------------------------------- */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
    width: 100%;
}

.form-group label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--bg-3);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 13px 16px;
    font-size: 0.92rem;
    transition: all var(--duration) var(--ease-out);
    width: 100%;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-dim);
    box-shadow: 0 0 0 3px var(--gold-glow);
    background-color: var(--bg-4);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' width='14' height='14' fill='none' stroke='%23636169' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
    cursor: pointer;
}

.form-group select option {
    background-color: var(--bg-2);
    color: var(--text-primary);
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-row.two-cols {
    flex-direction: row;
}

.form-subheading {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    border-top: 1px solid var(--border);
    padding-top: 26px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.form-instructions {
    font-size: 0.95rem;
    margin-bottom: 32px;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Range slider */
.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--bg-4);
    border: none !important;
    padding: 0 !important;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 0 10px var(--gold-glow);
    transition: transform 0.15s;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.slider-value {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   6. NAVIGATION HEADER
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    background: rgba(5, 8, 15, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
    transition: all var(--duration) var(--ease-out);
}

.site-header.scrolled {
    height: 62px;
    background: rgba(5, 8, 15, 0.97);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: var(--max-w);
    height: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #05080f;
    border: 1px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transform: scale(1.3) translate(1.46%, -3.27%);
    mix-blend-mode: screen;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--gold);
    text-transform: none;
    line-height: 0.95;
}

.logo-highlight {
    color: var(--gold);
}

.logo-sub {
    font-family: var(--font-display);
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Desktop nav — centered */
.desktop-nav {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(244, 240, 235, 0.7);
    position: relative;
    padding-bottom: 2px;
    text-transform: uppercase;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--duration) var(--ease-out);
}

.nav-item:hover,
.nav-item.active {
    color: var(--gold-light);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

/* Header right side */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(244, 240, 235, 0.7);
}

.phone-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.phone-number {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.phone-avail {
    font-size: 0.62rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* Book Now pill button in header */
.btn-book-now {
    padding: 11px 24px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: var(--radius-pill);
}

/* Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-bar {
    width: 100%;
    height: 1.5px;
    background-color: var(--text-primary);
    transition: all var(--duration) var(--ease-out);
    border-radius: 1px;
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   7. MOBILE DRAWER
   -------------------------------------------------------------------------- */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-2);
    border-left: 1px solid var(--border);
    z-index: 999;
    padding: calc(var(--header-h) + 36px) 28px 28px;
    transition: right var(--duration) var(--ease-out);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
}

.mobile-menu-drawer.open {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.mobile-nav-item {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.mobile-nav-item:hover {
    color: var(--gold);
}

.drawer-divider {
    border: none;
    border-bottom: 1px solid var(--border);
    margin: 8px 0;
}

.mobile-nav-btn {
    width: 100%;
}

/* --------------------------------------------------------------------------
   8. HERO SECTION — FULL BLEED PHOTO
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: var(--bg-0);
}

/* Background photo + overlay system */
.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
    /* shift upwards to show more pavement/cars */
    display: block;
    filter: brightness(0.68) saturate(0.8);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    /* Softened overlays for brightness while preserving readability */
    background:
        linear-gradient(to right, rgba(5, 8, 15, 0.72) 0%, rgba(5, 8, 15, 0.35) 55%, rgba(5, 8, 15, 0.05) 100%),
        linear-gradient(to top, rgba(5, 8, 15, 0.9) 0%, rgba(5, 8, 15, 0.0) 50%),
        linear-gradient(to bottom, rgba(5, 8, 15, 0.5) 0%, rgba(5, 8, 15, 0.0) 30%);
}

/* Fine grain texture overlay */
.hero-bg-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
}

/* Content sits at bottom-left — editorial style */
.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: var(--max-w);
    width: 100%;
    min-height: 100vh;
    justify-content: flex-end;
}

/* Badge pill */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid var(--gold-dim);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 28px;
}

.badge-icon {
    color: var(--gold);
    display: flex;
}

/* The massive display headline */
.hero-display {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8.5vw, 7.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 28px;
    max-width: 780px;
}

.hero-display-accent {
    /* White stroke text with gold fill — premium editorial treatment */
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
    display: block;
}

/* Subtext */
.hero-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(244, 240, 235, 0.72);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-sub strong {
    color: var(--text-primary);
    font-weight: 500;
}

.hero-br {
    display: block;
}

/* CTA row */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}

/* Primary hero CTA — filled gold pill */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg-0);
    border: 1px solid var(--gold);
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    box-shadow: 0 4px 24px rgba(201, 169, 110, 0.3);
    white-space: nowrap;
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--gold-light);
    box-shadow: 0 4px 32px rgba(201, 169, 110, 0.2);
}

/* Outline hero CTA */
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid rgba(244, 240, 235, 0.3);
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    backdrop-filter: blur(6px);
    white-space: nowrap;
}

.btn-hero-outline:hover {
    border-color: var(--gold-dim);
    color: var(--gold-light);
    background: rgba(201, 169, 110, 0.08);
}

/* Scroll hint */
.hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: 12px;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-label {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* Hero card styles removed — new hero uses full-bleed photo layout */
/* Keeping .detail-col / .detail-label / .detail-value for estimator section */
.detail-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.detail-value {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   9. STATS / TRUST BAR
   -------------------------------------------------------------------------- */
.stats-bar {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 30px;
    position: relative;
}

.stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------------
   10. VALUE PROPOSITION / WHY US
   -------------------------------------------------------------------------- */
.value-prop-section {
    padding: 110px 0;
    position: relative;
    background: var(--bg-1);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.value-card {
    background: var(--bg-2);
    padding: 44px 36px;
    transition: background var(--duration) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
    opacity: 0;
    transition: opacity var(--duration) var(--ease-out);
}

.value-card:hover {
    background: var(--bg-3);
}

.value-card:hover::after {
    opacity: 1;
}

.value-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--gold-glow);
    border: 1px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 24px;
    transition: all var(--duration) var(--ease-out);
}

.value-card:hover .value-icon-wrapper {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: var(--gold);
    color: var(--bg-0);
}

.value-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   11. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
    padding: 110px 0;
    background: var(--bg-0);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, var(--border-light) 1px, transparent 1px),
        linear-gradient(to bottom, var(--border-light) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all var(--duration) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
    opacity: 0;
    transition: opacity var(--duration) var(--ease-out);
}

.service-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    color: var(--gold);
    margin-bottom: 24px;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.service-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.service-features li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   12. FLEET SHOWCASE — 3-column card grid
   -------------------------------------------------------------------------- */
.fleet-section {
    padding: 110px 0;
    background: var(--bg-1);
}

/* Large display title override for fleet */
.fleet-display-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.0;
    margin-bottom: 20px;
}

/* 3-col equal card grid */
.fleet-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* Each card */
.fleet-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--duration) var(--ease-out),
        border-color var(--duration) var(--ease-out),
        box-shadow var(--duration) var(--ease-out);
}

.fleet-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
}

/* Featured card gets a gold top border */
.fleet-card--featured {
    border-color: var(--gold-dim);
}

.fleet-card--featured:hover {
    border-color: var(--gold);
    box-shadow: 0 24px 56px rgba(201, 169, 110, 0.12);
}

/* ── Image area: fixed height, full-width, no cropping ── */
.fleet-card-image-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    /* fixed height — car fills this */
    overflow: hidden;
    background: var(--bg-3);
    flex-shrink: 0;
}

.fleet-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    padding: 0;
    transition: transform 0.7s var(--ease-out);
}

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

/* Subtle gradient at bottom of photo to blend into card body */
.fleet-card-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(13, 18, 32, 0.85) 0%, transparent 100%);
    pointer-events: none;
}

/* "MOST POPULAR" badge on featured card */
.fleet-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg-0);
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: var(--radius-pill);
}

/* ── Text body below photo ── */
.fleet-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 16px;
}

.fleet-card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.fleet-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.fleet-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.55;
}

.fleet-card-pax {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

/* Features: 2-column grid with checkmarks */
.fleet-card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    flex-grow: 1;
}

.fleet-feat-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.fleet-feat-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* CTA link at bottom */
.fleet-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gold);
    text-transform: uppercase;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: auto;
    transition: gap var(--duration) var(--ease-out), color var(--duration) var(--ease-out);
    text-decoration: none;
}

.fleet-card-cta:hover {
    color: var(--gold-light);
    gap: 12px;
}

/* Responsive */
@media (max-width: 900px) {
    .fleet-cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .fleet-card-image-wrap {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .fleet-display-title {
        font-size: 2rem;
    }

    .fleet-card-image-wrap {
        height: 200px;
    }

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

/* --------------------------------------------------------------------------
   13. AUDIENCE SECTION
   -------------------------------------------------------------------------- */
.audience-section {
    padding: 110px 0;
    background: var(--bg-0);
    position: relative;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.audience-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    transition: all var(--duration) var(--ease-out);
}

.audience-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.audience-header {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
}

.audience-role-icon {
    color: var(--gold);
    display: flex;
}

.audience-role {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.audience-desc {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--text-secondary);
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   14. HOW IT WORKS
   -------------------------------------------------------------------------- */
.how-it-works-section {
    padding: 120px 0;
    background: var(--bg-0);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.steps-grid::before {
    display: none;
}

.step-card {
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, rgba(18, 22, 33, 0.55) 0%, rgba(11, 13, 23, 0.75) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
    padding: 48px 36px 36px 36px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.08), 0 0 30px rgba(0, 0, 0, 0.5);
}

.step-card:hover::before {
    opacity: 1;
}

.step-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    margin-bottom: 28px;
    transition: transform 0.4s ease, border-color 0.4s ease, color 0.4s ease, background 0.4s ease;
}

.step-card:hover .step-icon-wrapper {
    transform: scale(1.08) rotate(3deg);
    border-color: rgba(212, 175, 55, 0.35);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.06);
}

.step-icon {
    width: 28px;
    height: 28px;
}

.step-number {
    position: absolute;
    top: 36px;
    right: 36px;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.025);
    line-height: 1;
    transition: color 0.4s ease, transform 0.4s ease;
    user-select: none;
}

.step-card:hover .step-number {
    color: rgba(212, 175, 55, 0.07);
    transform: scale(1.08);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.step-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.75;
}

/* --------------------------------------------------------------------------
   15. ESTIMATOR SECTION
   -------------------------------------------------------------------------- */
.calculator-section {
    padding: 110px 0;
    background: var(--bg-0);
    position: relative;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: start;
}

.calculator-form-container {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.calculator-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.calculator-summary-container {
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.summary-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.summary-card-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}

.summary-lines {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
}

.summary-label {
    color: var(--text-muted);
}

.summary-value {
    color: var(--text-primary);
    font-weight: 500;
    text-align: right;
}

.summary-divider {
    border: none;
    border-bottom: 1px solid var(--border);
    margin: 20px 0;
}

.rate-display-box {
    background: var(--bg-3);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    margin-bottom: 24px;
}

.rate-box-title {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

.rate-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.price-currency {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gold-light);
    align-self: flex-start;
    margin-top: 6px;
}

.price-value {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-terms {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 6px;
}

.rate-notes {
    font-size: 0.7rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-top: 6px;
}

.summary-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.benefit-icon {
    color: var(--gold);
    flex-shrink: 0;
}

/* Success overlay */
.success-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 15, 0.96);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
}

.success-overlay.open {
    display: flex;
}

.success-modal-content {
    max-width: 400px;
    text-align: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gold-glow);
    border: 1px solid var(--gold-dim);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.success-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* --------------------------------------------------------------------------
   16. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-section {
    padding: 110px 0;
    background: var(--bg-1);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-slider-container {
    max-width: 820px;
    margin: 0 auto;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 56px 64px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.testimonial-slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

/* Opening quote mark decoration */
.testimonial-slider-container::after {
    content: '\201C';
    position: absolute;
    top: 28px;
    left: 50px;
    font-family: Georgia, serif;
    font-size: 6rem;
    line-height: 1;
    color: var(--gold-glow);
    color: rgba(201, 169, 110, 0.12);
    pointer-events: none;
    select: none;
}

.testimonial-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonial-slider {
    display: flex;
    flex-direction: row;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    gap: 20px;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.author-logo {
    display: flex;
    align-items: center;
}

.mock-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    color: var(--gold-dim);
    border-left: 2px solid var(--gold-dim);
    padding-left: 10px;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
}

.slider-arrow:hover {
    color: var(--gold-light);
    border-color: var(--gold-dim);
    background: var(--gold-glow);
}

.slider-indicators {
    display: flex;
    gap: 8px;
}

.slider-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bg-4);
    cursor: pointer;
    transition: all 0.2s;
}

.slider-indicator.active {
    background: var(--gold);
    transform: scale(1.3);
    width: 20px;
    border-radius: 3px;
}

/* --------------------------------------------------------------------------
   17. FAQ
   -------------------------------------------------------------------------- */
.faq-section {
    padding: 110px 0;
    background: var(--bg-0);
}

.faq-accordion-container {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--duration) var(--ease-out);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.active {
    border-color: var(--gold-dim);
}

.faq-trigger {
    width: 100%;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-icon-marker {
    color: var(--text-muted);
    display: flex;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    align-items: center;
    justify-content: center;
    transition: all var(--duration) var(--ease-out);
}

.faq-item.active .faq-icon-marker {
    background: var(--gold-glow);
    border-color: var(--gold-dim);
    color: var(--gold);
    transform: rotate(45deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    padding: 0 26px 22px 26px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   18. CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner-section {
    padding: 130px 0;
    position: relative;
    background: var(--bg-2);
    overflow: hidden;
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, var(--border-light) 1px, transparent 1px),
        linear-gradient(to bottom, var(--border-light) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.cta-banner-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201, 169, 110, 0.09) 0%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.relative-box {
    position: relative;
    z-index: 2;
}

.cta-banner-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.cta-banner-subtitle {
    max-width: 580px;
    margin: 0 auto 46px auto;
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

.cta-banner-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 44px;
}

.cta-footer-contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.cta-footer-contacts strong {
    color: var(--text-primary);
}

.cta-footer-contacts a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration) var(--ease-out);
}

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

.divider-dot {
    color: var(--gold);
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--bg-1);
    border-top: 1px solid var(--border);
    padding: 90px 0 44px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 0.9fr);
    gap: 48px;
    margin-bottom: 60px;
}

.brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.brand-pitch {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
}

.office-location {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.location-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    margin-bottom: 22px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 300;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
}

.social-links a:hover {
    color: var(--gold-light);
    border-color: var(--gold-dim);
    background: var(--gold-glow);
}

/* --------------------------------------------------------------------------
   20. MODAL
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 15, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal-card {
    background: var(--bg-2);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 680px;
    padding: 44px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideUp 0.4s var(--ease-out);
}

.modal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

@keyframes modalSlideUp {
    0% {
        transform: translateY(24px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: 22px;
    right: 22px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.modal-close-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: var(--bg-3);
}

.modal-header {
    margin-bottom: 30px;
}

.modal-tag {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
}

.modal-title {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    margin-top: 16px;
}

.modal-actions .btn {
    min-width: 120px;
}

/* --------------------------------------------------------------------------
   21. STICKY CTA + BACK TO TOP
   -------------------------------------------------------------------------- */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(9, 13, 26, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    padding: 14px 24px;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 900;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform var(--duration) var(--ease-out);
}

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

.sticky-cta-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sticky-cta-brand {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.sticky-cta-pitch {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 890;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.2s var(--ease-out);
}

.back-to-top:hover {
    color: var(--gold-light);
    border-color: var(--gold-dim);
    background: var(--gold-glow);
}

.back-to-top.visible {
    display: flex;
}

/* --------------------------------------------------------------------------
   22. SCROLL ANIMATIONS
   -------------------------------------------------------------------------- */
.fade-in-section {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* --------------------------------------------------------------------------
   23. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-display {
        font-size: clamp(2.8rem, 7vw, 5rem);
    }

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

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

    .fleet-panel-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .calculator-summary-container {
        position: static;
    }

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

    .stat-item:nth-child(3)::before {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }

    .container {
        padding: 0 20px;
    }

    .desktop-only {
        display: none !important;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-display {
        font-size: clamp(2.4rem, 11vw, 3.8rem);
    }

    .hero-display-accent {
        -webkit-text-stroke-width: 1.5px;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hero-br {
        display: none;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        justify-content: center;
    }

    .hero-inner {
        padding-bottom: 60px;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 0;
        border-radius: var(--radius-lg);
    }

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

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .steps-grid::before {
        display: none;
    }

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

    .stat-item::before {
        display: none !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .testimonial-slider-container {
        padding: 30px 24px;
    }

    .testimonial-slider-container::after {
        display: none;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    .testimonial-author-row {
        flex-direction: column;
        gap: 12px;
    }

    .cta-banner-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-banner-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .cta-footer-contacts {
        flex-direction: column;
        gap: 6px;
    }

    .divider-dot {
        display: none;
    }

    .form-row.two-cols {
        flex-direction: column;
        gap: 0;
    }

    .mobile-sticky-cta {
        display: flex;
    }
}

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .cta-banner-title {
        font-size: 1.75rem;
    }

    .fleet-tabs {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }

    .fleet-tab {
        justify-content: center;
    }

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

    .modal-card {
        padding: 28px 20px;
    }

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

    .hero-display {
        font-size: 2.4rem;
    }
}

/* --------------------------------------------------------------------------
   24. MISC ADDITIONS
   -------------------------------------------------------------------------- */
.section-tag.glow {
    text-shadow: 0 0 16px rgba(201, 169, 110, 0.5);
}

/* gradient-text alias kept for backward compat */
.gradient-text {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dim) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section header spacing */
.section-header {
    margin-bottom: 0;
}

.section-header .section-description {
    margin-bottom: 60px;
}

/* Fleet panel min-height fix on mobile */
@media (max-width: 768px) {
    .fleet-panels-container {
        min-height: unset;
    }

    .fleet-panel {
        position: relative;
        top: unset;
        left: unset;
    }

    .back-to-top {
        bottom: 80px;
    }
}

/* Thin top highlight on sections */
.value-prop-section,
.services-section,
.fleet-section,
.audience-section,
.how-it-works-section,
.calculator-section,
.testimonials-section,
.faq-section {
    border-top: 1px solid var(--border);
}