﻿/* =============================================
   NAVIQUE EXPRESS — HOMEPAGE STYLES
   Clean, consolidated, responsive
   ============================================= */

/* ── HERO SECTION ── */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background: url('/Content/images/cf46a1eaff.jpg.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 60, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
    color: #fff;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero-content p {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    margin-bottom: 24px;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--md-secondary);
    color: var(--md-on-secondary);
    padding: 12px 28px;
    border-radius: var(--md-shape-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--md-duration) var(--md-motion);
    box-shadow: var(--md-elevation-1);
}

.btn-hero-primary:hover {
    background: var(--md-secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--md-elevation-2);
    color: var(--md-on-secondary);
}

.btn-hero-secondary {
    border: 2px solid var(--md-secondary);
    color: var(--md-secondary);
    padding: 12px 28px;
    border-radius: var(--md-shape-full);
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    transition: all var(--md-duration) var(--md-motion);
}

.btn-hero-secondary:hover {
    background: var(--md-secondary);
    color: var(--md-on-secondary);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ── ESTIMATE SECTION ── */
.estimate-section {
    display: flex;
    flex-direction: column;
}

/* HERO AREA (background + bold text) */
.estimate-hero {
    position: relative;
    min-height: 45vh;
    background: url('/Content/images/Asset1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.estimate-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 50, 0.62);
}

.estimate-hero-text {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px;
    width: 100%;
}

.estimate-hero-text h2 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    text-align: left;
}

/* ORANGE BAR */
.estimate-bar {
    background: linear-gradient(135deg, #f7941d 0%, #e8742e 100%);
    width: 100%;
}

.estimate-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px 28px;
}

.estimate-bar,
.estimate-bar p,
.estimate-bar span,
.estimate-bar h4,
.estimate-bar strong {
    color: #fff;
}

/* City Label */
.estimate-top-row {
    margin-bottom: 16px;
}

.city-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.city-pin {
    font-size: 20px;
}

/* Vehicle Options Row */
.estimate-options-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vehicle-options {
    display: flex;
    gap: 16px;
    flex: 1;
}

/* Individual Vehicle Card */
.vehicle-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform var(--md-duration) var(--md-motion);
}

.vehicle-option:hover {
    transform: translateY(-4px);
}

.vehicle-box {
    width: 140px;
    height: 120px;
    background: #0b0f3f;
    border-radius: var(--md-shape-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.vehicle-box img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.vehicle-label {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}

/* Truck Icon */
.truck-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.truck-icon-wrap img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* CTA Circle */
.estimate-cta {
    width: 130px;
    height: 130px;
    min-width: 130px;
    background: #0b0f3f;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    gap: 2px;
    padding: 12px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(11, 15, 63, 0.5);
    transition: transform var(--md-duration) var(--md-motion),
        box-shadow var(--md-duration) var(--md-motion);
    flex-shrink: 0;
}

.estimate-cta h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.15;
}

.estimate-cta p {
    margin: 0;
    font-size: 11px;
    opacity: 0.8;
}

.estimate-cta:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 32px rgba(11, 15, 63, 0.6);
}

#vehiclePreview {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: var(--md-shape-md);
    background-color: var(--md-surface-dim);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .estimate-options-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .vehicle-options {
        justify-content: center;
        flex-wrap: wrap;
    }

    .vehicle-box {
        width: 120px;
        height: 100px;
    }

    .estimate-hero-text h2 {
        text-align: center;
    }

    .estimate-hero-text,
    .estimate-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .estimate-hero {
        min-height: 35vh;
    }

    .vehicle-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
    }

    .vehicle-box {
        width: 100%;
        height: 90px;
    }

    .estimate-cta {
        width: 110px;
        height: 110px;
        min-width: 110px;
    }

    .estimate-cta h4 {
        font-size: 14px;
    }

    .truck-icon-wrap {
        display: none;
    }
}


/* ── PLATFORM FEATURES ── */
.platform-features {
    background: var(--md-surface);
}

.platform-features .section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--md-primary);
}

.platform-features .section-subtitle {
    font-size: 15px;
    color: var(--md-on-surface-variant);
    margin-top: 8px;
}

/* Feature Card (split top/bottom) */
.feature-card {
    border-radius: var(--md-shape-xl);
    overflow: hidden;
    background: var(--md-surface-container);
    height: 100%;
    box-shadow: var(--md-elevation-1);
    transition: transform var(--md-duration) var(--md-motion),
        box-shadow var(--md-duration) var(--md-motion);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--md-elevation-3);
}

