/* =====================================================
   CHARTER PAGE v10.1 — GREYWOLF BUS
   Outfit + DM Sans | Earth Tones | Indigenous Inspired
===================================================== */

/* =====================================================
   RESET & BASE
===================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Earth Tone Palette */
    --primary-earth:    #1f1410;
    --secondary-earth:  #2d1e16;
    --accent-earth:     #3d2618;

    /* Orange Palette */
    --primary-orange:   #ff6b35;
    --secondary-orange: #ff8c61;
    --light-orange:     #ffa07a;
    --dark-orange:      #e55a2b;
    --pale-orange:      #ffd4b3;

    /* Naturals */
    --clay-red:    #c94a2e;
    --sage-green:  #6b9e5a;
    --warm-cream:  #fef5eb;
    --sand:        #f0d9bd;
    --sand-dark:   #e5c9a0;

    /* Neutrals */
    --white:       #ffffff;
    --light-gray:  #faf7f2;
    --medium-gray: #8a7d70;
    --dark-gray:   #3d2f25;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
    --gradient-earth:   linear-gradient(135deg, #1f1410 0%, #2d1e16 100%);
    --gradient-subtle:  linear-gradient(135deg, #fef5eb 0%, #f0d9bd 100%);

    /* Shadows */
    --shadow-sm:     0 2px 8px rgba(31, 20, 16, 0.18);
    --shadow-md:     0 4px 20px rgba(31, 20, 16, 0.22);
    --shadow-lg:     0 10px 40px rgba(31, 20, 16, 0.28);
    --shadow-xl:     0 20px 60px rgba(31, 20, 16, 0.32);
    --shadow-orange: 0 8px 32px rgba(255, 107, 53, 0.35);

    /* Transitions */
    --t-fast:   all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --t:        all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow:   all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    --t-spring: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body {
    font-family: 'DM Sans', 'Segoe UI', -apple-system, sans-serif;
    line-height: 1.6;
    background: var(--warm-cream);
    color: var(--dark-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    font-weight: 800;
    line-height: 1.15;
}

.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 28px;
}

/* =====================================================
   SCROLL REVEAL
===================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: none;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--t);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}
.btn-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-modern:hover::before { opacity: 1; }
.btn-modern span, .btn-modern i { position: relative; z-index: 1; }

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(255, 107, 53, 0.42);
}
.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}
.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-light {
    background: var(--white);
    color: var(--primary-orange);
    border: 2px solid var(--sand);
}
.btn-light:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}
.btn-large {
    padding: 20px 44px;
    font-size: 17px;
}

/* =====================================================
   SECTION HEADERS
===================================================== */
.section-header { margin-bottom: 60px; }
.section-header.centered {
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 64px;
}
.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.13);
    color: var(--dark-orange);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
    border: 1.5px solid rgba(255, 107, 53, 0.22);
}
.section-title {
    font-size: 48px;
    color: var(--primary-earth);
    margin-bottom: 18px;
}
.section-description {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
}
.highlight-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   HERO SECTION
===================================================== */
.charter-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
    background: #1a0f0a;
}
.hero-background-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    z-index: 0;
    opacity: 0.35;
    filter: saturate(0.6);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(31,20,16,0.92) 0%, rgba(31,20,16,0.7) 50%, rgba(45,30,22,0.82) 100%);
    z-index: 1;
}
.charter-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero two-column layout */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 180px);
}

/* Left: Hero Copy */
.hero-content {
    max-width: 600px;
    animation: heroFadeIn 0.9s ease 0.1s backwards;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: none; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 107, 53, 0.2);
    border: 1.5px solid rgba(255, 107, 53, 0.4);
    border-radius: 6px;
    color: var(--secondary-orange);
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}
.hero-badge i { font-size: 15px; }

.hero-title {
    font-size: 68px;
    color: var(--white);
    margin-bottom: 22px;
    animation: heroFadeIn 0.9s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 19px;
    color: rgba(255,255,255,0.72);
    line-height: 1.72;
    margin-bottom: 36px;
    animation: heroFadeIn 0.9s ease 0.3s backwards;
}

/* Service Chips */
.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    animation: heroFadeIn 0.9s ease 0.4s backwards;
}
.service-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 13.5px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--t);
}
.service-chip i { font-size: 12px; }
.service-chip:hover,
.service-chip.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

/* Service detail panel */
.service-detail-panel {
    min-height: 60px;
    margin-bottom: 36px;
    animation: heroFadeIn 0.9s ease 0.5s backwards;
}
.service-detail {
    display: none;
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border-left: 3px solid var(--primary-orange);
    border-radius: 0 8px 8px 0;
    animation: detailFade 0.3s ease;
}
.service-detail.active { display: block; }
.service-detail strong { color: var(--secondary-orange); }
@keyframes detailFade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: none; }
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroFadeIn 0.9s ease 0.6s backwards;
}

