:root {
    --kart-red: #442b7d;
    --kart-red-dark: #321f61;
    --kart-violet-light: #7157ad;
    --kart-ink: #142033;
    --kart-muted: #677184;
    --kart-line: #e7eaf0;
    --kart-soft: #f6f8fb;
    --kart-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--kart-ink);
    background: var(--kart-white);
}

.navbar {
    --bs-navbar-color: #253044;
    --bs-navbar-hover-color: var(--kart-red);
    --bs-navbar-active-color: var(--kart-red);
    border-bottom: 1px solid rgba(20, 32, 51, .08);
    backdrop-filter: blur(16px);
    background-color: #f8f8f8;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--kart-red), var(--kart-violet-light));
    box-shadow: 0 10px 22px rgba(68, 43, 125, .22);
    letter-spacing: 0;
}

.logo-lockup {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    line-height: .88;
    color: var(--kart-red);
    font-style: italic;
    letter-spacing: 0;
}

.logo-lockup .logo-main {
    font-size: 1.55rem;
    font-weight: 950;
}

.logo-lockup .logo-sub {
    margin-top: .18rem;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .18rem;
}

.footer .logo-lockup,
.hero-logo .logo-lockup {
    color: #fff;
}

.hero-logo {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    padding: .7rem .95rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    margin-bottom: 1rem;
}

.btn-kart {
    --bs-btn-bg: var(--kart-red);
    --bs-btn-border-color: var(--kart-red);
    --bs-btn-hover-bg: var(--kart-red-dark);
    --bs-btn-hover-border-color: var(--kart-red-dark);
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    box-shadow: 0 12px 24px rgba(68, 43, 125, .22);
}

.btn-outline-kart {
    --bs-btn-color: var(--kart-red);
    --bs-btn-border-color: rgba(68, 43, 125, .35);
    --bs-btn-hover-bg: var(--kart-red);
    --bs-btn-hover-border-color: var(--kart-red);
    --bs-btn-hover-color: #fff;
}

.hero {
    position: relative;
    overflow: hidden;
    height: 550px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(28, 19, 55, .94), rgba(68, 43, 125, .76) 48%, rgb(20 32 51 / 24%)), url(https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?auto=format&fit=crop&w=1800&q=80) center / cover;
    color: #fff;
    padding-top: 90px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 72px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    /* padding: 132px 0 96px; */
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--kart-red);
    background: rgba(68, 43, 125, .08);
    border: 1px solid rgba(68, 43, 125, .12);
    border-radius: 999px;
    padding: .45rem .75rem;
    letter-spacing: 0;
}

.hero .eyebrow {
    color: #fff;
    background: rgba(68, 43, 125, .78);
    border-color: rgba(255, 255, 255, .18);
}

.hero h1 {
    max-width: 770px;
    font-size: 55px;
    font-weight: 850;
    line-height: .98;
    letter-spacing: -2.5px;
    margin: 1rem 0 1.25rem;
}

.hero p {
    max-width: 650px;
    color: rgba(255, 255, 255, .86);
    font-size: 1.16rem;
}

.metric-strip {
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.metric {
    border: 1px solid var(--kart-line);
    border-radius: 8px;
    background: #fff;
    padding: 1.35rem;
    height: 100%;
    box-shadow: 0 18px 44px rgba(68, 43, 125, .08);
}

.metric strong {
    display: block;
    font-size: 1.65rem;
    line-height: 1;
    color: var(--kart-red);
}

section {
    padding: 88px 0;
}

.section-title {
    max-width: 760px;
}

.section-title h2 {
    font-weight: 820;
    letter-spacing: 0;
    font-size: clamp(2rem, 3.4vw, 3.3rem);
    line-height: 1.05;
}

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

.text-kart {
    color: var(--kart-red) !important;
}

.service-card,
.feature-card,
.quote-card,
.contact-panel,
.calc-panel {
    border: 1px solid var(--kart-line);
    border-radius: 8px;
    background: #fff;
}

.service-card {
    height: 100%;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(68, 43, 125, .28);
    box-shadow: 0 18px 42px rgba(68, 43, 125, .1);
}

.service-media {
    height: 190px;
    background-size: cover;
    background-position: center;
}

.icon-box {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    color: var(--kart-red);
    background: rgba(68, 43, 125, .08);
    flex: 0 0 auto;
    font-size: 1.35rem;
}

.soft-band {
    background: var(--kart-soft);
}

.timeline-step {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
}

.timeline-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--kart-red);
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(68, 43, 125, .2);
}

.route-board {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
}

.route-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.route-row:last-child {
    border-bottom: 0;
}

.quote-card {
    padding: 1.5rem;
    height: 100%;
}

.stars {
    color: #f5a623;
    font-size: .95rem;
}

.footer {
    background: #101827;
    color: rgba(255, 255, 255, .74);
    padding: 56px 0 28px;
}

.footer a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1030;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    box-shadow: 0 16px 34px rgba(37, 211, 102, .35);
    text-decoration: none;
    font-size: 1.6rem;
}

