@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    --ncc-red: #e30613;
    --ncc-red-dark: #b9040e;
    --ncc-ink: #121417;
    --ncc-charcoal: #1d2025;
    --ncc-muted: #697079;
    --ncc-line: #e5e7eb;
    --ncc-surface: #ffffff;
    --ncc-warm: #f7f6f2;
    --ncc-cool: #f3f5f7;
    --ncc-dark: #101215;
    --ncc-container: 1240px;
    --ncc-radius: 22px;
    --ncc-radius-lg: 30px;
    --ncc-shadow: 0 22px 70px rgba(18,20,23,.09);
}

.ncc-home,
.ncc-home * {
    box-sizing: border-box;
}

.ncc-home {
    font-family: 'Manrope', sans-serif;
    color: var(--ncc-ink);
    background: var(--ncc-surface);
}

.ncc-home h1,
.ncc-home h2,
.ncc-home h3,
.ncc-home strong,
.ncc-home .ncc-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ncc-container {
    width: min(calc(100% - 40px), var(--ncc-container));
    margin-inline: auto;
}

.ncc-section {
    padding: 108px 0;
}

.ncc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ncc-red);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.ncc-eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: currentColor;
}

.ncc-eyebrow--light {
    color: #ff9ca3;
}

.ncc-section-head {
    max-width: 820px;
    margin-bottom: 44px;
}

.ncc-section-head--split {
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
}

.ncc-section-head--split > p {
    max-width: 470px;
    margin: 0 0 8px;
    color: var(--ncc-muted);
    line-height: 1.8;
}

.ncc-section h2,
.ncc-services-section h2,
.ncc-final-cta h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.3rem);
    line-height: 1;
    letter-spacing: -.045em;
    font-weight: 800;
}

.ncc-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: .92rem;
    font-weight: 700;
    transition: .2s ease;
}

.ncc-btn:hover {
    transform: translateY(-2px);
}

.ncc-btn--primary {
    color: #fff !important;
    background: var(--ncc-red);
    box-shadow: 0 14px 35px rgba(227,6,19,.22);
}

.ncc-btn--ghost {
    color: var(--ncc-ink) !important;
    background: rgba(255,255,255,.75);
    border: 1px solid #d9dde1;
}

.ncc-btn--dark {
    color: #fff !important;
    background: var(--ncc-dark);
}

.ncc-btn--small {
    min-height: 44px;
    padding: 0 18px;
    font-size: .84rem;
}

.ncc-btn--light {
    color: var(--ncc-dark) !important;
    background: #fff;
}

.ncc-btn--outline-light {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.3);
}

.ncc-text-link {
    color: var(--ncc-ink) !important;
    font-weight: 800;
    text-decoration: none !important;
}

/* HERO */
.ncc-hero {
    padding: 78px 0 0;
    background:
        radial-gradient(circle at 80% 24%, rgba(227,6,19,.075), transparent 28%),
        linear-gradient(180deg, #fbfbf8 0%, #f4f3ef 100%);
}

.ncc-hero__grid {
    min-height: 630px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 68px;
    align-items: center;
    padding-bottom: 104px;
}

.ncc-hero h1 {
    margin: 0;
    font-size: clamp(3.7rem, 7vw, 7.1rem);
    line-height: .87;
    letter-spacing: -.065em;
    font-weight: 800;
}

.ncc-hero h1 span {
    color: var(--ncc-red);
}

.ncc-hero__lead {
    max-width: 640px;
    margin: 28px 0 34px;
    color: #5f666f;
    font-size: 1.08rem;
    line-height: 1.85;
}

.ncc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ncc-hero__micro-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 32px;
    color: #5d646d;
    font-size: .84rem;
}

.ncc-hero__micro-trust span::before {
    content: "✓";
    color: var(--ncc-red);
    font-weight: 900;
    margin-right: 7px;
}

.ncc-hero__slider {
    position: relative;
}

.ncc-hero__halo {
    position: absolute;
    width: 82%;
    aspect-ratio: 1;
    border-radius: 50%;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(227,6,19,.14), rgba(227,6,19,.035) 54%, transparent 72%);
}

.ncc-slider-stage {
    min-height: 520px;
    position: relative;
    z-index: 2;
    border-radius: 32px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 34px 90px rgba(18,20,23,.10);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.ncc-hero-slide {
    position: absolute;
    inset: 0;
    padding: 28px 28px 26px;
    opacity: 0;
    transform: translateX(24px) scale(.99);
    pointer-events: none;
    transition: opacity .55s ease, transform .55s ease;
}

.ncc-hero-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.ncc-hero-slide__label {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(227,6,19,.08);
    color: var(--ncc-red);
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ncc-hero-slide img {
    width: 100%;
    height: 330px;
    margin-top: 12px;
    object-fit: contain;
    filter: drop-shadow(0 28px 24px rgba(0,0,0,.15));
}

.ncc-hero-slide__caption {
    padding-top: 18px;
    border-top: 1px solid rgba(18,20,23,.08);
}

.ncc-hero-slide__caption strong {
    display: block;
    font-size: 1.26rem;
    margin-bottom: 5px;
}

.ncc-hero-slide__caption span {
    display: block;
    color: var(--ncc-red);
    font-size: .82rem;
    font-weight: 700;
}

.ncc-hero-slide__caption p {
    margin: 8px 0 0;
    color: #707780;
    font-size: .86rem;
    line-height: 1.6;
}

.ncc-slider-controls {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

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

.ncc-slider-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    background: #c9cdd2;
    cursor: pointer;
    padding: 0;
}

.ncc-slider-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--ncc-red);
}

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

