/* =========================================================
   KALAPANI HOLIDAYS
   CONTACT PAGE
   ========================================================= */

.kh-contact-page {
    --kh-navy: #061a33;
    --kh-navy-2: #0a2945;
    --kh-blue: #12a8dc;
    --kh-blue-dark: #078fbe;
    --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-contact-page *,
.kh-contact-page *::before,
.kh-contact-page *::after {
    box-sizing: border-box;
}

.kh-contact-page h1,
.kh-contact-page h2,
.kh-contact-page h3,
.kh-contact-page p {
    margin-top: 0;
}

.kh-contact-page a {
    text-decoration: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.kh-contact-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.kh-contact-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--kh-blue);

    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;

    letter-spacing: .18em;
    text-transform: uppercase;
}


/* =========================================================
   HERO
   ========================================================= */

.kh-contact-hero {
    position: relative;
    overflow: hidden;

    min-height: 470px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 88% 75%,
            rgba(88,215,241,.2),
            transparent 32%
        ),
        linear-gradient(
            120deg,
            #04182d 0%,
            #06263f 55%,
            #0b526d 100%
        );
}

.kh-contact-hero::after {
    content: "";

    position: absolute;

    right: -180px;
    bottom: -390px;

    width: 700px;
    height: 700px;

    border: 1px solid rgba(88,215,241,.14);
    border-radius: 50%;

    box-shadow:
        0 0 0 85px rgba(88,215,241,.03),
        0 0 0 170px rgba(88,215,241,.018);
}

.kh-contact-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    padding: 85px 0;
}

.kh-contact-hero .kh-contact-eyebrow {
    color: var(--kh-cyan);
}

