/* CSS Reset */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    color: #333;
    background-color: #e5e5e5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: #050505;
}

/* Top Announcement Banner */
.top-banner {
    background-color: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #d1d5db;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 40px;
    opacity: 1;
    overflow: hidden;
}

.header.banner-hidden .top-banner {
    max-height: 0;
    padding: 0;
    opacity: 0;
    border-bottom: 0px solid transparent;
}

.top-banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.top-banner-ticker {
    width: 100%;
}

.ticker-track {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hide duplicate content on desktop */
.ticker-duplicate {
    display: none;
}

@media screen and (max-width: 768px) {
    .top-banner-ticker {
        overflow: hidden;
        white-space: nowrap;
        position: relative;
    }
    
    .ticker-track {
        display: inline-flex;
        flex-wrap: nowrap;
        white-space: nowrap;
        animation: marqueeTicker 24s linear infinite;
    }
    
    .ticker-content {
        flex-wrap: nowrap;
    }
    
    .ticker-duplicate {
        display: inline-flex;
    }

    .top-banner-ticker:hover .ticker-track {
        animation-play-state: paused;
    }
}

.top-banner-label {
    color: #ff3333;
    font-weight: 700;
}

.dot {
    color: #ff3333;
}

@keyframes marqueeTicker {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Main Navigation Bar */
.main-nav-bar {
    height: 80px;
    display: flex;
    align-items: center;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo a {
    text-decoration: none;
}

.logo-placeholder {
    color: #fff;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: #ff0000;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.desktop-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 32px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.nav-link:hover {
    color: #ffffff;
}

.header.scrolled .nav-link {
    color: #ffffff;
}

.header.scrolled .nav-link:hover {
    color: #ff3333;
}

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background-color: #ff0000;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    border: 2px solid #ff0000;
}

.btn-primary:hover {
    background-color: #e60000;
    border-color: #e60000;
}

.btn-primary:active {
    transform: scale(0.98);
}

/* Secondary CTA (Hero Outline) */
.btn-secondary {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.btn-secondary:active {
    transform: scale(0.98);
}

/* Navbar CTA - Solid white high-converting phone button */
.btn-header-cta {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #111111;
    padding: 9px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    transition: all 0.2s ease;
}

.btn-header-cta:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.header.scrolled .btn-header-cta {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #111111;
}

.header.scrolled .btn-header-cta:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: #000000;
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #111111;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
}

.mobile-nav-link:hover {
    color: #ff0000;
}

.mobile-btn {
    margin-top: 10px;
    display: block;
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('hero.webp') no-repeat center 20% / cover;
    margin-top: 0;
    overflow: hidden;
    padding-top: 110px;
    padding-bottom: 90px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 5px 14px;
    border-radius: 9999px;
    color: #f3f4f6;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    white-space: nowrap;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-badge svg {
    color: #ff3333;
    flex-shrink: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    padding: 20px 0;
}

.hero-title {
    color: #ffffff;
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1.2px;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.95), 0 2px 4px rgba(0, 0, 0, 0.85);
    text-wrap: balance;
}

.hero-subtitle {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 36px;
    line-height: 1.6;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.85);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-arrow {
    transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-microcopy {
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-shadow: 0 2px 6px rgba(0,0,0,1);
    margin-top: 18px;
    margin-bottom: 44px;
}

.microcopy-icon {
    font-size: 12px;
}

/* Hero Trust Badges */
.hero-trust {
    margin-top: 14px;
}

.trust-title {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.trust-divider {
    color: #ff0000;
    font-weight: 800;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 780px;
    margin: 0 auto;
}

.trust-logo-card {
    background: #ffffff;
    padding: 6px 10px;
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    min-width: 64px;
    transition: transform 0.2s ease;
}

.trust-logo-card:hover {
    transform: translateY(-2px);
}

.trust-badge-img {
    height: 38px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    display: block;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

/* Torn Edge / Wave Shape Divider */
.hero-shape-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-shape-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 90px;
}

.shape-fill {
    fill: #f4f5f8;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    background-color: #f4f5f8;
    padding: 32px 0 64px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ff0000;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #475569;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background-color: #f4f5f8;
    padding: 90px 0;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 68px auto;
}

.about-title {
    font-size: 2.65rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
    text-wrap: balance;
}

.about-mission {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: -0.2px;
    margin: 0 auto;
    max-width: 780px;
    line-height: 1.6;
    text-wrap: balance;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: flex-start;
}

.about-visual {
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
}

.about-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.about-photo-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.94);
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    backdrop-filter: blur(6px);
    border-left: 3px solid #ff0000;
}

.badge-accent {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.badge-stat {
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 600;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: transparent;
    color: #ff0000;
    flex-shrink: 0;
    margin-top: 1px;
}

.pillar-text {
    flex: 1;
}

.pillar-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
    letter-spacing: -0.2px;
}

.pillar-desc {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #475569;
    margin: 0;
}

@media screen and (max-width: 860px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .about-visual {
        min-height: 260px;
        max-height: 320px;
    }
    .about-title {
        font-size: 2rem;
    }
}

/* Standalone Social Proof Section */
.testimonial-section {
    background-color: #ffffff;
    border: none;
    padding: 80px 0;
}

.testimonial-card {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 14px;
}

.testimonial-quote {
    font-size: 1.22rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.6;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.testimonial-author {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Frictionless Lead Capture / Rapid Quote Section (Minimalist Redesign)
   ========================================================================== */
.quote-section {
    background-image: linear-gradient(rgba(248, 250, 252, 0.88), rgba(248, 250, 252, 0.88)), url('hero.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #0f172a;
    padding: 100px 0 120px 0;
    position: relative;
    z-index: 3;
}

.quote-container-minimal {
    max-width: 800px;
    margin: 0 auto;
}

.quote-header-minimal {
    text-align: center;
    margin-bottom: 56px;
}

.quote-heading-minimal {
    font-size: 2.65rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}

.quote-desc-minimal {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    color: #475569;
    max-width: 780px;
    margin: 0 auto;
    text-wrap: balance;
}

.quote-form-wrapper-minimal {
    background: #ffffff !important;
    border: 1px solid #e2e8f0;
    padding: 44px;
    position: relative;
    border-radius: 0;
}

.fleet-quote-form-minimal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grid-minimal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-minimal {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-minimal label {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.2px;
}

.form-group-minimal .req {
    color: #ff0000;
}

.form-group-minimal input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background-color: #ffffff;
    color: #0f172a;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group-minimal input:focus {
    outline: none;
    border-color: #0f172a;
    background-color: #ffffff;
    box-shadow: none;
}

/* Multi-step Form Progress Bar (Subtle & Minimalist) */
.form-step-progress {
    margin-bottom: 28px;
}

.progress-steps-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.step-label-item {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.2px;
    transition: all 0.25s ease;
}

.step-label-item.active {
    color: #475569;
    font-weight: 700;
}

.progress-bar-bg {
    width: 100%;
    height: 2px;
    background-color: #f1f5f9;
    border-radius: 99px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: #64748b;
    border-radius: 99px;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-step-panel {
    animation: fadeInStep 0.25s ease-out;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-panel-title {
    font-size: 1.45rem !important; /* ~23px: Dominant heading inside card, distinctly smaller than 2.65rem section title */
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -0.5px;
    margin-bottom: 18px !important;
    display: block;
    line-height: 1.25;
}

/* Unified Step 2 Context Header */
.step-2-unified-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.step-2-unified-header .step-panel-title {
    margin-bottom: 0 !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    line-height: 1.3;
}

.service-inline-name {
    color: #ff0000;
    font-weight: 800;
}

.btn-inline-change {
    background: none;
    border: none;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: underline;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.btn-inline-change:hover {
    color: #ff0000;
    background-color: #fff5f5;
}

/* Service Pills with Visible Custom Radio */
.form-group-pills {
    margin-bottom: 24px;
}

.service-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.service-pill {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    position: relative;
}

.service-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    pointer-events: none;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    margin-right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #ffffff;
    transition: all 0.2s ease;
}

.custom-radio::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ff0000;
    transform: scale(0);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-pill:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.service-pill:hover .custom-radio {
    border-color: #94a3b8;
}

.service-pill input[type="radio"]:checked ~ .custom-radio {
    border-color: #ff0000;
    background: #ffffff;
}

.service-pill input[type="radio"]:checked ~ .custom-radio::after {
    transform: scale(1);
}

.service-pill:has(input[type="radio"]:checked) {
    border-color: #ff0000;
    background: #fff5f5;
}

.service-pill input[type="radio"]:checked ~ .pill-label {
    color: #ff0000;
    font-weight: 700;
}

.pill-label {
    font-size: 1rem; /* 16px */
    font-weight: 700;
    color: #0f172a;
    transition: color 0.2s ease;
    line-height: 1.25;
}

.step-1-hint {
    font-size: 13.5px;
    color: #64748b;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 0;
    font-weight: 500;
}

/* Form Action Group & Trust Signal */
.form-action-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.btn-submit-minimal {
    width: 100%;
    padding: 16px 24px;
    font-size: 16.5px;
    font-weight: 800;
    background-color: #ff0000;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-submit-minimal:hover {
    background-color: #d60000;
}

.btn-submit-minimal:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.7;
}

.quote-trust-microcopy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13.5px;
    color: #64748b;
    font-weight: 600;
    margin: 4px auto 0 auto;
    line-height: 1.4;
    max-width: 100%;
    text-align: center;
}

.quote-trust-microcopy svg {
    color: #10b981;
    flex-shrink: 0;
}


/* Success State Message Minimal (On-Brand) */
.form-success-minimal {
    text-align: center;
    padding: 36px 12px;
}

.success-icon-minimal {
    width: 58px;
    height: 58px;
    background: #f8fafc;
    border: 2px solid #0f172a;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.success-icon-minimal svg {
    color: #0f172a;
    stroke: #0f172a;
}

.form-success-minimal h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.form-success-minimal p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.btn-reset-minimal {
    background-color: #0f172a;
    border: 1.5px solid #0f172a;
    color: #ffffff;
    font-size: 14px;
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-reset-minimal:hover {
    background-color: #1e293b;
    border-color: #1e293b;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .quote-form-col,
    .quote-info-col {
        width: 100%;
    }

    .quote-heading {
        font-size: 1.95rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }
    .hero-subtitle {
        font-size: 1.15rem;
    }
}

@media screen and (max-width: 768px) {
    .quote-section {
        padding: 50px 0 70px 0;
    }

    .quote-form-card {
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .quote-heading {
        font-size: 1.65rem;
    }

    .form-header h3 {
        font-size: 1.45rem;
    }

    .main-nav-bar {
        height: 56px;
    }

    .logo-img {
        height: 42px;
    }

    .desktop-nav, .header-action {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .hero {
        align-items: center;
        padding-top: 120px;
        padding-bottom: 100px;
        min-height: 100vh;
    }

    .hero-badge {
        font-size: 11.5px;
        padding: 4px 11px;
        gap: 6px;
        margin-bottom: 14px;
    }

    .hero-badge svg {
        width: 13px;
        height: 13px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 14px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.5;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }

    .hero-cta-group {
        gap: 12px;
        margin-bottom: 28px;
    }

    .top-banner {
        font-size: 11px;
        padding: 5px 0;
    }

    .top-banner-label {
        display: none;
    }

    .top-banner-items {
        gap: 6px;
    }

    .top-banner-container {
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        padding: 0 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .top-banner-container::-webkit-scrollbar {
        display: none;
    }

    .hero-shape-divider svg {
        height: 50px;
    }

    .form-grid-minimal {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-group-minimal[style*="grid-column: span 2;"] {
        grid-column: span 1 !important;
    }

    .service-pills {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .quote-heading-minimal {
        font-size: 2rem;
    }

    .quote-form-wrapper-minimal {
        padding: 24px 20px;
    }
}

@media screen and (max-width: 480px) {
    .main-nav-bar {
        height: 50px;
    }

    .logo-img {
        height: 36px;
    }

    .hero {
        padding-top: 110px;
        padding-bottom: 85px;
    }

    .hero-badge {
        font-size: 10.5px;
        padding: 3px 9px;
        gap: 5px;
        margin-bottom: 10px;
        max-width: 95%;
    }

    .hero-badge svg {
        width: 12px;
        height: 12px;
    }

    .hero-title {
        font-size: 1.55rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        padding: 0 12px;
    }

    .hero-cta-group .btn {
        width: 100%;
    }
    
    .hero-shape-divider svg {
        height: 40px;
    }

    .trust-title {
        font-size: 11px;
        letter-spacing: 0.5px;
        line-height: 1.4;
        padding: 0 8px;
    }

    .trust-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        max-width: 340px;
        margin: 0 auto;
        padding: 0 10px;
    }

    .trust-logo-card {
        height: 44px;
        width: 100%;
        min-width: 0;
        padding: 4px 6px;
    }

    .trust-badge-img {
        height: 32px;
        max-width: 100%;
        object-fit: contain;
    }

    .quote-form-wrapper-minimal {
        padding: 24px 16px;
    }

    .btn-submit-minimal {
        font-size: 13.5px;
        letter-spacing: 0.2px;
        padding: 12px 14px;
    }
}

/* ==========================================================================
   Services & Fleet Capabilities Section (Alternating Rows)
   ========================================================================== */
.services-section {
    background-color: #ffffff;
    padding: 90px 0 160px 0;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    max-width: 1080px;
    margin: 0 auto 68px auto;
}

.section-tag {
    display: inline-block;
    color: #ff0000;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.services-title {
    font-size: clamp(1.9rem, 2.75vw, 2.65rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
    text-wrap: balance;
}

.services-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    color: #475569;
    max-width: 960px;
    margin: 0 auto;
    text-wrap: balance;
}

/* Alternating Row Layout for Core Services (Unboxed Editorial) */
.services-rows-container {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-bottom: 80px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.service-row:hover {
    box-shadow: none;
}

.service-row.service-row-reverse {
    grid-template-columns: 1fr 1fr;
}

.service-row.service-row-reverse .service-row-visual {
    order: 1;
}

.service-row.service-row-reverse .service-row-content {
    order: 2;
}

.service-row-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-row-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.6px;
    line-height: 1.15;
}

.service-row-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.service-specs-block {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 4px;
}

.specs-heading {
    display: block;
    font-size: 11.5px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.9px;
    margin-bottom: 10px;
}

.service-specs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.service-specs-list li {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-specs-list li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #ff0000;
    flex-shrink: 0;
}

.service-row-action {
    padding-top: 8px;
}

.service-action-link {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ff0000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.service-action-link:hover {
    color: #cc0000;
    transform: translateX(3px);
}

.service-row-visual {
    width: 100%;
}

.service-visual-box {
    position: relative;
    background: #0f172a;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 10;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) brightness(0.95);
    transition: transform 0.4s ease;
}

.service-row:hover .service-img {
    transform: scale(1.03);
}

/* Materials Handled Visual Marquee (Full Device Width & Crisp Light Mode) */
.materials-matrix-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #f8fafc;
    border-top: none;
    border-bottom: none;
    padding: 72px 0 80px 0;
    margin-top: 64px;
    margin-bottom: 80px;
    overflow: hidden;
}

.materials-matrix-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 68px auto;
    padding: 0 24px;
}

.matrix-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 12px;
}

.matrix-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    color: #475569;
    max-width: 780px;
    margin: 0 auto;
    text-wrap: balance;
}

/* Desktop Showcase: Single Large Editorial Row */
.desktop-materials-marquee {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 12px 0;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.desktop-materials-marquee:active {
    cursor: grabbing;
}

.desktop-materials-marquee .marquee-item {
    padding: 0 12px;
}

.desktop-materials-marquee .material-card {
    position: relative;
    width: 290px;
    height: 380px;
    background: #0f172a;
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.desktop-materials-marquee .material-card:hover {
    transform: none;
    box-shadow: none;
}

.desktop-materials-marquee .material-card-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: auto;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    border: none;
    border-left: 3px solid #ff0000;
    border-radius: 0;
}

.desktop-materials-marquee .material-card-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    white-space: nowrap;
}

/* Mobile Showcase: 2 Compact Alternating Rows (Hidden on Desktop) */
.mobile-materials-marquee-rows {
    display: none;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.material-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.03) brightness(0.98);
    pointer-events: none;
}

.material-card:hover .material-card-img {
    transform: none;
}

/* Mobile Responsive Breakpoint: Switch to 2 Compact Staggered Rows */
@media (max-width: 768px) {
    .desktop-materials-marquee {
        display: none !important;
    }

    .mobile-materials-marquee-rows {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-materials-marquee-rows .materials-marquee {
        width: 100%;
        overflow: hidden;
        position: relative;
        padding: 2px 0;
        cursor: grab;
        user-select: none;
        -webkit-user-select: none;
    }

    .mobile-materials-marquee-rows .materials-marquee:active {
        cursor: grabbing;
    }

    .mobile-materials-marquee-rows .marquee-item {
        padding: 0 6px;
    }

    .mobile-materials-marquee-rows .material-card {
        position: relative;
        width: 175px;
        height: 110px;
        background: #0f172a;
        border: none;
        box-shadow: none;
        overflow: hidden;
    }

    .mobile-materials-marquee-rows .material-card-overlay {
        position: absolute;
        bottom: 10px;
        left: 10px;
        width: auto;
        padding: 4px 10px;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        border: none;
        border-left: 2px solid #ff0000;
        border-radius: 0;
    }

    .mobile-materials-marquee-rows .material-card-label {
        font-size: 0.8rem;
        font-weight: 800;
        color: #0f172a;
        display: flex;
        align-items: center;
        gap: 0;
        margin: 0;
        white-space: nowrap;
    }

    .materials-matrix-wrapper {
        padding: 48px 0;
        margin-top: 40px;
        margin-bottom: 48px;
    }
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.materials-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Services Action Banner */
.services-action-banner {
    position: relative;
    border: none;
    border-radius: 0;
    padding: 64px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 120px;
    overflow: hidden;
    z-index: 1;
}

/* Parallax Background Image Layer */
.services-action-banner::before {
    content: "";
    position: absolute;
    top: -15%;
    left: -5%;
    width: 110%;
    height: 130%;
    background-image: url('./guaranteed-section.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: translateY(var(--parallax-y, 0px));
    will-change: transform;
}

/* Static Overlay Tint - 100% full coverage, lighter so photo is visible */
.services-action-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.55));
    z-index: -1;
    pointer-events: none;
}

.banner-content,
.banner-cta-group {
    position: relative;
    z-index: 2;
}

.banner-content {
    max-width: 850px;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.banner-desc {
    font-size: 1.05rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
}

.banner-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.banner-btn {
    padding: 12px 22px;
    font-size: 14.5px;
    font-weight: 800;
    border-radius: 4px;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

/* Responsive adjustments for Services Section */
@media screen and (max-width: 1024px) {
    .service-row,
    .service-row.service-row-reverse {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0;
        margin-bottom: 48px;
    }

    .service-row .service-row-visual,
    .service-row.service-row-reverse .service-row-visual {
        order: 1;
    }

    .service-row .service-row-content,
    .service-row.service-row-reverse .service-row-content {
        order: 2;
    }

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

@media screen and (max-width: 768px) {
    .service-row,
    .service-row.service-row-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0;
        margin-bottom: 64px;
    }

    .service-visual-box {
        aspect-ratio: 16 / 9;
    }

    .services-title {
        font-size: 1.85rem;
        margin-bottom: 40px;
    }

    .service-row-title {
        font-size: 1.75rem;
    }

    .services-section {
        padding: 60px 0 110px 0;
    }

    .materials-matrix-wrapper {
        padding: 28px 20px;
    }

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

    .services-action-banner {
        padding: 24px 20px;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 80px;
    }

    .banner-cta-group {
        width: 100%;
        flex-direction: column;
    }

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

@media screen and (max-width: 600px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 3rem;
    }

    .about-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
    background-color: #0f172a;
    color: #f8fafc;
    padding: 64px 0 0;
    font-size: 0.95rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    height: 48px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-link {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #7dd3fc;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: #ffffff;
}

.footer-bottom {
    background-color: #020617;
    padding: 24px 0;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ==========================================================================
   Mobile Sticky CTA
   ========================================================================== */
.d-mobile-only {
    display: none;
}

@media screen and (max-width: 768px) {
    .d-mobile-only {
        display: block;
    }

    .footer {
        padding-bottom: 72px; /* Extra padding so footer doesn't hide behind CTA when visible */
    }

    .mobile-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 12px 16px;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
        z-index: 9999;
        border-top: 1px solid #e2e8f0;
        transform: translateY(110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    }

    .mobile-sticky-cta.is-visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .sticky-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 6px;
    }
}

/* ==========================================================================
   Minimalist Form Responsiveness
   ========================================================================== */
@media screen and (max-width: 768px) {
    .quote-heading-minimal {
        font-size: 1.85rem;
    }
    
    .quote-form-wrapper-minimal {
        padding: 24px 16px;
    }

    .form-grid-minimal {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-grid-minimal .form-group-minimal:nth-child(3) {
        grid-column: span 1 !important;
    }

    .service-pills {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .step-panel-title {
        font-size: 1.2rem !important;
        margin-bottom: 14px !important;
    }
}

@media screen and (max-width: 480px) {
    .step-2-unified-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-bottom: 10px;
        margin-bottom: 18px;
    }

    .step-2-unified-header .step-panel-title {
        font-size: 1.05rem !important;
        line-height: 1.4;
    }

    .btn-inline-change {
        padding: 0;
        font-size: 12px;
        margin-top: -2px;
    }
}