.ncc-slider-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid #d7dade;
    border-radius: 50%;
    background: #fff;
    color: var(--ncc-ink);
    cursor: pointer;
    font-size: 1rem;
}

.ncc-search-card {
    position: relative;
    z-index: 10;
    transform: translateY(50%);
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1fr auto;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--ncc-line);
    border-radius: 22px;
    box-shadow: var(--ncc-shadow);
}

.ncc-search-field {
    min-width: 0;
    padding: 9px 18px;
    border-right: 1px solid var(--ncc-line);
}

.ncc-search-field label {
    display: block;
    margin-bottom: 4px;
    color: #8b9198;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ncc-search-field input,
.ncc-search-field select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ncc-ink);
    font: inherit;
    font-weight: 700;
    font-size: .88rem;
}

.ncc-search-submit {
    min-width: 150px;
    border: 0;
    border-radius: 15px;
    background: var(--ncc-red);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    cursor: pointer;
}

/* SECTION BACKGROUNDS & LEGIBILITY */
.ncc-trust-strip {
    padding: 96px 0 44px;
    background: #fff;
}

.ncc-trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid var(--ncc-line);
    border-bottom: 1px solid var(--ncc-line);
}

.ncc-trust-item {
    padding: 28px;
    border-right: 1px solid var(--ncc-line);
}

.ncc-trust-item:last-child {
    border-right: 0;
}

.ncc-trust-item strong {
    display: block;
    margin-bottom: 7px;
    color: var(--ncc-ink);
}

.ncc-trust-item span {
    color: var(--ncc-muted);
    font-size: .84rem;
    line-height: 1.6;
}

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

.ncc-category-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.ncc-category-card {
    min-height: 282px;
    padding: 28px;
    border-radius: var(--ncc-radius);
    background: var(--ncc-warm);
    color: var(--ncc-ink) !important;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    border: 1px solid #ecebe6;
    transition: .25s ease;
}

.ncc-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(18,20,23,.07);
}

.ncc-category-card--dark {
    background: var(--ncc-dark);
    color: #fff !important;
    border-color: var(--ncc-dark);
}

.ncc-category-card__number {
    color: #979da4;
    font-size: .74rem;
    font-weight: 800;
}

.ncc-category-card h3 {
    margin: auto 0 10px;
    font-size: 1.4rem;
}

.ncc-category-card p {
    margin: 0 0 22px;
    color: #6c737c;
    line-height: 1.7;
    font-size: .88rem;
}

.ncc-category-card--dark p {
    color: #aeb4bb;
}

.ncc-category-card__price {
    color: var(--ncc-red);
    font-size: .84rem;
    font-weight: 800;
}

.ncc-category-card--dark .ncc-category-card__price {
    color: #ff9ca3;
}

.ncc-fleet-section {
    background: var(--ncc-cool);
}

.ncc-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.ncc-filter {
    border: 1px solid #d7dbe0;
    background: #fff;
    color: #525861;
    padding: 10px 16px;
    border-radius: 999px;
    font: inherit;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
}

.ncc-filter.is-active {
    background: var(--ncc-dark);
    color: #fff;
    border-color: var(--ncc-dark);
}

.ncc-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.ncc-car-card {
    border-radius: var(--ncc-radius);
    background: #fff;
    border: 1px solid #e2e5e8;
    overflow: hidden;
}

.ncc-car-card[hidden] {
    display: none !important;
}

.ncc-car-card__media {
    position: relative;
    min-height: 242px;
    padding: 42px 26px 24px;
    background:
        radial-gradient(circle at 50% 78%, rgba(227,6,19,.06), transparent 42%),
        #f7f7f4;
}

.ncc-car-card__media img {
    width: 100%;
    height: 185px;
    object-fit: contain;
    filter: drop-shadow(0 16px 14px rgba(0,0,0,.12));
}

.ncc-car-card__type {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #fff;
    color: #6a7179;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.ncc-car-card__body {
    padding: 24px;
}

.ncc-car-card__title-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.ncc-car-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.ncc-car-card__price {
    text-align: right;
}

.ncc-car-card__price strong {
    display: block;
    color: var(--ncc-red);
    font-size: .95rem;
}

.ncc-car-card__price span {
    color: #8b9197;
    font-size: .74rem;
}

.ncc-car-card__specs {
    display: flex;
    gap: 18px;
    margin: 18px 0 22px;
    color: #727981;
    font-size: .82rem;
}

.ncc-car-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--ncc-line);
}

.ncc-car-card__whatsapp {
    color: #267b47 !important;
    text-decoration: none !important;
    font-size: .8rem;
    font-weight: 800;
}

.ncc-process-section {
    background: #fff;
}

.ncc-process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid var(--ncc-line);
}

.ncc-process-card {
    min-height: 250px;
    padding: 30px;
    border-right: 1px solid var(--ncc-line);
}

.ncc-process-card:last-child {
    border-right: 0;
}

.ncc-process-card > span {
    color: var(--ncc-red);
    font-size: .76rem;
    font-weight: 800;
}

.ncc-process-card h3 {
    margin: 74px 0 10px;
    font-size: 1.18rem;
}

.ncc-process-card p {
    margin: 0;
    color: var(--ncc-muted);
    line-height: 1.7;
    font-size: .86rem;
}

