.ke-contact-page {
    position: relative;
    padding: 90px 0 100px;
    background: #fff;
    overflow: hidden;
}

.ke-contact-intro {
    max-width: 100%;
    margin: 0 auto 45px;
    text-align: center;
}

.ke-contact-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #CA8112;
    text-transform: uppercase;
}

.ke-contact-intro h2 {
    margin: 0 0 15px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e1e1e;
}

.ke-contact-intro h2 span {
    color: #CA8112;
}

.ke-contact-intro p {
    max-width: 80%;
    margin: auto;
    font-size: 13px;
    line-height: 1.8;
    color: #707070;
}

.ke-contact-info-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 65px;
}


.ke-contact-info-card {
    position: relative;
    display: flex;
    gap: 17px;
    padding: 25px;
    min-height: 150px;
    background: #fafafa;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    overflow: hidden;
    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}


.ke-contact-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #CA8112;
    transition: width .4s ease;
}

.ke-contact-info-card:hover {
    background: #fff;
    border-color: rgba(202, 129, 18, .35);
    transform: translateY(-5px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, .06);
}

.ke-contact-info-card:hover::before {
    width: 100%;
}

.ke-contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #CA8112;
    background: #faf3e6;
    border-radius: 9px;
    font-size: 16px;
    transition: .35s ease;
}

.ke-contact-info-card:hover
.ke-contact-info-icon {
    color: #fff;
    background: #CA8112;
    transform: scale(1.05);
}

.ke-contact-info-content > span {
    display: block;
    margin-bottom: 5px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: #CA8112;
}

.ke-contact-info-content h3 {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #222;
}

.ke-contact-info-content a {
    display: block;
    width: fit-content;
    margin-bottom: 3px;
    font-size: 12px;
    color: #666;
    text-decoration: none;
    transition: color .25s ease;
}

.ke-contact-info-content a:hover {
    color: #CA8112;
}

.ke-contact-info-content p {
    margin: 0;
    font-size: 10px;
    line-height: 1.65;
    color: #707070;
}

.ke-contact-info-content small {
    display: block;
    font-size: 9px;
    line-height: 1.5;
    color: #999;
}

.ke-contact-main {
    display: grid;
    grid-template-columns:
        .82fr 1.18fr;
    gap: 25px;
    align-items: stretch;
}

.ke-contact-side {
    position: relative;
    padding: 40px;
    background:
        linear-gradient(
            145deg,
            #202020,
            #111111
        );
    border-radius: 14px;
    overflow: hidden;
}

.ke-contact-side::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -120px;
    bottom: -130px;
    border: 1px solid rgba(202, 129, 18, .35);
    border-radius: 50%;
}


.ke-contact-side::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -80px;
    bottom: -85px;
    border: 1px solid rgba(202, 129, 18, .25);
    border-radius: 50%;
}

.ke-contact-side-inner {
    position: relative;
    z-index: 2;
}

.ke-contact-side-label {
    display: inline-block;
    margin-bottom: 13px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #CA8112;
}

.ke-contact-side h3 {
    margin: 0 0 17px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
    color: #fff;
}

.ke-contact-side h3 span {
    color: #CA8112;
}

.ke-contact-side > .ke-contact-side-inner > p {
    margin: 0 0 27px;
    font-size: 12px;
    line-height: 1.8;
    color: #bcbcbc;
}

.ke-response-box {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px;
    margin-bottom: 27px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
}

.ke-response-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #CA8112;
    background: rgba(202, 129, 18, .13);
    border-radius: 8px;
}

.ke-response-box strong {
    display: block;
    margin-bottom: 3px;
    font-size: 12px;
    color: #fff;
}

.ke-response-box p {
    margin: 0;
    font-size: 9px;
    line-height: 1.5;
    color: #aaa;
}

.ke-contact-checks {
    margin-bottom: 35px;
}

.ke-contact-checks > div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.ke-contact-checks i {
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #CA8112;
    background: rgba(202, 129, 18, .12);
    border-radius: 50%;
    font-size: 8px;
}

.ke-contact-checks span {
    font-size: 11px;
    color: #c4c4c4;
}

.ke-contact-bottom-line {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.ke-contact-bottom-line span {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #999;
    text-transform: uppercase;
}

.ke-contact-bottom-line i {
    width: 3px;
    height: 3px;
    background: #CA8112;
    border-radius: 50%;
}

.ke-contact-form-box {
    padding: 38px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, .055);
}

.ke-form-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 27px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.ke-form-heading span {
    display: block;
    margin-bottom: 5px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #CA8112;
}

.ke-form-heading h3 {
    margin: 0;
    font-size: 23px;
    line-height: 1.3;
    color: #222;
}

.ke-form-number {
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    color: #f1f1f1;
}

.ke-form-error {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 13px;
    margin-bottom: 20px;
    color: #a52a2a;
    background: #fff4f4;
    border: 1px solid #f0d1d1;
    border-radius: 7px;
    font-size: 11px;
}

.ke-modern-field {
    margin-bottom: 17px;
}