/* =====================================================
   HERO MINI CAROUSEL (right side)
===================================================== */
.fleet-carousel-wrapper {
    position: relative;
    animation: heroFadeIn 0.9s ease 0.3s backwards;
}
.carousel-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.carousel-scene {
    position: relative;
    /* FIX: Use auto height so card content is never clipped */
    height: auto;
    min-height: 460px;
    perspective: 1000px;
    overflow: hidden;
}
.carousel-track {
    position: relative;
    width: 100%;
    /* FIX: let height be driven by the active card */
    height: 100%;
    min-height: 460px;
}

/* Cards — fixed height removed, use flex column to fill */
.carousel-card {
    position: absolute;
    inset: 0;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    transform-style: preserve-3d;
    cursor: pointer;
}
.carousel-card.active  { transform: translateX(0) scale(1); opacity: 1; z-index: 3; }
.carousel-card.prev    { transform: translateX(-60%) scale(0.78) rotateY(18deg); opacity: 0.35; z-index: 2; }
.carousel-card.next    { transform: translateX(60%) scale(0.78) rotateY(-18deg); opacity: 0.35; z-index: 2; }

.bus-card-inner {
    background: linear-gradient(160deg, rgba(255,255,255,0.1) 0%, rgba(255,107,53,0.08) 100%);
    border: 1.5px solid rgba(255, 107, 53, 0.25);
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: var(--t);
}
.carousel-card.active .bus-card-inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(255, 107, 53, 0.22);
}

.bus-img-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px 10px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}
.bus-png {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.carousel-card.active .bus-png:hover { transform: scale(1.05) translateY(-4px); }
.bus-fallback {
    width: 120px;
    height: 120px;
    background: rgba(255,107,53,0.15);
    border-radius: 16px;
    font-size: 56px;
    color: var(--primary-orange);
    align-items: center;
    justify-content: center;
}

.bus-card-info {
    padding: 20px 24px 24px;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255, 107, 53, 0.15);
    /* FIX: prevent content from shrinking or overflowing */
    flex-shrink: 0;
}
.bus-name {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.bus-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.bus-specs span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    /* FIX: prevent spec badges from overflowing on narrow screens */
    white-space: nowrap;
}
.bus-specs span i { color: var(--primary-orange); font-size: 11px; }
.bus-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}
.carousel-btn {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
}
.carousel-btn:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}
.carousel-dots { display: flex; gap: 10px; }
.cdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    transition: var(--t);
}
.cdot.active {
    background: var(--primary-orange);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255,107,53,0.5);
}

/* =====================================================
   STATS BAR
===================================================== */
.stats-bar {
    padding: 60px 0;
    background: var(--sand);
    border-top: 1.5px solid rgba(255, 107, 53, 0.18);
    border-bottom: 1.5px solid rgba(255, 107, 53, 0.18);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: var(--warm-cream);
    border-radius: 14px;
    border: 1.5px solid rgba(255, 107, 53, 0.18);
    transition: var(--t-spring);
}
.stat-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-orange);
}
.stat-icon {
    width: 58px;
    height: 58px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
}
.stat-content { line-height: 1; }
.stat-number-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: var(--primary-orange);
}
.stat-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: var(--dark-gray);
    margin-top: 5px;
}

/* =====================================================
   SERVICES SECTION
===================================================== */
.services-section {
    padding: 110px 0;
    background: var(--warm-cream);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}
.service-box {
    background: var(--sand);
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 107, 53, 0.18);
    transition: var(--t-slow);
}
.service-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-lg);
}
.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--t-slow);
}
.service-box:hover .service-image img { transform: scale(1.06); }
.service-overlay {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}
.service-info { padding: 26px 28px 28px; }
.service-info h3 {
    font-size: 24px;
    color: var(--primary-earth);
    margin-bottom: 12px;
}
.service-info p {
    font-size: 15.5px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}
.service-features { list-style: none; }
.service-features li {
    padding: 8px 0;
    color: var(--dark-gray);
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,107,53,0.08);
}
.service-features li:last-child { border-bottom: none; }
.service-features li i { color: var(--primary-orange); font-size: 13px; }

/* =====================================================
   FLEET SECTION (Full-width 3D Carousel)
   FIX: Removed fixed heights, use auto-height with min-height
===================================================== */
.fleet-section {
    padding: 110px 0 80px;
    background: var(--sand);
    position: relative;
    overflow: hidden;
}
.fleet-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.3), transparent);
}

/* 3D Stage — FIX: auto height so content never overflows */
.fleet-3d-stage {
    position: relative;
    /* FIX: no fixed height — let cards determine it */
    height: auto;
    min-height: 520px;
    perspective: 1400px;
    perspective-origin: 50% 50%;
    margin-bottom: 70px;
    /* FIX: allow side cards to be partially visible without clipping content */
    overflow: visible;
}
.fleet-3d-track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    transform-style: preserve-3d;
}