.ncc-services-section {
    padding: 118px 0;
    color: #fff;
    background:
        radial-gradient(circle at 10% 80%, rgba(227,6,19,.17), transparent 30%),
        var(--ncc-dark);
}

.ncc-services-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: center;
}

.ncc-services-copy p {
    max-width: 600px;
    margin: 28px 0 34px;
    color: #b8bec6;
    line-height: 1.8;
}

.ncc-service-list {
    border-top: 1px solid rgba(255,255,255,.12);
}

.ncc-service-list article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.ncc-service-list article > span {
    color: #ff969e;
    font-size: .74rem;
    font-weight: 800;
}

.ncc-service-list h3 {
    margin: 0 0 7px;
}

.ncc-service-list p {
    margin: 0;
    color: #a4aab1;
    font-size: .88rem;
}

.ncc-reviews-section {
    background: var(--ncc-warm);
}

.ncc-review-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.ncc-review-card {
    min-height: 310px;
    padding: 30px;
    background: #fff;
    border: 1px solid #e5e5df;
    border-radius: var(--ncc-radius);
    display: flex;
    flex-direction: column;
}

.ncc-stars {
    color: var(--ncc-red);
    letter-spacing: .12em;
    font-size: .76rem;
}

.ncc-review-card blockquote {
    margin: 42px 0 32px;
    color: var(--ncc-ink);
    font-size: 1.12rem;
    line-height: 1.68;
    font-style: normal;
}

.ncc-review-card footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ncc-review-card footer span {
    color: var(--ncc-muted);
    font-size: .77rem;
}

.ncc-final-cta {
    padding: 0 0 110px;
    background: #fff;
}

.ncc-final-cta__card {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    padding: 68px;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(227,6,19,.34), transparent 29%),
        var(--ncc-dark);
}

.ncc-final-cta__card p {
    max-width: 650px;
    margin: 22px 0 0;
    color: #b9bec5;
    line-height: 1.7;
}

.ncc-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

@media (max-width: 1024px) {
    .ncc-hero__grid,
    .ncc-services-layout {
        grid-template-columns: 1fr;
    }

    .ncc-search-card {
        grid-template-columns: repeat(2,1fr);
        transform: translateY(42%);
    }

    .ncc-search-submit {
        grid-column: 1 / -1;
        min-height: 52px;
        margin-top: 8px;
    }

    .ncc-trust-strip {
        padding-top: 145px;
    }

    .ncc-category-grid,
    .ncc-process-grid,
    .ncc-trust-strip__grid {
        grid-template-columns: repeat(2,1fr);
    }

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

@media (max-width: 720px) {
    .ncc-container {
        width: min(calc(100% - 28px), var(--ncc-container));
    }

    .ncc-section {
        padding: 72px 0;
    }

    .ncc-section-head--split {
        align-items: start;
        flex-direction: column;
        gap: 16px;
    }

    .ncc-hero {
        padding-top: 52px;
    }

    .ncc-hero__grid {
        gap: 50px;
        padding-bottom: 40px;
    }

    .ncc-hero h1 {
        font-size: clamp(3.3rem, 18vw, 5.2rem);
    }

    .ncc-slider-stage {
        min-height: 430px;
        border-radius: 24px;
    }

    .ncc-hero-slide {
        padding: 20px;
    }

    .ncc-hero-slide img {
        height: 260px;
    }

    .ncc-search-card {
        grid-template-columns: 1fr;
        transform: none;
        margin-bottom: -24px;
    }

    .ncc-search-field {
        border-right: 0;
        border-bottom: 1px solid var(--ncc-line);
    }

    .ncc-trust-strip {
        padding-top: 72px;
    }

    .ncc-trust-strip__grid,
    .ncc-category-grid,
    .ncc-fleet-grid,
    .ncc-process-grid,
    .ncc-review-grid {
        grid-template-columns: 1fr;
    }

    .ncc-filter-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        margin-right: -14px;
    }

    .ncc-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .ncc-filter {
        flex: 0 0 auto;
    }

    .ncc-final-cta__card {
        padding: 36px 24px;
        flex-direction: column;
        align-items: start;
    }

    .ncc-final-cta__actions {
        width: 100%;
    }

    .ncc-final-cta__actions .ncc-btn {
        width: 100%;
    }

    .ncc-mobile-bar {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 999;
        display: grid;
        grid-template-columns: .75fr 1fr 1.25fr;
        gap: 5px;
        padding: 6px;
        border-radius: 18px;
        background: rgba(16,18,21,.95);
        backdrop-filter: blur(14px);
        box-shadow: 0 18px 45px rgba(0,0,0,.22);
    }

    .ncc-mobile-bar a {
        min-height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 13px;
        color: #fff !important;
        text-decoration: none !important;
        font-size: .78rem;
        font-weight: 800;
    }

    .ncc-mobile-bar .is-primary {
        background: var(--ncc-red);
    }
}


/* === VISIBILITY / LEGIBILITY FIXES FOR DARK SECTIONS === */

/* Dark category card */
.ncc-category-card--dark h3,
.ncc-category-card--dark strong {
    color: #ffffff;
}

.ncc-category-card--dark .ncc-category-card__number {
    color: #c1c7cf;
}

/* Services section */
.ncc-services-section h2,
.ncc-services-copy h2 {
    color: #ffffff;
}

.ncc-services-copy .ncc-eyebrow--light {
    color: #ffb4b9;
}