.feature-top {
    height: 120px;
    background: linear-gradient(135deg, var(--md-secondary), var(--md-secondary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-top i {
    font-size: 44px;
    color: #fff;
}

.feature-bottom {
    padding: 18px 16px 22px;
    text-align: center;
}

.feature-bottom h6 {
    font-size: 15px;
    font-weight: 600;
    color: var(--md-primary);
    margin-bottom: 6px;
}

.feature-bottom p {
    font-size: 13px;
    color: var(--md-on-surface-variant);
    margin: 0;
}

/* ── HOW IT WORKS ── */
.works-section {
    background: var(--md-surface);
}

.works-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--md-primary);
}

.works-subtitle {
    font-size: 15px;
    color: var(--md-on-surface-variant);
    margin-top: 8px;
}

.works-card {
    border-radius: var(--md-shape-xl);
    overflow: hidden;
    background: var(--md-surface-container);
    height: 100%;
    box-shadow: var(--md-elevation-1);
    transition: transform var(--md-duration) var(--md-motion),
        box-shadow var(--md-duration) var(--md-motion);
}

.works-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--md-elevation-3);
}

.works-top {
    height: 110px;
    background: linear-gradient(135deg, var(--md-secondary), var(--md-secondary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.works-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--md-primary);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.works-bottom {
    padding: 18px 16px 22px;
    text-align: center;
}

.works-bottom h6 {
    font-size: 15px;
    font-weight: 600;
    color: var(--md-primary);
    margin-bottom: 6px;
}

.works-bottom p {
    font-size: 13px;
    color: var(--md-on-surface-variant);
    margin: 0;
}

/* ── WHY CHOOSE ── */
.why-section {
    background: var(--md-surface);
}

.why-title {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--md-primary);
    margin-bottom: 6px;
}

.why-subtitle {
    font-size: 14px;
    color: var(--md-on-surface-variant);
    margin-bottom: 22px;
}

.why-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.why-pill {
    background: linear-gradient(135deg, var(--md-secondary), var(--md-secondary-dark));
    color: #fff;
    font-size: clamp(13px, 2vw, 16px);
    font-weight: 600;
    padding: 10px 18px;
    border-radius: var(--md-shape-sm);
    text-align: center;
    box-shadow: var(--md-elevation-1);
}

@media (max-width: 576px) {
    .why-pill-grid {
        grid-template-columns: 1fr;
    }
}

/* ── WHY CHOOSE SECTION (Business/VehicleOwner) ── */
.why-choose-section {
    background: var(--md-surface);
}

.features-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.feature-pill {
    background: linear-gradient(135deg, var(--md-secondary), var(--md-secondary-dark));
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--md-shape-full);
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--md-elevation-1);
    white-space: nowrap;
}

/* ── LOGISTICS SERVICES (5-card grid) ── */
.logistics-services {
    background: var(--md-surface);
    padding: 60px 0;
}

.ls-header {
    text-align: center;
    margin-bottom: 36px;
}

.ls-header h2 {
    font-weight: 700;
    color: var(--md-primary);
    margin-bottom: 6px;
}

.ls-header p {
    color: var(--md-on-surface-variant);
    font-size: 14px;
}

.ls-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.ls-card {
    background: var(--md-primary);
    border-radius: var(--md-shape-md);
    overflow: hidden;
    box-shadow: var(--md-elevation-2);
}

.ls-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.ls-body {
    padding: 14px;
    min-height: 120px;
    position: relative;
}

.ls-body h6 {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.ls-body p {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .8);
}

@media (max-width: 1200px) {
    .ls-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ls-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ls-grid {
        grid-template-columns: 1fr;
    }
}

/* ── VEHICLE GRID ── */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vehicle-card {
    background: var(--md-surface);
    border-radius: var(--md-shape-lg);
    overflow: hidden;
    box-shadow: var(--md-elevation-1);
    transition: transform var(--md-duration) var(--md-motion),
        box-shadow var(--md-duration) var(--md-motion);
    text-align: center;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--md-elevation-3);
}

.vehicle-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.vehicle-body {
    padding: 16px;
}

.vehicle-body h5 {
    font-weight: 600;
    color: var(--md-primary);
    margin-bottom: 6px;
    font-size: 15px;
}

.vehicle-body p {
    font-size: 13px;
    color: var(--md-on-surface-variant);
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 12px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--md-shape-md);
    background: var(--md-surface-container);
}

.card-content {
    padding: 16px;
}

.card-content h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
}

.card-content p {
    margin: 4px 0;
    font-size: 14px;
    color: var(--md-on-surface-variant);
}

.card-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
}

@media (max-width: 1200px) {
    .vehicle-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vehicle-grid {
        grid-template-columns: 1fr;
    }
}