/* FIX: cards use height: auto so content fills naturally */
.fleet-card {
    position: absolute;
    top: 0;
    left: 50%;
    width: 560px;
    /* FIX: removed fixed height, use auto */
    height: auto;
    min-height: 460px;
    margin-left: -280px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--warm-cream);
    border: 2px solid rgba(255, 107, 53, 0.2);
    box-shadow: var(--shadow-xl);
    transition:
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.6s ease,
        box-shadow 0.5s ease;
    cursor: pointer;
    /* FIX: ensure column layout so overlay fills card properly */
    display: flex;
    flex-direction: column;
}
.fleet-card--active {
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
    opacity: 1;
    z-index: 5;
    box-shadow: 0 30px 80px rgba(31,20,16,0.35), 0 0 0 2px var(--primary-orange);
}
.fleet-card--prev {
    transform: translateX(-360px) translateZ(-180px) rotateY(28deg) scale(0.82);
    opacity: 0.45;
    z-index: 3;
}
.fleet-card--next {
    transform: translateX(360px) translateZ(-180px) rotateY(-28deg) scale(0.82);
    opacity: 0.45;
    z-index: 3;
}
.fleet-card--far-prev, .fleet-card--far-next {
    transform: translateX(0) translateZ(-400px) scale(0.5);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.fleet-card-img {
    height: 280px;
    /* FIX: don't shrink the image area */
    flex-shrink: 0;
    background: linear-gradient(160deg, #1a0f0a 0%, #2d1e16 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.fleet-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 70%, rgba(255,107,53,0.08) 0%, transparent 70%);
}
.fleet-card-img img {
    max-width: 90%;
    max-height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.6));
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fleet-card--active .fleet-card-img img:hover {
    transform: scale(1.06) translateY(-8px);
}
.bus-fallback-lg {
    font-size: 80px;
    color: rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* FIX: overlay section grows to fit content */
.fleet-card-overlay {
    padding: 24px 28px 28px;
    background: var(--warm-cream);
    /* FIX: take up remaining space and don't clip */
    flex: 1;
    display: flex;
    flex-direction: column;
}
.fleet-card-overlay h3 {
    font-size: 26px;
    color: var(--primary-earth);
    margin-bottom: 14px;
    flex-shrink: 0;
}
.fleet-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    flex-shrink: 0;
}
.fleet-pills span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    font-size: 12.5px;
    color: var(--dark-gray);
    font-weight: 500;
    /* FIX: prevent pill overflow */
    white-space: nowrap;
}
.fleet-pills span i { color: var(--primary-orange); font-size: 11px; }
.fleet-card-desc {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
    /* FIX: ensure description is always visible */
    flex-shrink: 0;
}

/* Fleet Nav Buttons */
.fleet-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: var(--white);
    border: 2px solid rgba(255, 107, 53, 0.25);
    border-radius: 50%;
    color: var(--primary-orange);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t-spring);
    z-index: 10;
    box-shadow: var(--shadow-md);
}
.fleet-nav:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-50%) scale(1.12);
}
.fleet-nav--prev { left: 0; }
.fleet-nav--next { right: 0; }

.fleet-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.fdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(31, 20, 16, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--t);
}
.fdot.active {
    background: var(--primary-orange);
    width: 28px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
}

/* Fleet features grid */
.fleet-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.fleet-feat-item {
    text-align: center;
    padding: 28px 16px;
    background: var(--warm-cream);
    border-radius: 14px;
    border: 1.5px solid rgba(255, 107, 53, 0.15);
    transition: var(--t-spring);
}
.fleet-feat-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-orange);
}
.ffi {
    width: 54px;
    height: 54px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    margin: 0 auto 16px;
}
.fleet-feat-item h4 {
    font-size: 15px;
    color: var(--primary-earth);
    margin-bottom: 8px;
}
.fleet-feat-item p {
    font-size: 13px;
    color: var(--medium-gray);
    line-height: 1.55;
}

/* =====================================================
   PROCESS SECTION
===================================================== */
.process-section {
    padding: 110px 0;
    background: var(--warm-cream);
}
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}
.process-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    position: relative;
    padding-top: 30px;
}
.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 900;
    color: var(--white);
    z-index: 2;
    border: 3px solid var(--warm-cream);
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
}
.step-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
    background: var(--sand);
    border: 2px solid rgba(255, 107, 53, 0.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--primary-orange);
    transition: var(--t-spring);
}
.process-step:hover .step-icon {
    border-color: var(--primary-orange);
    transform: translateY(-6px);
    box-shadow: var(--shadow-orange);
}
.process-step h3 {
    font-size: 20px;
    color: var(--primary-earth);
    margin-bottom: 12px;
}
.process-step p {
    font-size: 15.5px;
    color: var(--dark-gray);
    line-height: 1.65;
}
.process-arrow {
    font-size: 22px;
    color: rgba(255, 107, 53, 0.4);
    flex-shrink: 0;
}