.ncc-services-copy .ncc-eyebrow--light::before {
    background: currentColor;
}

.ncc-service-list h3 {
    color: #ffffff;
}

/* Final CTA section */
.ncc-final-cta__card h2 {
    color: #ffffff;
}

.ncc-final-cta__card .ncc-eyebrow--light {
    color: #ffb4b9;
}

.ncc-final-cta__card .ncc-eyebrow--light::before {
    background: currentColor;
}

/* Optional slight contrast lift for CTA buttons on dark panel */
.ncc-final-cta__card .ncc-btn--outline-light {
    border-color: rgba(255,255,255,.42);
    background: rgba(255,255,255,.02);
}

/* Prevent dim inherited heading colors inside dark panels */
.ncc-services-section h1,
.ncc-services-section h2,
.ncc-services-section h3,
.ncc-final-cta__card h1,
.ncc-final-cta__card h2,
.ncc-final-cta__card h3 {
    color: #ffffff;
}


/* =========================================================
   MODERN CHILD-THEME HEADER
   ========================================================= */

.ncc-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, .90);
    border-bottom: 1px solid rgba(18,20,23,.07);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, background .25s ease;
}

.ncc-site-header.is-scrolled {
    background: rgba(255,255,255,.96);
    box-shadow: 0 10px 32px rgba(18,20,23,.075);
}

.ncc-header-inner {
    width: min(calc(100% - 40px), var(--ncc-container));
    min-height: 82px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(170px, 1fr) auto minmax(250px, 1fr);
    gap: 28px;
    align-items: center;
}

.ncc-brand,
.ncc-footer-logo {
    text-decoration: none !important;
}

.ncc-brand-logo {
    display: inline-flex;
    align-items: center;
}

.ncc-brand-logo__image {
    display: block;
    width: auto;
    max-width: 185px;
    max-height: 54px;
    object-fit: contain;
}

.ncc-brand-text {
    color: var(--ncc-ink);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.12rem;
    font-weight: 650;
    letter-spacing: -.025em;
}

.ncc-brand-text strong {
    color: var(--ncc-red);
    font-weight: 800;
}

.ncc-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.ncc-desktop-nav a {
    position: relative;
    color: #4d545d !important;
    text-decoration: none !important;
    font-family: 'Manrope', sans-serif;
    font-size: .87rem;
    font-weight: 700;
    transition: color .2s ease;
}

.ncc-desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--ncc-red);
    transition: right .22s ease;
}

.ncc-desktop-nav a:hover {
    color: var(--ncc-ink) !important;
}

.ncc-desktop-nav a:hover::after {
    right: 0;
}

.ncc-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.ncc-header-whatsapp,
.ncc-header-book {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .79rem;
    font-weight: 750;
}

.ncc-header-whatsapp {
    color: #1f6f40 !important;
    background: #edf9f1;
    border: 1px solid #d6f0df;
}

.ncc-header-book {
    color: #fff !important;
    background: var(--ncc-red);
    box-shadow: 0 10px 26px rgba(227,6,19,.18);
}

.ncc-menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid #dde0e4;
    border-radius: 13px;
    background: #fff;
    cursor: pointer;
}

.ncc-menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ncc-ink);
    border-radius: 999px;
    transition: transform .22s ease;
}

.ncc-menu-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.ncc-menu-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.ncc-mobile-menu {
    border-top: 1px solid var(--ncc-line);
    background: rgba(255,255,255,.98);
}

.ncc-mobile-menu[hidden] {
    display: none !important;
}

.ncc-mobile-menu__inner {
    width: min(calc(100% - 28px), var(--ncc-container));
    margin-inline: auto;
    padding: 16px 0 24px;
    display: grid;
}