.about-hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: end;
    padding: 150px 0 86px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(20, 32, 51, .96), rgba(68, 43, 125, .82) 48%, rgba(20, 32, 51, .36)),
        url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.about-hero .eyebrow,
.about-cta .eyebrow,
.about-quote-band .eyebrow {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .2);
}

.about-hero h1 {
    max-width: 860px;
    margin: 1rem 0 1.25rem;
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    font-weight: 880;
    line-height: .94;
}

.about-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, .88);
    font-size: 1.18rem;
}

.about-hero-panel {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    padding: 1.35rem;
}

.about-hero-panel strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: .45rem;
}

.about-hero-panel span {
    color: rgba(255, 255, 255, .82);
}

.about-image-stack {
    position: relative;
    min-height: 430px;
}

.about-main-image {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 54px rgba(20, 32, 51, .14);
}

.about-stat {
    position: absolute;
    right: 24px;
    bottom: -24px;
    max-width: 260px;
    border: 1px solid var(--kart-line);
    border-radius: 8px;
    background: #fff;
    padding: 1.2rem;
    box-shadow: 0 18px 44px rgba(68, 43, 125, .12);
}

.about-stat strong {
    display: block;
    color: var(--kart-red);
    font-size: 2.25rem;
    line-height: 1;
}

.about-stat span {
    color: var(--kart-muted);
}

.about-quote-band {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(20, 32, 51, .96), rgba(68, 43, 125, .88)),
        url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.about-quote-band .quote-card {
    background: rgba(255, 255, 255, .96);
    color: var(--kart-ink);
}

.about-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-radius: 8px;
    padding: 3rem;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(68, 43, 125, .96), rgba(20, 32, 51, .96)),
        url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1400&q=80") center / cover;
}

.about-cta h2 {
    margin: 1rem 0 .75rem;
    max-width: 720px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 840;
    line-height: 1;
}

.about-cta p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
}

.page-breadcrumbs {
    padding: 14px 0;
    background: #fff;
    border-bottom: 1px solid var(--kart-line);
}

.page-breadcrumbs .breadcrumb {
    --bs-breadcrumb-divider-color: var(--kart-muted);
    font-size: .92rem;
}

.page-breadcrumbs a {
    color: var(--kart-muted);
    text-decoration: none;
}

.page-breadcrumbs a:hover {
    color: var(--kart-red);
}

.page-breadcrumbs .active {
    color: var(--kart-ink);
    font-weight: 700;
}

.page-heading {
    position: relative;
    overflow: hidden;
    padding: 130px 0 40px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(20, 32, 51, .96), rgba(68, 43, 125, .88) 58%, rgba(20, 32, 51, .7)),
        url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.page-heading h1 {
    margin: 1rem 0 .8rem;
    font-size: clamp(2.15rem, 4vw, 4rem);
    line-height: 1;
    font-weight: 860;
    letter-spacing: 0;
}

.page-heading p {
    max-width: 820px;
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: 1.12rem;
}

.page-heading .eyebrow {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .2);
}