/* =====================================================
   INLINE QUOTE FORM SECTION
===================================================== */
.quote-section {
    padding: 120px 0;
    background: #1a0f0a;
    position: relative;
    overflow: hidden;
}
.quote-bg-decor {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 107, 53, 0.07) 0%, transparent 45%);
}
.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 50px,
        rgba(255,107,53,0.02) 50px,
        rgba(255,107,53,0.02) 51px
    );
}
.quote-section .container { position: relative; z-index: 2; }

.quote-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

/* Left: trust signals */
.quote-trust { padding-top: 12px; }
.qt-badge {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 28px;
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}
.qt-title {
    font-size: 42px;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
}
.qt-sub {
    font-size: 16.5px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 40px;
}
.qt-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 48px;
}
.qt-feat {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.75);
    font-size: 15.5px;
}
.qt-feat i {
    color: var(--primary-orange);
    font-size: 17px;
    flex-shrink: 0;
}
.qt-phone-link {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 28px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255, 107, 53, 0.25);
    border-radius: 14px;
    text-decoration: none;
    transition: var(--t);
}
.qt-phone-link:hover {
    background: rgba(255, 107, 53, 0.12);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}
.qt-phone-link > i {
    width: 48px;
    height: 48px;
    background: var(--primary-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
}
.qt-phone-label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.qt-phone-num {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

/* Right: Form */
.quote-form-wrap {
    background: var(--warm-cream);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.45);
    border: 1.5px solid rgba(255, 107, 53, 0.15);
    /* FIX: ensure form wrap doesn't overflow its grid column */
    min-width: 0;
    width: 100%;
}

/* Error / Success */
.form-error-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(201, 74, 46, 0.1);
    border: 1.5px solid rgba(201, 74, 46, 0.3);
    border-radius: 10px;
    color: var(--clay-red);
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 24px;
}
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--white);
    margin: 0 auto 24px;
    box-shadow: var(--shadow-orange);
}
.form-success h3 {
    font-size: 32px;
    color: var(--primary-earth);
    margin-bottom: 14px;
}
.form-success p {
    font-size: 17px;
    color: var(--dark-gray);
    line-height: 1.65;
}

/* Form Fields
   FIX: iOS Safari box-sizing, appearance, and overflow fixes */
.form-group {
    margin-bottom: 18px;
    /* FIX: ensure group doesn't overflow its container */
    min-width: 0;
    width: 100%;
}
.form-group label {
    display: block;
    font-size: 13.5px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-earth);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}
.req { color: var(--primary-orange); }

/* FIX: iOS Safari input overrides — appearance, border-radius, font-size */
.form-group input,
.form-group textarea,
.form-group select {
    display: block;
    width: 100%;
    /* FIX: critical for iOS — prevents inputs from overflowing container */
    max-width: 100%;
    box-sizing: border-box;
    padding: 15px 18px;
    background: var(--sand);
    border: 1.5px solid rgba(255, 107, 53, 0.18);
    border-radius: 10px;
    /* FIX: iOS Safari zooms on font-size < 16px, use 16px to prevent zoom */
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    color: var(--primary-earth);
    transition: var(--t);
    /* FIX: remove iOS native styling that can cause sizing issues */
    -webkit-appearance: none;
    appearance: none;
    /* FIX: ensure iOS doesn't add inner shadows */
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-gray);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--warm-cream);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12);
}
.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}
.form-group select {
    cursor: pointer;
    /* FIX: re-add dropdown arrow for select since we reset appearance */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7d70' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

/* FIX: form-row on mobile — stack to single column and don't use grid gap collapse */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 0;
    /* FIX: prevent overflow on narrow screens */
    min-width: 0;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 18px;
    font-size: 16.5px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--t-spring);
    margin-top: 8px;
    letter-spacing: 0.2px;
    box-shadow: var(--shadow-orange);
    /* FIX: ensure button never overflows on small screens */
    box-sizing: border-box;
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(255, 107, 53, 0.45);
}
.btn-submit i { font-size: 16px; }