.ncc-mobile-menu__inner > a {
    padding: 15px 2px;
    border-bottom: 1px solid var(--ncc-line);
    color: var(--ncc-ink) !important;
    text-decoration: none !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.ncc-mobile-menu__inner .ncc-mobile-menu__whatsapp {
    margin-top: 14px;
    padding: 14px 18px;
    border: 0;
    border-radius: 14px;
    background: #25D366;
    color: #fff !important;
    text-align: center;
}


/* =========================================================
   MODERN CHILD-THEME FOOTER
   ========================================================= */

.ncc-site-footer {
    position: relative;
    z-index: 2;
    padding: 82px 0 26px;
    background: #0d0f12;
    color: #fff;
    font-family: 'Manrope', sans-serif;
}

.ncc-footer-shell {
    width: min(calc(100% - 40px), var(--ncc-container));
    margin-inline: auto;
}

.ncc-footer-top {
    display: grid;
    grid-template-columns: 1.55fr .75fr .85fr 1.1fr;
    gap: 62px;
    padding-bottom: 64px;
}

.ncc-footer-logo {
    display: inline-flex;
    margin-bottom: 22px;
}

.ncc-footer-logo__image {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.ncc-footer-brand > p {
    max-width: 430px;
    margin: 0 0 24px;
    color: #9fa6af;
    font-size: .9rem;
    line-height: 1.8;
}

.ncc-footer-whatsapp {
    display: inline-flex;
    color: #68de91 !important;
    text-decoration: none !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .87rem;
    font-weight: 750;
}

.ncc-footer-heading {
    display: block;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.ncc-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.ncc-footer-column a,
.ncc-footer-column > span:not(.ncc-footer-heading) {
    color: #9fa6af !important;
    text-decoration: none !important;
    font-size: .86rem;
    line-height: 1.55;
}

.ncc-footer-column a:hover {
    color: #fff !important;
}

.ncc-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.11);
}

.ncc-footer-bottom p {
    margin: 0;
    color: #747b84;
    font-size: .77rem;
}

.ncc-footer-bottom > div {
    display: flex;
    gap: 22px;
}

.ncc-footer-bottom a {
    color: #aeb4bc !important;
    text-decoration: none !important;
    font-size: .77rem;
}


/* Parent theme spacing resets when modern header/footer are active */
body.page-template-template-home-modern .site-content,
body.page-template-template-home-modern #content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* TABLET / MOBILE HEADER + FOOTER */
@media (max-width: 960px) {
    .ncc-header-inner {
        grid-template-columns: 1fr auto;
        min-height: 72px;
    }

    .ncc-desktop-nav,
    .ncc-header-whatsapp,
    .ncc-header-book {
        display: none;
    }

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

    .ncc-footer-top {
        grid-template-columns: 1.35fr 1fr 1fr;
        gap: 44px;
    }

    .ncc-footer-contact {
        grid-column: 2 / -1;
    }
}

@media (max-width: 720px) {
    .ncc-header-inner {
        width: min(calc(100% - 28px), var(--ncc-container));
    }

    .ncc-brand-logo__image {
        max-width: 150px;
        max-height: 48px;
    }

    .ncc-site-footer {
        padding: 68px 0 96px;
    }

    .ncc-footer-shell {
        width: min(calc(100% - 28px), var(--ncc-container));
    }

    .ncc-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
        padding-bottom: 42px;
    }

    .ncc-footer-brand {
        grid-column: 1 / -1;
    }

    .ncc-footer-contact {
        grid-column: 1 / -1;
    }

    .ncc-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .ncc-footer-bottom > div {
        gap: 18px;
        flex-wrap: wrap;
    }
}


/* =========================================================
   GLOBAL HEADER COMPATIBILITY
   ========================================================= */

/*
 * The modern header now appears on every page.
 * Prevent old theme header spacing from leaving a large gap.
 */
body:not(.page-template-template-home-modern) .site-content,
body:not(.page-template-template-home-modern) #content,
body:not(.page-template-template-home-modern) .main-content {
    margin-top: 0 !important;
}

/*
 * Give ordinary inner pages a little breathing room beneath
 * the sticky header without affecting the custom homepage.
 */
body:not(.page-template-template-home-modern) .ncc-site-header + * {
    position: relative;
}

/*
 * Keep WordPress admin-bar compatibility.
 */
body.admin-bar .ncc-site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .ncc-site-header {
        top: 46px;
    }
}


/* =========================================================
   RANDOM FEATURED FLEET ON HOMEPAGE
   ========================================================= */

.ncc-featured-candidate {
    display: none;
}

.ncc-featured-candidate.is-featured-visible {
    display: block;
}

.ncc-car-placeholder {
    width: 100%;
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: #6f7680;
    text-align: center;
}

.ncc-car-placeholder > span {
    font-size: 3.6rem;
    line-height: 1;
    filter: grayscale(1);
    opacity: .55;
}

.ncc-car-placeholder strong {
    color: #697079;
    font-size: .88rem;
    font-weight: 700;
}


/* =========================================================
   DEDICATED FLEET PAGE
   ========================================================= */

.ncc-fleet-page {
    font-family: 'Manrope', sans-serif;
    color: var(--ncc-ink);
    background: #fff;
}

.ncc-fleet-page h1,
.ncc-fleet-page h2,
.ncc-fleet-page h3,
.ncc-fleet-page strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ncc-fleet-hero {
    padding: 46px 0 54px;
    background: linear-gradient(180deg, #fafaf8 0%, #f2f3f5 100%);
}

.ncc-fleet-hero__banner {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 34px;
    background:
        linear-gradient(90deg, rgba(7,10,14,.78) 0%, rgba(7,10,14,.52) 42%, rgba(7,10,14,.24) 100%),
        url('https://nakurucitycarhire.co.ke/wp-content/uploads/2025/09/Nakuru-Car-hire.webp') center center / cover no-repeat;
    box-shadow: 0 26px 80px rgba(18,20,23,.14);
}

.ncc-fleet-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 22%, rgba(227,6,19,.30), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
    pointer-events: none;
}

.ncc-fleet-hero__content {
    position: relative;
    z-index: 2;
    width: min(100%, 760px);
    margin: 0 0 42px 42px;
    padding: 38px 40px;
    border-radius: 28px;
    background: rgba(8, 11, 15, .42);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ncc-fleet-hero h1 {
    margin: 0;
    color: #ffffff;
    max-width: 700px;
    font-size: clamp(3rem, 6vw, 5.7rem);
    line-height: .94;
    letter-spacing: -.055em;
    font-weight: 800;
}

.ncc-fleet-hero h1 span {
    color: #ffb3b8;
}

.ncc-fleet-hero p {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.86);
    line-height: 1.82;
    font-size: 1.02rem;
}

.ncc-fleet-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.ncc-fleet-catalogue {
    padding: 72px 0 110px;
    background: var(--ncc-cool);
}

.ncc-fleet-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.ncc-fleet-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ncc-fleet-count {
    flex: 0 0 auto;
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: var(--ncc-muted);
}

.ncc-fleet-count strong {
    color: var(--ncc-ink);
    font-size: 1.35rem;
}