.page-heading-about {
    background:
        linear-gradient(90deg, rgba(20, 32, 51, .96), rgba(68, 43, 125, .88) 58%, rgba(20, 32, 51, .68)),
        url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.services-intro-section {
    padding-top: 28px;
}

.services-intro {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    max-width: 980px;
    padding: 1.6rem;
    border: 1px solid var(--kart-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(68, 43, 125, .07);
}

.services-intro p {
    margin: 0;
    color: var(--kart-muted);
    font-size: 1.06rem;
}

.services-grid-section {
    padding-top: 76px;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.6rem;
    border: 1px solid var(--kart-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(20, 32, 51, .05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    border-color: rgba(68, 43, 125, .28);
    box-shadow: 0 18px 42px rgba(68, 43, 125, .1);
}

.service-detail-card h3 {
    margin-bottom: .65rem;
    font-size: 1.2rem;
    font-weight: 800;
}

.service-detail-card p {
    color: var(--kart-muted);
    margin-bottom: 1.25rem;
}

.service-choice {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
    gap: 3rem;
    align-items: start;
}

.service-choice h2 {
    margin: 1rem 0 .9rem;
    max-width: 640px;
    font-size: clamp(2rem, 3.4vw, 3.25rem);
    line-height: 1.05;
    font-weight: 840;
}

.service-choice p {
    margin: 0;
    color: var(--kart-muted);
    font-size: 1.06rem;
}

.choice-list {
    display: grid;
    gap: .9rem;
}

.choice-list div {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: .85rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid var(--kart-line);
    border-radius: 8px;
    background: #fff;
}

.choice-list i {
    color: var(--kart-red);
    font-size: 1.18rem;
}

.choice-list span,
.choice-list a {
    color: var(--kart-ink);
    font-weight: 650;
}

.choice-list a {
    text-decoration: none;
}

.choice-list a:hover {
    color: var(--kart-red);
}

.service-feature {
    height: 100%;
    padding: 1.45rem;
}

.service-feature h3 {
    font-size: 1.04rem;
    font-weight: 800;
}

.service-feature p {
    margin: 0;
    color: var(--kart-muted);
}

.services-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    border: 1px solid rgba(68, 43, 125, .18);
    border-radius: 8px;
    background: linear-gradient(135deg, #fff, #f6f8fb);
    box-shadow: 0 18px 42px rgba(20, 32, 51, .07);
}

.services-final-cta h2 {
    margin: 1rem 0 .75rem;
    font-size: clamp(2rem, 3.6vw, 3.35rem);
    line-height: 1;
    font-weight: 850;
}

.services-final-cta p {
    max-width: 680px;
    margin: 0;
    color: var(--kart-muted);
}

.services-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    justify-content: flex-end;
}

.service-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.service-detail-section {
    padding-top: 72px;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
    gap: 2rem;
    align-items: start;
}

.service-overview-panel,
.service-info-list,
.service-topic-card {
    border: 1px solid var(--kart-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(20, 32, 51, .05);
}

.service-overview-panel {
    padding: 2rem;
}

.service-overview-panel h2,
.service-info-list h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.6rem, 2.6vw, 2.35rem);
    line-height: 1.08;
    font-weight: 830;
}

.service-overview-panel p {
    margin: 0;
    color: var(--kart-muted);
    font-size: 1.08rem;
}

.service-info-list {
    display: grid;
    gap: .85rem;
    padding: 1.5rem;
}

.service-info-list div {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: .75rem;
    align-items: start;
    padding: .95rem;
    border: 1px solid var(--kart-line);
    border-radius: 8px;
}

.service-info-list i {
    color: var(--kart-red);
    font-size: 1.15rem;
}

.service-info-list span {
    font-weight: 700;
}

.service-topic-card {
    height: 100%;
    padding: 1.4rem;
}

.service-topic-card h3 {
    margin: 1rem 0 0;
    font-size: 1.08rem;
    font-weight: 800;
}

.service-rich-section {
    padding-top: 72px;
}

.service-rich-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-rich-card {
    height: 100%;
    padding: 1.6rem;
    border: 1px solid var(--kart-line);
    border-radius: 8px;
    background: #fff;
}

.service-rich-card h2 {
    margin-bottom: .85rem;
    font-size: 1.35rem;
    line-height: 1.1;
    font-weight: 820;
}

.service-rich-card p {
    margin: 0;
    color: var(--kart-muted);
}

.service-process-layout {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
    gap: 3rem;
    align-items: start;
}

.service-process-layout h2,
.service-attention-panel h2 {
    margin: 1rem 0 .9rem;
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    line-height: 1.05;
    font-weight: 840;
}

.service-process-layout p {
    margin: 0;
    color: var(--kart-muted);
}

.service-process-list {
    display: grid;
    gap: 1.4rem;
}

.service-process-list h3 {
    font-size: 1.15rem;
    font-weight: 800;
}

.service-attention-panel {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
    gap: 3rem;
    align-items: start;
    padding: 2rem;
    border: 1px solid var(--kart-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(20, 32, 51, .05);
}

.getaquote-section .form-row-box {
    background: #fff;
    padding: 20px 20px;
    margin-bottom: 30px;
}
.getaquote-section .form-row-box label {
    color: #222;
}

.no-box-shadow {
    box-shadow: none !important;
}

@media (max-width: 767.98px) {
    .hero {
        min-height: auto;
        background:
            linear-gradient(180deg, rgba(28, 19, 55, .95), rgba(68, 43, 125, .78)),
            url("https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?auto=format&fit=crop&w=1200&q=80") center/cover;
    }

    .hero-content {
        padding: 112px 0 92px;
    }

    .metric-strip {
        margin-top: -34px;
    }

    section {
        padding: 64px 0;
    }

    .about-hero {
        min-height: auto;
        padding: 132px 0 70px;
        background:
            linear-gradient(180deg, rgba(20, 32, 51, .96), rgba(68, 43, 125, .84)),
            url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1000&q=80") center / cover;
    }

    .about-image-stack,
    .about-main-image {
        min-height: auto;
        height: 320px;
    }

    .about-stat {
        position: static;
        max-width: none;
        margin-top: 1rem;
    }

    .about-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }

    .page-heading {
        padding: 118px 0 32px;
        background:
            linear-gradient(180deg, rgba(20, 32, 51, .96), rgba(68, 43, 125, .86)),
            url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1000&q=80") center / cover;
    }

    .page-heading-about {
        background:
            linear-gradient(180deg, rgba(20, 32, 51, .96), rgba(68, 43, 125, .86)),
            url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1000&q=80") center / cover;
    }

    .services-intro {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .services-grid-section {
        padding-top: 60px;
    }

    .service-choice {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .services-final-cta {
        display: block;
        padding: 1.5rem;
    }

    .services-cta-actions {
        justify-content: stretch;
        margin-top: 1.5rem;
    }

    .services-cta-actions .btn {
        width: 100%;
    }

    .service-card-actions,
    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-detail-section {
        padding-top: 56px;
    }

    .service-overview-panel {
        padding: 1.35rem;
    }

    .service-rich-grid,
    .service-process-layout,
    .service-attention-panel {
        grid-template-columns: 1fr;
    }

    .service-rich-section {
        padding-top: 56px;
    }

    .service-attention-panel {
        padding: 1.25rem;
    }
}