/* =====================================================
   CTA BANNER
===================================================== */
.cta-banner {
    padding: 130px 0;
    background: var(--gradient-subtle);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 55%);
}
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: 54px;
    color: var(--primary-earth);
    margin-bottom: 22px;
}
.cta-content p {
    font-size: 19px;
    color: var(--dark-gray);
    line-height: 1.75;
    margin-bottom: 48px;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* =====================================================
   WHY GREYWOLF SECTION
===================================================== */
.why-section {
    padding: 110px 0 100px;
    background: var(--warm-cream);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.why-card {
    background: var(--sand);
    border-radius: 16px;
    border: 1.5px solid rgba(255, 107, 53, 0.18);
    padding: 36px 28px 32px;
    text-align: center;
    transition: var(--t-slow);
}
.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-lg);
}
.why-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    transition: var(--t-spring);
}
.why-card:hover .why-icon {
    transform: scale(1.1) translateY(-4px);
    box-shadow: var(--shadow-orange);
}
.why-card h3 {
    font-size: 20px;
    color: var(--primary-earth);
    margin-bottom: 12px;
}
.why-card p {
    font-size: 14.5px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* =====================================================
   FAQ SECTION
===================================================== */
.faq-section {
    padding: 110px 0;
    background: var(--sand);
}
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--warm-cream);
    border-radius: 14px;
    border: 1.5px solid rgba(255, 107, 53, 0.18);
    padding: 28px 32px;
    transition: var(--t);
}
.faq-item:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.faq-item h3 {
    font-size: 18px;
    color: var(--primary-earth);
    margin-bottom: 10px;
    line-height: 1.35;
}
.faq-item p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.72;
    margin: 0;
}
.faq-item p a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}
.faq-item p a:hover {
    text-decoration: underline;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1200px) {
    .hero-title { font-size: 54px; }
    .section-title { font-size: 40px; }
    .cta-content h2 { font-size: 46px; }
    .fleet-features-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-layout { gap: 40px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

    /* Fleet 3D: fluid card sizing */
    .fleet-3d-stage { min-height: 500px; }
    .fleet-3d-track { min-height: 500px; }
    .fleet-card {
        width: min(480px, 70vw);
        margin-left: calc(min(480px, 70vw) / -2);
    }
    .fleet-card--prev {
        transform: translateX(calc(min(480px, 70vw) * -0.65))
                   translateZ(-140px) rotateY(25deg) scale(0.8);
    }
    .fleet-card--next {
        transform: translateX(calc(min(480px, 70vw) * 0.65))
                   translateZ(-140px) rotateY(-25deg) scale(0.8);
    }
}

@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        min-height: auto;
    }
    .charter-hero { min-height: auto; padding: 100px 0 70px; }
    .hero-content { max-width: 100%; text-align: center; }
    .hero-services { justify-content: center; }
    .hero-cta { justify-content: center; }

    /* Hero mini-carousel: wider on tablet */
    .fleet-carousel-wrapper { width: 100%; max-width: 540px; margin: 0 auto; }
    .carousel-scene { min-height: 420px; }
    .carousel-track { min-height: 420px; }

    .hero-title { font-size: 50px; }
    .section-title { font-size: 36px; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-features-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .quote-layout { grid-template-columns: 1fr; gap: 50px; }
    .qt-title { font-size: 36px; }
    .process-steps { flex-direction: column; gap: 60px; }
    .process-arrow { transform: rotate(90deg); }
    .faq-list { max-width: 100%; }
    .faq-item { padding: 24px 26px; }

    /* Fleet 3D: fluid sizing */
    .fleet-3d-stage { min-height: 480px; }
    .fleet-3d-track { min-height: 480px; }
    .fleet-card {
        width: min(400px, 76vw);
        margin-left: calc(min(400px, 76vw) / -2);
    }
    .fleet-card--prev {
        transform: translateX(calc(min(400px, 76vw) * -0.65))
                   translateZ(-110px) rotateY(22deg) scale(0.78);
    }
    .fleet-card--next {
        transform: translateX(calc(min(400px, 76vw) * 0.65))
                   translateZ(-110px) rotateY(-22deg) scale(0.78);
    }
}