.ncc-fleet-count span {
    font-size: .78rem;
}

.ncc-fleet-grid--full {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ncc-fleet-grid--full .ncc-car-card.is-filtered-out {
    display: none;
}

.ncc-fleet-bottom-cta {
    padding: 0 0 110px;
    background: var(--ncc-cool);
}

.ncc-fleet-bottom-cta__card {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    padding: 62px;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(227,6,19,.35), transparent 29%),
        var(--ncc-dark);
}

.ncc-fleet-bottom-cta__card h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.04;
    letter-spacing: -.04em;
}

@media (max-width: 1024px) {
    .ncc-fleet-grid--full {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ncc-fleet-hero__inner,
    .ncc-fleet-bottom-cta__card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .ncc-fleet-hero {
        padding: 72px 0 58px;
    }

    .ncc-fleet-catalogue {
        padding: 52px 0 90px;
    }

    .ncc-fleet-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .ncc-fleet-filters {
        width: calc(100% + 14px);
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .ncc-fleet-filters::-webkit-scrollbar {
        display: none;
    }

    .ncc-fleet-filters .ncc-filter {
        flex: 0 0 auto;
    }

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

    .ncc-fleet-bottom-cta__card {
        padding: 36px 24px;
        border-radius: 24px;
    }
}


/* =========================================================
   PREMIUM FLEET IMAGE FALLBACKS
   ========================================================= */

.ncc-car-card__media img.ncc-fallback-image {
    width: 100%;
    height: 190px;
    object-fit: contain;
    filter: none;
    opacity: .97;
    border-radius: 14px;
}


.ncc-fleet-page .ncc-car-card__media,
.ncc-home .ncc-car-card__media {
    overflow: hidden;
}


@media (max-width: 1024px) {
    .ncc-fleet-hero__banner {
        min-height: 480px;
    }

    .ncc-fleet-hero__content {
        width: calc(100% - 48px);
        margin: 0 24px 24px;
        padding: 30px 28px;
    }
}

@media (max-width: 720px) {
    .ncc-fleet-hero {
        padding: 24px 0 38px;
    }

    .ncc-fleet-hero__banner {
        min-height: 440px;
        border-radius: 24px;
        background-position: center center;
    }

    .ncc-fleet-hero__content {
        width: calc(100% - 28px);
        margin: 0 14px 14px;
        padding: 24px 20px;
        border-radius: 22px;
    }

    .ncc-fleet-hero p {
        font-size: .95rem;
    }

    .ncc-fleet-hero__actions .ncc-btn {
        width: 100%;
    }
}


/* =========================================================
   GLOBAL FOOTER COMPATIBILITY
   ========================================================= */

.ncc-site-footer {
    margin-top: 0;
}

/* Slight spacing before the global footer on ordinary inner pages. */
body:not(.page-template-template-home-modern):not(.page-template-page-fleet) .ncc-site-footer {
    margin-top: 70px;
}

/* Homepage and dedicated Fleet page connect directly to the modern footer. */
body.page-template-template-home-modern .ncc-site-footer,
body.page-template-page-fleet .ncc-site-footer {
    margin-top: 0;
}

@media (max-width: 720px) {
    body:not(.page-template-template-home-modern):not(.page-template-page-fleet) .ncc-site-footer {
        margin-top: 48px;
    }
}


/* =========================================================
   LUXURY HIRE A RIDE PAGE
   ========================================================= */

.ncc-booking-page {
    font-family: 'Manrope', sans-serif;
    color: var(--ncc-ink);
    background: #f3f4f5;
}

.ncc-booking-page h1,
.ncc-booking-page h2,
.ncc-booking-page h3,
.ncc-booking-page strong,
.ncc-booking-page button {
    font-family: 'Plus Jakarta Sans', sans-serif;
}


/* HERO */

.ncc-booking-hero {
    padding: 38px 0 0;
    background: #f3f4f5;
}

.ncc-booking-hero__banner {
    position: relative;
    min-height: 540px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at 84% 20%, rgba(227,6,19,.24), transparent 28%),
        linear-gradient(135deg, #0b0d10 0%, #15181d 58%, #20242a 100%);
    box-shadow: 0 28px 80px rgba(18,20,23,.17);
}

.ncc-booking-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.02) 0%,
            rgba(255,255,255,0) 46%,
            rgba(227,6,19,.05) 100%
        );
    pointer-events: none;
}

.ncc-booking-hero__content {
    position: relative;
    z-index: 2;
    padding: 68px 0 68px 62px;
    color: #fff;
}

.ncc-booking-hero h1 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: clamp(3.4rem, 6.5vw, 6.6rem);
    line-height: .89;
    letter-spacing: -.065em;
    font-weight: 800;
}

.ncc-booking-hero h1 span {
    color: #ffb0b6;
}

.ncc-booking-hero__content > p {
    max-width: 620px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 1.02rem;
    line-height: 1.8;
}

.ncc-booking-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 28px;
}

.ncc-booking-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 28px;
}

.ncc-booking-hero__trust span {
    color: rgba(255,255,255,.70);
    font-size: .72rem;
    font-weight: 700;
}

.ncc-booking-hero__trust span::before {
    content: "✓";
    margin-right: 7px;
    color: #ff9ca3;
    font-weight: 900;
}

.ncc-booking-hero__vehicle {
    position: relative;
    z-index: 2;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 58px 46px 40px 18px;
}