/* ── VEHICLES SECTION (VehicleOwner) ── */
.vehicles-section {
    padding: 60px 0;
    background: var(--md-surface-dim);
}

.vehicles-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--md-primary);
}

.vehicles-subtitle {
    font-size: 15px;
    color: var(--md-on-surface-variant);
    margin-bottom: 32px;
}

/* ── PARTNERSHIP SECTION ── */
.partnership-section {
    background: var(--md-surface);
    padding: 60px 0;
}

.partnership-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--md-primary);
    margin-bottom: 32px;
}

.partnership-card {
    background: var(--md-surface);
    border-radius: var(--md-shape-lg);
    padding: 22px 16px;
    box-shadow: var(--md-elevation-1);
    height: 100%;
    text-align: center;
    transition: transform var(--md-duration) var(--md-motion);
}

.partnership-card:hover {
    transform: translateY(-4px);
}

.partnership-card p {
    font-size: 14px;
    font-weight: 600;
    color: var(--md-on-surface);
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: var(--md-shape-md);
    background: linear-gradient(135deg, var(--md-secondary), var(--md-secondary-dark));
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── WHY CHOOSE US (Business page) ── */
.why-choose-us {
    background: var(--md-surface-dim);
}

.choose-heading {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--md-primary);
}

.choose-subtext {
    color: var(--md-on-surface-variant);
    margin-top: 8px;
}

.choose-card {
    border-radius: var(--md-shape-md);
    overflow: hidden;
    box-shadow: var(--md-elevation-1);
    transition: transform var(--md-duration) var(--md-motion),
        box-shadow var(--md-duration) var(--md-motion);
    background: var(--md-surface);
}

.choose-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--md-elevation-3);
}

.card-top {
    background: linear-gradient(135deg, var(--md-secondary), var(--md-secondary-dark));
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-top .icon {
    font-size: 28px;
    color: #fff;
}

.card-bottom {
    background: var(--md-surface-container);
    padding: 14px 12px;
    text-align: center;
}

.card-bottom h6 {
    font-weight: 600;
    font-size: 14px;
    color: var(--md-primary);
    margin-bottom: 4px;
}

.card-bottom p {
    font-size: 12px;
    color: var(--md-on-surface-variant);
    margin: 0;
}

/* ── INDUSTRIES SECTION ── */
.industries-section {
    background: var(--md-surface-dim);
}

.industries-heading {
    text-align: center;
}

.section-heading {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--md-primary);
    margin-bottom: 0.5rem;
    position: relative;
}

.section-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--md-secondary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtext {
    font-size: 15px;
    color: var(--md-on-surface-variant);
    max-width: 520px;
    margin: 0.75rem auto 0;
}

/* Industry Pill (vertical list) */
.industry-pill {
    background: linear-gradient(180deg, var(--md-secondary), #6b3a7a 55%, #2b1d44);
    border-radius: var(--md-shape-xl);
    padding: 20px 0;
    width: 100%;
}

.pill-item {
    padding: 16px 22px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.pill-item.active {
    background: var(--md-primary);
    font-weight: 600;
}

/* Image Collage */
.image-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 110px;
    gap: 8px;
    border-radius: var(--md-shape-lg);
    overflow: hidden;
}

.image-collage img:nth-child(1) {
    grid-column: span 2;
}

.image-collage img:nth-child(3) {
    grid-row: span 2;
}

.image-collage img:nth-child(4) {
    grid-row: span 2;
}

.image-collage img:nth-child(7) {
    grid-column: span 2;
}

.image-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .image-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 100px;
    }
}

/* ── QUOTE SECTION (Business) ── */
.quote-section {
    background: var(--md-surface);
}

.quote-title {
    font-weight: 700;
    color: var(--md-primary);
    margin-bottom: 24px;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.quote-title .icon {
    color: var(--md-secondary);
    margin-right: 8px;
}

.quote-step {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--md-secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.quote-step h5 {
    margin: 0;
    font-weight: 600;
    color: var(--md-primary);
    font-size: 15px;
}

.quote-step p {
    margin: 4px 0 0;
    color: var(--md-on-surface-variant);
    font-size: 13px;
}

.quote-form-card {
    background: var(--md-surface);
    border-radius: var(--md-shape-lg);
    padding: 28px 24px;
    box-shadow: var(--md-elevation-2);
}

.quote-form-card h4 {
    font-weight: 700;
    color: var(--md-primary);
    margin-bottom: 20px;
}

.quote-form-card input,
.quote-form-card select,
.quote-form-card textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--md-outline-variant);
    border-radius: var(--md-shape-sm);
    font-family: var(--md-font);
    font-size: 14px;
    margin-bottom: 12px;
    outline: none;
    transition: border-color var(--md-duration);
}