@media (max-width: 768px) {
    .container { padding: 0 18px; }
    .section-header,
    .section-header.centered { margin-bottom: 40px; }
    .section-description { font-size: 16px; }

    .charter-hero { padding: 80px 0 60px; }
    .hero-title { font-size: 38px; }
    .hero-subtitle { font-size: 16px; }
    .hero-cta { flex-direction: column; gap: 14px; }
    .hero-cta .btn-modern { width: 100%; justify-content: center; }
    .section-title { font-size: 30px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .stat-item { padding: 16px 14px; gap: 12px; }
    .stat-icon { width: 46px; height: 46px; font-size: 18px; border-radius: 10px; }
    .stat-number { font-size: 26px; }
    .stat-suffix { font-size: 20px; }
    .stat-label { font-size: 12px; }

    .service-image { display: none; }
    .service-info { padding: 22px 20px 22px; }
    .service-info h3 { font-size: 21px; }
    .fleet-features-grid { grid-template-columns: repeat(2, 1fr); }

    /* Why section: single column on mobile */
    .why-section { padding: 70px 0; }
    .why-grid { grid-template-columns: 1fr; gap: 16px; }
    .why-card { padding: 28px 22px 24px; }
    .why-icon { width: 54px; height: 54px; font-size: 20px; margin-bottom: 16px; }
    .why-card h3 { font-size: 18px; }
    .why-card p { font-size: 14px; }

    /* FAQ: compact on mobile */
    .faq-section { padding: 70px 0; }
    .faq-list { gap: 12px; }
    .faq-item { padding: 20px 22px; }
    .faq-item h3 { font-size: 16px; }
    .faq-item p { font-size: 14px; }

    .services-section, .fleet-section, .process-section { padding: 70px 0; }
    .quote-section { padding: 80px 0; }
    .quote-form-wrap { padding: 28px 20px; }
    .process-step { max-width: 100%; }

    /* FIX: form-row stacks to single column on mobile — critical for iOS */
    .form-row {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .form-row .form-group {
        margin-bottom: 18px;
        width: 100%;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        max-width: 100%;
        -webkit-appearance: none;
        appearance: none;
    }

    .cta-content h2 { font-size: 34px; }
    .cta-content p { font-size: 16px; margin-bottom: 32px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn-modern { width: 100%; max-width: 340px; justify-content: center; }
    .cta-banner { padding: 80px 0; }

    /* Hero mini-carousel: nearly full width on mobile */
    .fleet-carousel-wrapper { max-width: 100%; width: 100%; }
    .carousel-scene { min-height: 380px; }
    .carousel-track { min-height: 380px; }
    .bus-img-wrap { padding: 20px 16px 8px; min-height: 170px; }
    .bus-png { max-height: 170px; }
    .bus-card-info { padding: 14px 18px 18px; }
    .bus-name { font-size: 17px; margin-bottom: 9px; }
    .bus-specs { gap: 6px; }
    .bus-specs span { font-size: 11px; padding: 3px 8px; }

    /* Fleet 3D: fluid, full-width active card */
    .fleet-3d-stage { min-height: 440px; }
    .fleet-3d-track { min-height: 440px; }
    .fleet-card {
        width: min(340px, 88vw);
        margin-left: calc(min(340px, 88vw) / -2);
        border-radius: 18px;
    }
    .fleet-card--prev {
        transform: translateX(calc(min(340px, 88vw) * -0.58))
                   translateZ(-90px) rotateY(16deg) scale(0.76);
        opacity: 0.3;
    }
    .fleet-card--next {
        transform: translateX(calc(min(340px, 88vw) * 0.58))
                   translateZ(-90px) rotateY(-16deg) scale(0.76);
        opacity: 0.3;
    }
    .fleet-card-img { height: 200px; }
    .fleet-card-img img { max-height: 180px; }
    .fleet-card-overlay { padding: 16px 20px 20px; }
    .fleet-card-overlay h3 { font-size: 20px; margin-bottom: 10px; }
    .fleet-card-desc { font-size: 13px; }
    .fleet-nav { display: none; }
    .fleet-dots { bottom: -46px; }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .hero-title { font-size: 30px; }
    .section-title { font-size: 26px; }
    .cta-content h2 { font-size: 28px; }
    .section-description { font-size: 15px; }
    .btn-modern { padding: 14px 24px; font-size: 14px; }
    .btn-large { padding: 16px 28px; font-size: 15px; }
    .service-info h3 { font-size: 20px; }
    .fleet-features-grid { grid-template-columns: 1fr 1fr; }

    .why-card { padding: 22px 18px 20px; }

    .faq-item { padding: 18px 18px; }
    .faq-item h3 { font-size: 15.5px; }

    /* Hero mini-carousel fully fills width on small phones */
    .carousel-scene { min-height: 340px; }
    .carousel-track { min-height: 340px; }
    .bus-img-wrap { min-height: 150px; }
    .bus-png { max-height: 145px; }

    /* Stats single column */
    .stats-grid { grid-template-columns: 1fr; }

    /* Fleet 3D: push active card wider */
    .fleet-card {
        width: min(300px, 92vw);
        margin-left: calc(min(300px, 92vw) / -2);
    }
    .fleet-card--prev {
        transform: translateX(calc(min(300px, 92vw) * -0.55))
                   translateZ(-70px) rotateY(12deg) scale(0.72);
        opacity: 0.2;
    }
    .fleet-card--next {
        transform: translateX(calc(min(300px, 92vw) * 0.55))
                   translateZ(-70px) rotateY(-12deg) scale(0.72);
        opacity: 0.2;
    }
    .fleet-3d-stage { min-height: 420px; }
    .fleet-3d-track { min-height: 420px; }

    /* Quote form tighter on small phones */
    .quote-form-wrap { padding: 22px 16px; }
    .qt-title { font-size: 28px; }
    .qt-phone-link { padding: 16px 18px; gap: 12px; }
    .qt-phone-num { font-size: 18px; }
}
/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 80px 0; background: var(--warm-cream); }

.rating-summary {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-top: 12px;
}
.rating-stars { color: var(--primary-orange); font-size: 1.2rem; }
.rating-text { color: var(--medium-gray); font-size: 0.95rem; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; margin-top: 40px;
}
.testimonial-card {
    background: var(--sand); border-radius: 12px;
    padding: 28px; box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(255, 107, 53, 0.18);
    display: flex; flex-direction: column; gap: 14px;
}
.testimonial-card .testimonial-stars { color: var(--primary-orange); font-size: 0.95rem; }
.testimonial-text { color: var(--dark-gray); font-size: 0.97rem; line-height: 1.6; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.testimonial-avatar { font-size: 2rem; color: var(--sand-dark); }
.testimonial-name { font-weight: 600; font-size: 0.95rem; color: var(--primary-earth); }
.testimonial-meta { font-size: 0.82rem; color: var(--medium-gray); margin-top: 2px; }
.testimonial-meta .fab { color: #4285F4; }

.testimonials-cta { text-align: center; margin-top: 36px; }
.btn-outline {
    border: 2px solid currentColor; background: transparent;
    color: var(--primary-orange);
    padding: 12px 28px; border-radius: 8px;
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 600; transition: all 0.2s;
}
.btn-outline:hover { background: var(--primary-orange); color: var(--white); }
/* =====================================================
   CHARTER v10.2 ADDITIONS — EXPANDED QUOTE FORM
   Append this block to the bottom of charter_v.css
   (or include as a separate stylesheet after it)
===================================================== */

/* ============================================================
   QUOTE SECTION — NEW MODULAR POSITION (right after hero)
   Overrides the original quote-section padding/layout so it
   sits tightly under the hero and reads as a natural next step.
============================================================ */
.quote-section--hero-attached {
    padding: 0;
    background: var(--primary-earth);
    position: relative;
    overflow: hidden;
    /* Wave/diagonal separator from hero */
    clip-path: none;
}
.quote-section--hero-attached .quote-bg-decor {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(255,107,53,0.14) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(255,107,53,0.08) 0%, transparent 40%);
    pointer-events: none;
}
.quote-section--hero-attached > .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 90px;
}

/* Full-bleed top accent line */
.quote-section--hero-attached::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-orange) 40%, var(--secondary-orange) 60%, transparent 100%);
}