.ncc-booking-hero__vehicle::before {
    content: "";
    position: absolute;
    width: 88%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(227,6,19,.19) 0%,
            rgba(227,6,19,.07) 42%,
            transparent 70%
        );
}

.ncc-booking-hero__vehicle img {
    position: relative;
    z-index: 2;
    width: min(100%, 610px);
    height: 345px;
    object-fit: contain;
    filter: drop-shadow(0 32px 30px rgba(0,0,0,.34));
}

.ncc-booking-hero__vehicle-kicker {
    position: absolute;
    z-index: 3;
    top: 46px;
    right: 46px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.7);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.ncc-booking-hero__vehicle strong {
    position: relative;
    z-index: 2;
    margin-top: 3px;
    color: rgba(255,255,255,.93);
    font-size: 1rem;
    letter-spacing: -.02em;
}

/* PAGE LAYOUT */

.ncc-booking-shell {
    padding: 76px 0 110px;
}

.ncc-booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
    align-items: start;
}

.ncc-booking-intro {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 34px;
    margin-bottom: 28px;
}

.ncc-booking-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--ncc-red);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ncc-booking-intro h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.ncc-booking-intro > p {
    max-width: 390px;
    margin: 0 0 3px;
    color: var(--ncc-muted);
    line-height: 1.7;
    font-size: .88rem;
}


/* FORM CARDS */

.ncc-booking-form {
    display: grid;
    gap: 18px;
}

.ncc-booking-card {
    padding: 32px;
    border: 1px solid #e0e3e6;
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 14px 42px rgba(18,20,23,.045);
}

.ncc-booking-card__head {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
    padding-bottom: 26px;
    margin-bottom: 26px;
    border-bottom: 1px solid #e8eaed;
}

.ncc-booking-step {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--ncc-dark);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .72rem;
    font-weight: 800;
}

.ncc-booking-card__head h3 {
    margin: 1px 0 6px;
    font-size: 1.25rem;
    letter-spacing: -.025em;
}

.ncc-booking-card__head p {
    margin: 0;
    color: var(--ncc-muted);
    font-size: .84rem;
    line-height: 1.55;
}


/* FIELDS */

.ncc-form-grid {
    display: grid;
    gap: 18px;
}

.ncc-form-grid--2 {
    grid-template-columns: repeat(2, minmax(0,1fr));
}

.ncc-field--full {
    grid-column: 1 / -1;
}

.ncc-field label {
    display: block;
    margin-bottom: 8px;
    color: #353a40;
    font-size: .76rem;
    font-weight: 800;
}

.ncc-field label span {
    color: var(--ncc-red);
}

.ncc-field input,
.ncc-field select,
.ncc-field textarea {
    width: 100%;
    min-height: 54px;
    padding: 0 15px;
    border: 1px solid #d8dce1;
    border-radius: 13px;
    outline: 0;
    background: #fafbfb;
    color: var(--ncc-ink);
    font-family: 'Manrope', sans-serif;
    font-size: .87rem;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.ncc-field textarea {
    min-height: 130px;
    padding: 15px;
    resize: vertical;
    line-height: 1.65;
}

.ncc-field input:focus,
.ncc-field select:focus,
.ncc-field textarea:focus {
    border-color: rgba(227,6,19,.55);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(227,6,19,.07);
}

.ncc-field small {
    display: block;
    margin-top: 8px;
    color: #899098;
    font-size: .71rem;
    line-height: 1.5;
}

.ncc-satellite-field[hidden] {
    display: none !important;
}


/* SUBMIT AREA */

.ncc-booking-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 25px 28px;
    border-radius: 22px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(227,6,19,.28), transparent 27%),
        var(--ncc-dark);
}

.ncc-booking-submit__note {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ncc-booking-submit__note strong {
    font-size: .94rem;
}

.ncc-booking-submit__note span {
    color: #aeb5bd;
    font-size: .76rem;
}

.ncc-booking-submit__button {
    flex: 0 0 auto;
    min-width: 190px;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: var(--ncc-red);
    color: #fff;
    font-size: .84rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(227,6,19,.24);
}

.ncc-booking-submit__button:disabled {
    opacity: .65;
    cursor: wait;
}

.ncc-booking-error {
    padding: 14px 16px;
    border: 1px solid #f2c6ca;
    border-radius: 13px;
    background: #fff2f3;
    color: #9a1d28;
    font-size: .82rem;
}


/* SIDEBAR */

.ncc-booking-sidebar {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 16px;
}

.ncc-booking-sidecard {
    padding: 27px;
    border: 1px solid #e0e3e6;
    border-radius: 22px;
    background: #fff;
}

.ncc-booking-sidecard--dark {
    color: #fff;
    background:
        radial-gradient(circle at 80% 15%, rgba(227,6,19,.25), transparent 27%),
        var(--ncc-dark);
    border-color: var(--ncc-dark);
}

.ncc-booking-sidecard__eyebrow {
    display: block;
    margin-bottom: 17px;
    color: var(--ncc-red);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ncc-booking-sidecard--dark .ncc-booking-sidecard__eyebrow {
    color: #ff9fa6;
}

.ncc-booking-sidecard h3 {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.ncc-booking-sidecard > p {
    margin: 15px 0 20px;
    color: var(--ncc-muted);
    line-height: 1.7;
    font-size: .82rem;
}

.ncc-booking-sidecard ul {
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.ncc-booking-sidecard li {
    position: relative;
    padding: 13px 0 13px 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #bdc3ca;
    font-size: .78rem;
    line-height: 1.5;
}

.ncc-booking-sidecard li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff9fa6;
    font-weight: 900;
}

.ncc-booking-contact,
.ncc-booking-whatsapp {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    text-decoration: none !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .78rem;
    font-weight: 800;
}

.ncc-booking-contact {
    margin-bottom: 8px;
    color: var(--ncc-ink) !important;
    border: 1px solid #dadde1;
    background: #f8f9fa;
}

.ncc-booking-whatsapp {
    color: #fff !important;
    background: #25D366;
}

.ncc-booking-security {
    padding: 8px 6px;
}

.ncc-booking-security > span {
    display: block;
    margin-bottom: 5px;
    color: #555d66;
    font-size: .72rem;
    font-weight: 800;
}

.ncc-booking-security p {
    margin: 0;
    color: #8a9199;
    font-size: .69rem;
    line-height: 1.6;
}


/* MODAL */

.ncc-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(8,10,14,.76);
    backdrop-filter: blur(10px);
}

.ncc-booking-modal.is-open {
    display: flex;
}

.ncc-booking-modal__dialog {
    width: min(100%, 520px);
    padding: 42px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 40px 110px rgba(0,0,0,.28);
    text-align: center;
}

.ncc-booking-modal__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: #edf9f1;
    color: #218248;
    font-size: 1.25rem;
    font-weight: 900;
}

.ncc-booking-modal__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--ncc-red);
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ncc-booking-modal h2 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: -.04em;
}

