/* =========================================================
   KALAPANI HOLIDAYS
   B2B PAGE — FINAL CLEAN CSS
   ========================================================= */


/* =========================================================
   BASE
   ========================================================= */

.kh-b2b-page {
    --kh-navy: #061a33;
    --kh-navy-2: #0a2945;
    --kh-blue: #12a8dc;
    --kh-cyan: #58d7f1;
    --kh-text: #10243c;
    --kh-muted: #61758b;
    --kh-border: #dce6ed;
    --kh-light: #f5f9fb;
    --kh-white: #ffffff;

    color: var(--kh-text);
    background: var(--kh-white);
}

.kh-b2b-page *,
.kh-b2b-page *::before,
.kh-b2b-page *::after {
    box-sizing: border-box;
}

.kh-b2b-page h1,
.kh-b2b-page h2,
.kh-b2b-page h3,
.kh-b2b-page p {
    margin-top: 0;
}

.kh-b2b-page a {
    text-decoration: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.kh-b2b-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.kh-b2b-eyebrow {
    display: inline-block;

    margin: 0 0 18px;

    color: var(--kh-blue);

    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;

    letter-spacing: .16em;
    text-transform: uppercase;
}

.kh-b2b-hero .kh-b2b-eyebrow,
.kh-b2b-cta-box .kh-b2b-eyebrow {
    color: var(--kh-cyan);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.kh-b2b-actions,
.kh-b2b-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.kh-b2b-btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 25px;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 800;
    line-height: 1;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.kh-b2b-btn:hover {
    transform: translateY(-2px);
}

.kh-b2b-btn-primary {
    color: var(--kh-navy);
    background: var(--kh-white);
    border: 1px solid var(--kh-white);
}

.kh-b2b-btn-primary:hover {
    color: var(--kh-navy);
    background: #eafaff;
    border-color: #eafaff;
}

.kh-b2b-btn-outline {
    color: var(--kh-white);
    background: transparent;
    border: 1px solid rgba(255,255,255,.45);
}

.kh-b2b-btn-outline:hover {
    color: var(--kh-navy);
    background: var(--kh-white);
    border-color: var(--kh-white);
}


/* =========================================================
   HERO
   ========================================================= */

.kh-b2b-hero {
    position: relative;
    overflow: hidden;

    min-height: 560px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 88% 72%,
            rgba(18,168,220,.24),
            transparent 34%
        ),
        linear-gradient(
            120deg,
            #04182d 0%,
            #06263f 55%,
            #0b526d 100%
        );
}

.kh-b2b-hero::before {
    content: "";

    position: absolute;

    right: -190px;
    bottom: -350px;

    width: 730px;
    height: 730px;

    border: 1px solid rgba(88,215,241,.15);
    border-radius: 50%;

    box-shadow:
        0 0 0 85px rgba(88,215,241,.035),
        0 0 0 170px rgba(88,215,241,.02);
}

.kh-b2b-hero-content {
    position: relative;
    z-index: 2;

    max-width: 920px;

    padding: 70px 0;
}

.kh-b2b-hero h1 {
    max-width: 950px;

    margin: 0 0 22px;

    color: var(--kh-white);

    font-size: clamp(52px, 6vw, 80px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.045em;
}

.kh-b2b-hero h1 span {
    color: var(--kh-cyan);
}

.kh-b2b-hero p {
    max-width: 760px;

    margin: 0 0 30px;

    color: rgba(255,255,255,.82);

    font-size: 18px;
    line-height: 1.65;
}


/* =========================================================
   COMMON SECTION HEADING
   ========================================================= */

.kh-b2b-section-heading {
    max-width: 900px;

    margin-bottom: 35px;
}

.kh-b2b-section-heading h2 {
    margin: 0 0 18px;

    color: var(--kh-navy);

    font-size: clamp(42px, 4.7vw, 62px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.kh-b2b-section-heading h2 span {
    color: var(--kh-blue);
}

.kh-b2b-section-heading p {
    max-width: 850px;

    margin: 0;

    color: var(--kh-muted);

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   WHY PARTNER
   ========================================================= */

.kh-b2b-why {
    padding: 75px 0 80px;

    background: var(--kh-white);
}

.kh-b2b-benefit-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}

.kh-b2b-benefit-card {
    min-height: 245px;

    padding: 25px;

    border: 1px solid var(--kh-border);
    border-radius: 16px;

    background: var(--kh-white);

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.kh-b2b-benefit-card:hover {
    transform: translateY(-4px);

    border-color: rgba(18,168,220,.42);

    box-shadow: 0 15px 35px rgba(6,26,51,.07);
}

.kh-b2b-card-number {
    display: block;

    margin-bottom: 25px;

    color: var(--kh-blue);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .13em;
}

.kh-b2b-benefit-card h3 {
    margin: 0 0 10px;

    color: var(--kh-navy);

    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.kh-b2b-benefit-card p {
    margin: 0;

    color: var(--kh-muted);

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   SERVICES
   ========================================================= */

.kh-b2b-services {
    padding: 75px 0;

    background: var(--kh-light);
}

.kh-b2b-services-grid {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 65px;

    align-items: start;
}

.kh-b2b-services-intro {
    position: sticky;
    top: 100px;
}

.kh-b2b-services-intro h2 {
    margin: 0 0 18px;

    color: var(--kh-navy);

    font-size: clamp(42px, 4.5vw, 60px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.kh-b2b-services-intro h2 span {
    color: var(--kh-blue);
}

.kh-b2b-services-intro p {
    max-width: 430px;

    margin: 0;

    color: var(--kh-muted);

    font-size: 16px;
    line-height: 1.65;
}

.kh-b2b-service-list {
    border-top: 1px solid var(--kh-border);
}

.kh-b2b-service-item {
    display: grid;

    grid-template-columns: 42px minmax(0, 1fr);

    gap: 18px;

    align-items: center;

    padding: 20px 0;

    border-bottom: 1px solid var(--kh-border);

    transition: padding .2s ease;
}

.kh-b2b-service-item:hover {
    padding-left: 5px;
}

.kh-b2b-service-number {
    color: var(--kh-blue);

    font-size: 12px;
    font-weight: 800;
}

.kh-b2b-service-content h3 {
    margin: 0 0 6px;

    color: var(--kh-navy);

    font-size: 19px;
    font-weight: 800;
    line-height: 1.2;
}

.kh-b2b-service-content p {
    max-width: 650px;

    margin: 0;

    color: var(--kh-muted);

    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   DESTINATIONS
   ========================================================= */

.kh-b2b-destinations {
    padding: 75px 0 80px;

    background: var(--kh-white);
}

.kh-b2b-destination-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}

.kh-b2b-destination-card {
    min-height: 245px;

    display: flex;
    flex-direction: column;

    padding: 25px;

    border: 1px solid var(--kh-border);
    border-radius: 16px;

    color: inherit;

    background: var(--kh-white);

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.kh-b2b-destination-card:hover {
    transform: translateY(-4px);

    border-color: rgba(18,168,220,.42);

    box-shadow: 0 15px 35px rgba(6,26,51,.07);
}

.kh-b2b-destination-number {
    color: var(--kh-blue);

    font-size: 12px;
    font-weight: 800;
}

.kh-b2b-destination-card h3 {
    margin: 32px 0 9px;

    color: var(--kh-navy);

    font-size: 27px;
    font-weight: 800;
    line-height: 1.15;
}

.kh-b2b-destination-card p {
    max-width: 520px;

    margin: 0 0 15px;

    color: var(--kh-muted);

    font-size: 15px;
    line-height: 1.6;
}

.kh-b2b-destination-card strong {
    margin-top: auto;

    color: var(--kh-blue);

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   FOR TRAVEL PARTNERS
   ========================================================= */

.kh-b2b-partners {
    padding: 75px 0;

    background: var(--kh-light);
}

.kh-b2b-partners-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 70px;

    align-items: start;
}

.kh-b2b-partners-heading h2 {
    margin: 0;

    color: var(--kh-navy);

    font-size: clamp(42px, 4.8vw, 62px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.kh-b2b-partners-heading h2 span {
    color: var(--kh-blue);
}

.kh-b2b-partners-content p {
    margin: 0 0 25px;

    color: var(--kh-muted);

    font-size: 17px;
    line-height: 1.7;
}

.kh-b2b-partner-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px 25px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.kh-b2b-partner-list li {
    position: relative;

    padding-left: 22px;

    color: var(--kh-text);

    font-size: 15px;
    line-height: 1.5;
}

.kh-b2b-partner-list li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: var(--kh-blue);

    font-weight: 800;
}


/* =========================================================
   PROCESS
   ========================================================= */

.kh-b2b-process {
    padding: 75px 0 80px;

    background: var(--kh-white);
}

.kh-b2b-process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}

.kh-b2b-process-card {
    min-height: 235px;

    padding: 25px;

    border: 1px solid var(--kh-border);
    border-radius: 16px;

    background: var(--kh-white);
}

.kh-b2b-process-number {
    display: block;

    margin-bottom: 25px;

    color: var(--kh-blue);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .13em;
}

.kh-b2b-process-card h3 {
    margin: 0 0 10px;

    color: var(--kh-navy);

    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.kh-b2b-process-card p {
    margin: 0;

    color: var(--kh-muted);

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.kh-b2b-cta {
    padding: 0 0 70px;

    background: var(--kh-white);
}

.kh-b2b-cta-box {
    position: relative;

    overflow: hidden;

    padding: 65px 30px;

    border-radius: 24px;

    text-align: center;

    background:
        radial-gradient(
            circle at 88% 100%,
            rgba(88,215,241,.22),
            transparent 31%
        ),
        linear-gradient(
            120deg,
            #052238,
            #0a536d
        );
}

.kh-b2b-cta-box::after {
    content: "";

    position: absolute;

    right: -140px;
    bottom: -300px;

    width: 610px;
    height: 610px;

    border: 1px solid rgba(88,215,241,.14);
    border-radius: 50%;

    box-shadow:
        0 0 0 75px rgba(88,215,241,.03),
        0 0 0 150px rgba(88,215,241,.018);
}

.kh-b2b-cta-box > * {
    position: relative;
    z-index: 2;
}

.kh-b2b-cta-box .kh-b2b-eyebrow {
    color: var(--kh-cyan);
}

.kh-b2b-cta-box h2 {
    max-width: 900px;

    margin: 0 auto 18px;

    color: var(--kh-white);

    font-size: clamp(42px, 5vw, 66px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.kh-b2b-cta-box h2 span {
    color: var(--kh-cyan);
}

.kh-b2b-cta-box p {
    max-width: 700px;

    margin: 0 auto 28px;

    color: rgba(255,255,255,.82);

    font-size: 17px;
    line-height: 1.65;
}

.kh-b2b-cta-actions {
    position: relative;
    z-index: 3;

    justify-content: center;
    align-items: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .kh-b2b-benefit-grid,
    .kh-b2b-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kh-b2b-services-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .kh-b2b-services-intro {
        position: static;
        max-width: 750px;
    }

    .kh-b2b-partners-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .kh-b2b-container {
        width: calc(100% - 32px);
    }


    /* LABELS */

    .kh-b2b-eyebrow {
        margin-bottom: 13px;

        font-size: 13px;

        letter-spacing: .13em;
    }


    /* HERO */

    .kh-b2b-hero {
        min-height: auto;
    }

    .kh-b2b-hero-content {
        padding: 55px 0 60px;
    }

    .kh-b2b-hero h1 {
        font-size: 45px;
    }

    .kh-b2b-hero p {
        font-size: 16px;
        line-height: 1.6;
    }

    .kh-b2b-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .kh-b2b-btn {
        width: 100%;
    }


    /* SECTIONS */

    .kh-b2b-why,
    .kh-b2b-services,
    .kh-b2b-destinations,
    .kh-b2b-partners,
    .kh-b2b-process {
        padding: 55px 0;
    }

    .kh-b2b-section-heading {
        margin-bottom: 28px;
    }

    .kh-b2b-section-heading h2,
    .kh-b2b-services-intro h2,
    .kh-b2b-partners-heading h2 {
        font-size: 38px;
    }

    .kh-b2b-section-heading p,
    .kh-b2b-services-intro p {
        font-size: 16px;
    }


    /* BENEFITS */

    .kh-b2b-benefit-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .kh-b2b-benefit-card {
        min-height: auto;
        padding: 21px;
    }


    /* SERVICES */

    .kh-b2b-services-grid {
        gap: 30px;
    }

    .kh-b2b-service-item {
        grid-template-columns: 34px minmax(0, 1fr);

        gap: 12px;

        padding: 19px 0;
    }

    .kh-b2b-service-content h3 {
        font-size: 17px;
    }

    .kh-b2b-service-content p {
        font-size: 13px;
    }


    /* DESTINATIONS */

    .kh-b2b-destination-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .kh-b2b-destination-card {
        min-height: 200px;
        padding: 21px;
    }

    .kh-b2b-destination-card h3 {
        margin-top: 22px;
        font-size: 25px;
    }


    /* PARTNERS */

    .kh-b2b-partners-grid {
        gap: 30px;
    }

    .kh-b2b-partners-content p {
        font-size: 16px;
    }

    .kh-b2b-partner-list {
        grid-template-columns: 1fr;
        gap: 11px;
    }


    /* PROCESS */

    .kh-b2b-process-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .kh-b2b-process-card {
        min-height: auto;
        padding: 21px;
    }


    /* CTA */

    .kh-b2b-cta {
        padding-bottom: 50px;
    }

    .kh-b2b-cta-box {
        padding: 45px 20px;
        border-radius: 20px;
    }

    .kh-b2b-cta-box h2 {
        font-size: 38px;
    }

    .kh-b2b-cta-box p {
        font-size: 15px;
    }

    .kh-b2b-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .kh-b2b-cta-actions .kh-b2b-btn {
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .kh-b2b-container {
        width: calc(100% - 28px);
    }

    .kh-b2b-hero h1 {
        font-size: 40px;
    }

    .kh-b2b-section-heading h2,
    .kh-b2b-services-intro h2,
    .kh-b2b-partners-heading h2,
    .kh-b2b-cta-box h2 {
        font-size: 34px;
    }
}