/* ============================================================
   QUOTE LAYOUT OVERRIDE — wider form column
============================================================ */
.quote-layout--expanded {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 64px;
    align-items: start;
}

/* ============================================================
   TRUST PANEL (left column) — compact version
============================================================ */
.quote-trust--compact .qt-badge {
    width: 58px;
    height: 58px;
    font-size: 22px;
    margin-bottom: 20px;
}
.quote-trust--compact .qt-title {
    font-size: 32px;
    margin-bottom: 14px;
}
.quote-trust--compact .qt-sub {
    font-size: 15px;
    margin-bottom: 28px;
}
.quote-trust--compact .qt-features {
    margin-bottom: 32px;
    gap: 11px;
}
.quote-trust--compact .qt-feat {
    font-size: 14.5px;
}

/* Divider between trust features and phone link */
.qt-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 28px 0;
}

/* Info block (address / hours) under phone link */
.qt-info-block {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.qt-info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.45);
    font-size: 13.5px;
    line-height: 1.5;
}
.qt-info-row i {
    color: var(--primary-orange);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}
.qt-info-row a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.qt-info-row a:hover { color: var(--primary-orange); }

/* ============================================================
   QUOTE FORM WRAP — expanded style
============================================================ */
.quote-form-wrap--expanded {
    background: var(--warm-cream);
    border-radius: 20px;
    padding: 44px 48px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.45);
    border: 1.5px solid rgba(255, 107, 53, 0.15);
    min-width: 0;
    width: 100%;
}

/* Required-field notice at the top of the form */
.form-required-note {
    font-size: 12.5px;
    color: var(--medium-gray);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid rgba(255,107,53,0.1);
}
.form-required-note .req { color: var(--primary-orange); }

/* ============================================================
   FORM SECTION HEADERS
   Groups related fields visually into named blocks
============================================================ */
.form-section {
    margin-bottom: 28px;
}
.form-section + .form-section {
    padding-top: 24px;
    border-top: 1.5px solid rgba(255,107,53,0.1);
}
.form-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.form-section-header i {
    width: 32px;
    height: 32px;
    background: rgba(255,107,53,0.12);
    border: 1.5px solid rgba(255,107,53,0.22);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--primary-orange);
    flex-shrink: 0;
}
.form-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-earth);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================================
   FORM GRID UTILITIES
============================================================ */
.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
    min-width: 0;
}
.form-row-address {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    min-width: 0;
}
.form-row-address-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 120px;
    gap: 16px;
    min-width: 0;
    margin-top: 0;
}
.form-group--full {
    grid-column: 1 / -1;
}