.kh-contact-hero h1 {
    max-width: 820px;

    margin-bottom: 23px;

    color: var(--kh-white);

    font-size: clamp(48px, 6vw, 76px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.045em;
}

.kh-contact-hero h1 span {
    color: var(--kh-cyan);
}

.kh-contact-hero p {
    max-width: 720px;

    margin-bottom: 0;

    color: rgba(255,255,255,.82);

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   MAIN CONTACT AREA
   ========================================================= */

.kh-contact-main {
    padding: 100px 0 110px;

    background: var(--kh-white);
}

.kh-contact-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 85px;

    align-items: start;
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.kh-contact-info {
    padding-top: 8px;
}

.kh-contact-info h2 {
    max-width: 520px;

    margin-bottom: 23px;

    color: var(--kh-navy);

    font-size: clamp(38px, 4.2vw, 55px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.kh-contact-info h2 span {
    color: var(--kh-blue);
}

.kh-contact-info-intro {
    max-width: 510px;

    margin-bottom: 38px;

    color: var(--kh-muted);

    font-size: 16px;
    line-height: 1.72;
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.kh-contact-detail {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;

    margin-bottom: 29px;
}

.kh-contact-detail-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--kh-blue);

    background: var(--kh-light);

    font-size: 17px;
}

.kh-contact-detail > div:last-child > span {
    display: block;

    margin-bottom: 7px;

    color: var(--kh-blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .15em;
}

.kh-contact-detail a {
    display: block;

    width: fit-content;

    margin-bottom: 5px;

    color: var(--kh-navy);

    font-size: 15px;
    font-weight: 700;
}

.kh-contact-detail a:hover {
    color: var(--kh-blue);
}

.kh-contact-detail p {
    max-width: 380px;

    margin: 0;

    color: var(--kh-muted);

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.kh-contact-whatsapp {
    min-height: 58px;

    display: flex;
    align-items: center;
    gap: 13px;

    max-width: 450px;

    margin-top: 35px;
    padding: 0 18px;

    border-radius: 11px;

    color: var(--kh-white);

    background: var(--kh-navy);

    transition:
        transform .25s ease,
        background .25s ease;
}

.kh-contact-whatsapp:hover {
    transform: translateY(-2px);

    background: #0a2b48;
}

.kh-contact-whatsapp i {
    color: var(--kh-cyan);

    font-size: 20px;
}

.kh-contact-whatsapp span {
    flex: 1;

    font-size: 14px;
    font-weight: 800;
}

.kh-contact-whatsapp strong {
    color: var(--kh-cyan);

    font-size: 20px;
}


/* =========================================================
   FORM BOX
   ========================================================= */

.kh-contact-form-box {
    padding: 40px;

    border: 1px solid var(--kh-border);
    border-radius: 20px;

    background: var(--kh-light);

    box-shadow: 0 18px 50px rgba(6,26,51,.06);
}

.kh-contact-form-heading {
    margin-bottom: 30px;
}

.kh-contact-form-heading > span {
    display: block;

    margin-bottom: 11px;

    color: var(--kh-blue);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
}

.kh-contact-form-heading h2 {
    margin-bottom: 12px;

    color: var(--kh-navy);

    font-size: 34px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
}

.kh-contact-form-heading p {
    max-width: 560px;

    margin-bottom: 0;

    color: var(--kh-muted);

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   FORM
   ========================================================= */

.kh-contact-form {
    width: 100%;
}

.kh-contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.kh-contact-field {
    margin-bottom: 17px;
}

.kh-contact-field label {
    display: block;

    margin-bottom: 8px;

    color: var(--kh-navy);

    font-size: 12px;
    font-weight: 800;
}

.kh-contact-field input,
.kh-contact-field select,
.kh-contact-field textarea {
    width: 100%;

    border: 1px solid #d2dee6;
    border-radius: 9px;

    outline: none;

    color: var(--kh-navy);
    background: var(--kh-white);

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.kh-contact-field input,
.kh-contact-field select {
    height: 49px;

    padding: 0 14px;
}

.kh-contact-field textarea {
    min-height: 135px;

    padding: 14px;

    resize: vertical;
}

.kh-contact-field input::placeholder,
.kh-contact-field textarea::placeholder {
    color: #93a4b2;
}

.kh-contact-field input:focus,
.kh-contact-field select:focus,
.kh-contact-field textarea:focus {
    border-color: var(--kh-blue);

    box-shadow: 0 0 0 3px rgba(18,168,220,.1);
}

.kh-contact-submit {
    width: 100%;
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-top: 5px;

    padding: 0 20px;

    border: 0;
    border-radius: 9px;

    cursor: pointer;

    color: var(--kh-white);
    background: var(--kh-blue);

    font-family: inherit;
    font-size: 14px;
    font-weight: 800;

    transition:
        transform .25s ease,
        background .25s ease;
}

.kh-contact-submit:hover {
    transform: translateY(-2px);

    background: var(--kh-blue-dark);
}

.kh-contact-submit span {
    font-size: 19px;
}

.kh-contact-form-note {
    margin: 13px 0 0;

    color: #7c8d9b;

    font-size: 11px;
    line-height: 1.5;

    text-align: center;
}


/* =========================================================
   QUICK CONTACT
   ========================================================= */

.kh-contact-quick {
    padding: 0 0 110px;

    background: var(--kh-white);
}

.kh-contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.kh-contact-quick-card {
    min-height: 105px;

    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 20px;
    gap: 14px;
    align-items: center;

    padding: 20px;

    border: 1px solid var(--kh-border);
    border-radius: 14px;

    color: inherit;
    background: var(--kh-white);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.kh-contact-quick-card:hover {
    transform: translateY(-3px);

    border-color: rgba(18,168,220,.4);

    box-shadow: 0 12px 30px rgba(6,26,51,.07);
}

.kh-contact-quick-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: var(--kh-blue);

    background: var(--kh-light);

    font-size: 17px;
}

.kh-contact-quick-card div:nth-child(2) span {
    display: block;

    margin-bottom: 5px;

    color: var(--kh-blue);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
}

.kh-contact-quick-card strong {
    display: block;

    color: var(--kh-navy);

    font-size: 14px;
    font-weight: 800;
}

.kh-contact-quick-card b {
    color: var(--kh-blue);

    font-size: 19px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.kh-contact-cta {
    padding: 0 0 115px;

    background: var(--kh-white);
}

.kh-contact-cta-box {
    position: relative;
    overflow: hidden;

    padding: 75px 35px;

    border-radius: 25px;

    text-align: center;

    background:
        radial-gradient(
            circle at 85% 100%,
            rgba(88,215,241,.2),
            transparent 31%
        ),
        linear-gradient(
            120deg,
            #06243a,
            #0b526a
        );
}

.kh-contact-cta-box::after {
    content: "";

    position: absolute;

    right: -130px;
    bottom: -280px;

    width: 590px;
    height: 590px;

    border: 1px solid rgba(88,215,241,.13);
    border-radius: 50%;
}

.kh-contact-cta-box > * {
    position: relative;
    z-index: 2;
}

.kh-contact-cta-box .kh-contact-eyebrow {
    color: var(--kh-cyan);
}

.kh-contact-cta-box h2 {
    max-width: 760px;

    margin: 0 auto 20px;

    color: var(--kh-white);

    font-size: clamp(40px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.kh-contact-cta-box h2 span {
    color: var(--kh-cyan);
}

.kh-contact-cta-box p {
    max-width: 650px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,.8);

    font-size: 16px;
    line-height: 1.7;
}

.kh-contact-cta-button {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 0 25px;

    border-radius: 9px;

    color: var(--kh-navy);
    background: var(--kh-white);

    font-size: 14px;
    font-weight: 800;

    transition:
        transform .25s ease,
        background .25s ease;
}

.kh-contact-cta-button:hover {
    transform: translateY(-2px);

    background: #eafaff;
}

.kh-contact-cta-button span {
    color: var(--kh-blue);

    font-size: 19px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .kh-contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .kh-contact-info {
        max-width: 760px;
    }

    .kh-contact-quick-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .kh-contact-container {
        width: calc(100% - 32px);
    }


    /* HERO */

    .kh-contact-hero {
        min-height: auto;
    }

    .kh-contact-hero-content {
        padding: 70px 0 75px;
    }

    .kh-contact-hero h1 {
        font-size: 46px;
    }

    .kh-contact-hero p {
        font-size: 16px;
    }


    /* MAIN */

    .kh-contact-main {
        padding: 75px 0 80px;
    }

    .kh-contact-info h2 {
        font-size: 38px;
    }


    /* FORM */

    .kh-contact-form-box {
        padding: 27px 20px;

        border-radius: 16px;
    }

    .kh-contact-form-heading h2 {
        font-size: 29px;
    }

    .kh-contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    /* QUICK */

    .kh-contact-quick {
        padding-bottom: 80px;
    }

    .kh-contact-quick-grid {
        gap: 12px;
    }


    /* CTA */

    .kh-contact-cta {
        padding-bottom: 80px;
    }

    .kh-contact-cta-box {
        padding: 55px 22px;

        border-radius: 20px;
    }

    .kh-contact-cta-box h2 {
        font-size: 38px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .kh-contact-container {
        width: calc(100% - 28px);
    }

    .kh-contact-hero h1 {
        font-size: 40px;
    }

    .kh-contact-info h2,
    .kh-contact-cta-box h2 {
        font-size: 34px;
    }

    .kh-contact-detail {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 11px;
    }

    .kh-contact-detail-icon {
        width: 42px;
        height: 42px;
    }

}

/* =========================================================
   CONTACT PAGE - COMPACT SPACING OVERRIDE
   ========================================================= */

.kh-contact-hero {
    min-height: 390px;
}

.kh-contact-hero-content {
    padding: 65px 0;
}

.kh-contact-main {
    padding: 65px 0 70px;
}

.kh-contact-info-intro {
    margin-bottom: 27px;
}

.kh-contact-detail {
    margin-bottom: 20px;
}

.kh-contact-whatsapp {
    margin-top: 22px;
}

.kh-contact-form-box {
    padding: 32px;
}

.kh-contact-form-heading {
    margin-bottom: 22px;
}

.kh-contact-field {
    margin-bottom: 13px;
}

.kh-contact-quick {
    padding-bottom: 70px;
}

.kh-contact-quick-card {
    min-height: 88px;
}

.kh-contact-cta {
    padding-bottom: 70px;
}

.kh-contact-cta-box {
    padding: 60px 35px;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

    .kh-contact-hero-content {
        padding: 55px 0 60px;
    }

    .kh-contact-main {
        padding: 55px 0 60px;
    }

    .kh-contact-info-intro {
        margin-bottom: 22px;
    }

    .kh-contact-detail {
        margin-bottom: 17px;
    }

    .kh-contact-whatsapp {
        margin-top: 18px;
    }

    .kh-contact-form-box {
        padding: 24px 19px;
    }

    .kh-contact-form-heading {
        margin-bottom: 19px;
    }

    .kh-contact-field {
        margin-bottom: 12px;
    }

    .kh-contact-quick {
        padding-bottom: 60px;
    }

    .kh-contact-cta {
        padding-bottom: 60px;
    }

    .kh-contact-cta-box {
        padding: 50px 22px;
    }

}