.ke-modern-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 10px;
    font-weight: 700;
    color: #333;
}

.ke-modern-field label span {
    color: #d33;
}

.ke-modern-input {
    position: relative;
}

.ke-modern-input > i {
    position: absolute;
    top: 50%;
    left: 14px;
    color: #999;
    font-size: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    transition: .3s ease;
}

.ke-modern-input input,
.ke-modern-input textarea {
    width: 100%;
    background: #fafafa;
    border: 1px solid #e4e4e4;
    outline: none;
    border-radius: 7px;
    font-family: inherit;
    font-size: 11px;
    color: #333;
    transition:
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.ke-modern-input input {
    height: 46px;
    padding: 0 13px 0 40px;
}

.ke-modern-input textarea {
    min-height: 125px;
    padding: 13px 13px 13px 40px;
    resize: vertical;
}

.ke-modern-input:focus-within > i {
    color: #CA8112;
}

.ke-modern-input input:focus,
.ke-modern-input textarea:focus {
    background: #fff;
    border-color: #CA8112;
    box-shadow:
        0 0 0 3px rgba(202, 129, 18, .08);
}

.ke-modern-textarea > i {
    top: 16px;
    transform: none;
}

.ke-phone-error {
    display: none;
    margin-top: 5px;
    font-size: 9px;
    color: #d33;
}

.ke-modern-captcha {
    margin: 8px 0 20px;
    overflow: hidden;
}

.ke-form-submit-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ke-modern-submit {
    height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 25px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: #CA8112;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.ke-modern-submit:hover {
    background: #1e1e1e;
    transform: translateY(-2px);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, .12);
}

.ke-modern-submit i {
    transition: transform .3s ease;
}

.ke-modern-submit:hover i {
    transform: translateX(5px);
}

.ke-secure-note {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ke-secure-note i {
    color: #CA8112;
    font-size: 11px;
}

.ke-secure-note span {
    font-size: 9px;
    color: #999;
}

/* RESPONSIVE - TABLET */

@media (max-width: 991px) {

    .ke-contact-page {
        padding: 70px 0 80px;
    }


    .ke-contact-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }


    .ke-contact-info-card {
        min-height: auto;
    }


    .ke-contact-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .ke-contact-side {
        padding: 35px;
    }

}


/* RESPONSIVE - MOBILE */

@media (max-width: 767px) {

    .ke-contact-page {
        padding: 55px 0 65px;
    }


    .ke-contact-intro {
        margin-bottom: 35px;
    }


    .ke-contact-intro h2 {
        font-size: 27px;
    }


    .ke-contact-intro p {
        font-size: 12px;
    }


    .ke-contact-info-grid {
        margin-bottom: 45px;
    }


    .ke-contact-info-card {
        padding: 20px;
    }


    .ke-contact-side {
        padding: 28px 23px;
    }


    .ke-contact-side h3 {
        font-size: 24px;
    }


    .ke-contact-form-box {
        padding: 25px 18px;
    }


    .ke-form-heading h3 {
        font-size: 20px;
    }


    .ke-form-number {
        font-size: 30px;
    }


    .ke-form-submit-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }


    .ke-modern-submit {
        width: 100%;
    }


    .ke-secure-note {
        justify-content: center;
        width: 100%;
    }


    .ke-modern-captcha .g-recaptcha {
        transform: scale(.88);
        transform-origin: left top;
        width: 304px;
        height: 78px;
    }

}

@media (max-width: 420px) {

    .ke-contact-intro h2 {
        font-size: 24px;
    }


    .ke-contact-info-card {
        gap: 12px;

        padding: 17px;
    }


    .ke-contact-info-icon {
        width: 42px;
        height: 42px;
    }


    .ke-contact-form-box {
        padding: 22px 15px;
    }


    .ke-contact-bottom-line {
        flex-wrap: wrap;
    }

}

.ke-contact-map {
    margin-bottom: 65px;
    padding: 25px;
    background: #fafafa;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    overflow: hidden;
}

.ke-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.ke-map-header span {
    display: block;
    margin-bottom: 5px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #CA8112;
}

.ke-map-header h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
}

.ke-map-header a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #fff;
    background: #CA8112;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background .3s ease,
        transform .3s ease;
}

.ke-map-header a:hover {
    color: #fff;
    background: #1e1e1e;
    transform: translateY(-2px);
}

.ke-map-header a i {
    font-size: 10px;
}

.ke-map-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #dedede;
    background: #eee;
}


.ke-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 767px) {

    .ke-contact-map {
        padding: 18px;
        margin-bottom: 50px;
    }


    .ke-map-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }


    .ke-map-header h3 {
        font-size: 19px;
    }

    .ke-map-header a {
        padding: 9px 14px;
    }

    .ke-map-wrapper {
        height: 350px;
    }

}

@media (max-width: 480px) {

    .ke-contact-map {
        padding: 13px;
        border-radius: 10px;
    }

    .ke-map-wrapper {
        height: 300px;
        border-radius: 7px;
    }

}