/* ============================================================
   RADIO BUTTON GROUPS (trip type, overnight)
============================================================ */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.radio-option {
    position: relative;
    flex: 1;
    min-width: 140px;
}
.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.radio-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--sand);
    border: 1.5px solid rgba(255,107,53,0.2);
    border-radius: 10px;
    font-size: 14.5px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--t);
    margin-bottom: 0;
    letter-spacing: 0;
    user-select: none;
}
.radio-option label i {
    font-size: 14px;
    color: var(--medium-gray);
    transition: color 0.2s;
}
.radio-option input[type="radio"]:checked + label {
    background: rgba(255,107,53,0.1);
    border-color: var(--primary-orange);
    color: var(--primary-earth);
    font-weight: 600;
}
.radio-option input[type="radio"]:checked + label i {
    color: var(--primary-orange);
}
.radio-option label:hover {
    border-color: var(--secondary-orange);
    background: rgba(255,107,53,0.06);
}

/* Small radio group (yes/no) */
.radio-group--sm .radio-option {
    min-width: 90px;
    flex: 0 0 auto;
}
.radio-group--sm .radio-option label {
    padding: 10px 14px;
    font-size: 13.5px;
}

/* ============================================================
   TIME INPUT ROW
============================================================ */
.time-input-row {
    display: grid;
    grid-template-columns: 1fr 80px 80px;
    gap: 10px;
    align-items: end;
    min-width: 0;
}
.time-input-row .form-group { margin-bottom: 0; }

/* ============================================================
   CONDITIONAL SECTIONS (shown/hidden by JS)
============================================================ */
.conditional-section {
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
    max-height: 600px;
    opacity: 1;
}
.conditional-section.hidden-field {
    max-height: 0 !important;
    opacity: 0;
    pointer-events: none;
}

/* ============================================================
   FILE UPLOAD DROP ZONE
============================================================ */
.file-dropzone {
    position: relative;
    border: 2px dashed rgba(255,107,53,0.3);
    border-radius: 12px;
    background: var(--sand);
    transition: var(--t);
    cursor: pointer;
    overflow: hidden;
}
.file-dropzone:hover,
.file-dropzone.drag-over {
    border-color: var(--primary-orange);
    background: rgba(255,107,53,0.06);
}
.file-dropzone.has-file {
    border-style: solid;
    border-color: var(--sage-green);
    background: rgba(107,158,90,0.06);
}
.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 20px;
    cursor: pointer;
    text-align: center;
}
.file-upload-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,107,53,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-orange);
    transition: var(--t);
}
.has-file .file-upload-icon {
    background: rgba(107,158,90,0.15);
    color: var(--sage-green);
}
.file-upload-text {
    font-size: 13.5px;
    color: var(--dark-gray);
    font-weight: 500;
    line-height: 1.4;
}
.file-upload-hint {
    font-size: 12px;
    color: var(--medium-gray);
}
/* Hide the actual file input visually */
.file-dropzone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

/* ============================================================
   SPECIAL REQUESTS TEXTAREA
============================================================ */
.form-group textarea.special-requests {
    min-height: 100px;
    resize: vertical;
}
.char-count {
    font-size: 11.5px;
    color: var(--medium-gray);
    text-align: right;
    margin-top: 5px;
}

/* ============================================================
   FORM SUBMIT BUTTON — FULL WIDTH CENTERED
============================================================ */
.form-submit-row {
    padding-top: 10px;
}
.form-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--medium-gray);
    margin-top: 12px;
    line-height: 1.5;
}
.form-note a { color: var(--primary-orange); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE — EXPANDED QUOTE FORM
============================================================ */
@media (max-width: 1200px) {
    .quote-layout--expanded {
        grid-template-columns: 300px 1fr;
        gap: 48px;
    }
    .quote-form-wrap--expanded { padding: 36px 36px; }
}

@media (max-width: 960px) {
    .quote-layout--expanded {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .quote-trust--compact .qt-title { font-size: 28px; }
    .quote-form-wrap--expanded { padding: 32px 28px; }
    .form-row-3 { grid-template-columns: 1fr 1fr; }
    .form-row-address-2 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .quote-section--hero-attached > .container {
        padding-top: 56px;
        padding-bottom: 64px;
    }
    .quote-form-wrap--expanded { padding: 24px 18px; }
    .form-row,
    .form-row-3,
    .form-row-address,
    .form-row-address-2 {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .form-row .form-group,
    .form-row-3 .form-group,
    .form-row-address .form-group,
    .form-row-address-2 .form-group {
        margin-bottom: 16px;
        width: 100%;
    }
    .radio-option { min-width: 0; flex: 1 1 calc(50% - 6px); }
    .time-input-row { grid-template-columns: 1fr 1fr; }
    .time-input-row .form-group:first-child { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
    .radio-option { flex: 1 1 100%; }
    .time-input-row { grid-template-columns: 1fr 1fr; }
    .quote-form-wrap--expanded { padding: 20px 14px; border-radius: 14px; }
    .quote-section--hero-attached > .container {
        padding-top: 44px;
        padding-bottom: 50px;
    }
}