.ncc-booking-modal p {
    margin: 16px 0 26px;
    color: var(--ncc-muted);
    line-height: 1.7;
    font-size: .86rem;
}

.ncc-booking-modal__whatsapp {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 999px;
    background: #25D366;
    color: #fff !important;
    text-decoration: none !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .84rem;
    font-weight: 800;
}


/* RESPONSIVE */

@media (max-width: 1024px) {

    .ncc-booking-layout {
        grid-template-columns: 1fr;
    }

    .ncc-booking-sidebar {
        position: static;
        grid-template-columns: repeat(2,1fr);
    }

    .ncc-booking-security {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {

    .ncc-booking-hero {
        padding-top: 22px;
    }

    .ncc-booking-hero__banner {
        min-height: 430px;
        border-radius: 24px;
    }

    .ncc-booking-hero__content {
        padding: 32px 24px;
    }

    .ncc-booking-shell {
        padding: 58px 0 90px;
    }

    .ncc-booking-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .ncc-form-grid--2,
    .ncc-booking-sidebar {
        grid-template-columns: 1fr;
    }

    .ncc-booking-card {
        padding: 23px 18px;
        border-radius: 20px;
    }

    .ncc-booking-card__head {
        grid-template-columns: 42px 1fr;
    }

    .ncc-booking-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .ncc-booking-submit__button {
        width: 100%;
    }

    .ncc-booking-modal__dialog {
        padding: 32px 22px;
        border-radius: 24px;
    }
}


/* Booking hero responsive refinement */
@media (max-width: 1024px) {
    .ncc-booking-hero__banner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ncc-booking-hero__content {
        padding: 54px 48px 18px;
    }

    .ncc-booking-hero__vehicle {
        min-height: 380px;
        padding: 10px 36px 42px;
    }

    .ncc-booking-hero__vehicle img {
        height: 300px;
    }

    .ncc-booking-hero__vehicle-kicker {
        top: 18px;
        right: 30px;
    }
}

@media (max-width: 720px) {
    .ncc-booking-hero {
        padding-top: 20px;
    }

    .ncc-booking-hero__banner {
        border-radius: 24px;
    }

    .ncc-booking-hero__content {
        padding: 38px 24px 16px;
    }

    .ncc-booking-hero h1 {
        font-size: clamp(3rem, 16vw, 4.6rem);
    }

    .ncc-booking-hero__actions .ncc-btn {
        width: 100%;
    }

    .ncc-booking-hero__vehicle {
        min-height: 290px;
        padding: 0 18px 30px;
    }

    .ncc-booking-hero__vehicle img {
        height: 230px;
    }

    .ncc-booking-hero__vehicle-kicker {
        display: none;
    }
}


/* =========================================================
   ACTIVE NAVIGATION STATE
   ========================================================= */

.ncc-desktop-nav a {
    padding: 10px 13px;
    border-radius: 999px;
}

.ncc-desktop-nav a::after {
    display: none;
}

.ncc-desktop-nav a.is-active,
.ncc-desktop-nav a[aria-current="page"] {
    color: var(--ncc-red) !important;
    background: rgba(227, 6, 19, .075);
    box-shadow: inset 0 0 0 1px rgba(227, 6, 19, .08);
}

.ncc-desktop-nav a.is-active::before,
.ncc-desktop-nav a[aria-current="page"]::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--ncc-red);
    transform: translateX(-50%);
}

.ncc-mobile-menu__inner > a.is-active,
.ncc-mobile-menu__inner > a[aria-current="page"] {
    margin: 4px 0;
    padding-left: 14px;
    padding-right: 14px;
    border-bottom-color: transparent;
    border-radius: 12px;
    background: rgba(227, 6, 19, .075);
    color: var(--ncc-red) !important;
}

.ncc-mobile-menu__inner > a.is-active::before,
.ncc-mobile-menu__inner > a[aria-current="page"]::before {
    content: "•";
    margin-right: 8px;
    color: var(--ncc-red);
}