.quote-form-card input:focus,
.quote-form-card select:focus,
.quote-form-card textarea:focus {
    border-color: var(--md-primary);
    box-shadow: 0 0 0 2px rgba(11, 31, 77, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 13px;
    background: var(--md-secondary);
    color: var(--md-on-secondary);
    border: none;
    border-radius: var(--md-shape-full);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--md-duration) var(--md-motion);
}

.submit-btn:hover {
    background: var(--md-secondary-dark);
    box-shadow: var(--md-elevation-2);
}

/* ── MAIN HEADING (Business) ── */
.main-heading {
    font-weight: 700;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--md-primary);
    margin-bottom: 10px;
}

/* ── SERVICE CARDS (other.css overlay style) ── */
.services-section {
    padding: 56px 20px;
    text-align: center;
    background: var(--md-surface);
}

.services-section h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 8px;
    color: var(--md-primary);
    font-weight: 700;
}

.services-section>p {
    font-size: 15px;
    color: var(--md-on-surface-variant);
    max-width: 720px;
    margin: 0 auto 32px;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.service-card {
    width: 230px;
    height: 155px;
    border-radius: var(--md-shape-lg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--md-elevation-1);
    cursor: pointer;
    transition: transform var(--md-duration) var(--md-motion),
        box-shadow var(--md-duration) var(--md-motion);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--md-elevation-3);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 31, 77, 0.15), rgba(11, 31, 77, 0.9));
    color: #fff;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
}

.overlay h3 {
    font-size: 14px;
    margin: 0 0 6px;
    font-weight: 600;
}

.overlay p {
    font-size: 11.5px;
    margin: 0;
    color: rgba(255, 255, 255, .75);
}

@media (max-width: 768px) {
    .service-card {
        width: 100%;
        max-width: 320px;
        height: 140px;
    }
}

/* ── PARTNER HERO (VehicleOwner) ── */
.partner-hero {
    position: relative;
    min-height: 500px;
    background: url('../images/cf46a1eaff.jpg.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.partner-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 60, 0.7);
    display: block;
    padding: 0;
}

.partner-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.hero-left {
    max-width: 480px;
    flex: 1;
    min-width: 280px;
}

.hero-left h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero-left h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-left p {
    font-size: 15px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-left ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.hero-left ul li {
    font-size: 14px;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
}

.hero-left ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--md-secondary);
    font-weight: 700;
}

.hero-form {
    background: var(--md-surface);
    border-radius: var(--md-shape-lg);
    padding: 28px 24px;
    box-shadow: var(--md-elevation-3);
    color: var(--md-on-surface);
    flex: 1;
    min-width: 300px;
    max-width: 480px;
}

.hero-form h3 {
    font-weight: 700;
    color: var(--md-primary);
    margin-bottom: 6px;
    font-size: 18px;
}

.hero-form>p {
    font-size: 13px;
    color: var(--md-on-surface-variant);
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--md-outline-variant);
    border-radius: var(--md-shape-sm);
    font-family: var(--md-font);
    font-size: 14px;
    outline: none;
    transition: border-color var(--md-duration);
}

.hero-form input:focus,
.hero-form select:focus {
    border-color: var(--md-primary);
}

.hero-form button {
    width: 100%;
    padding: 13px;
    background: var(--md-secondary);
    color: var(--md-on-secondary);
    border: none;
    border-radius: var(--md-shape-full);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    margin-top: 4px;
    transition: all var(--md-duration) var(--md-motion);
}

.hero-form button:hover {
    background: var(--md-secondary-dark);
    box-shadow: var(--md-elevation-2);
}

@media (max-width: 768px) {
    .partner-hero .container {
        flex-direction: column;
    }

    .hero-form {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ── HERO SECTION0 (coral banner — Business page) ── */
.hero-section0 {
    background-color: coral;
    padding: 5px 0;
}

/* ── NAVBAR overrides (ensure no extra spacing) ── */
.navbar {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 3px solid var(--md-secondary);
}

.navbar-nav .nav-link {
    color: var(--md-on-surface);
    font-weight: 500;
    transition: color var(--md-duration);
}

.navbar-nav .nav-link:hover {
    color: var(--md-secondary);
}

.navbar-nav .nav-link.active {
    color: var(--md-secondary) !important;
    font-weight: 600;
}

#mainNavbar .nav-link,
#mainNavbar .btn {
    color: var(--md-secondary) !important;
}