/* ==========================================
   CONTACT PAGE
========================================== */

.chi-container {
    width: 100%;
    max-width: 1350px;
    margin: auto;
    padding: 0 20px;
}


/* ==========================================
   HERO
========================================== */

.chi-contact-hero {
    position: relative;
    padding: 30px 0 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(8,169,87,.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #fff,
            #f5faf7
        );
}

.chi-contact-heading {
    max-width: 750px;
}

.chi-contact-eyebrow,
.chi-small-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 11px;
    border-radius: 50px;
    background: #fff1f2;
    border: 1px solid rgba(237,28,36,.12);
    color: #df1820;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    /* text-transform: uppercase; */
}

.chi-contact-heading h1 {
    margin: 10px 0;
    font-size: 32px;
    line-height: 1.12;
    font-weight: 600;
    color: #17201c;
    letter-spacing: -1.2px;
}

.chi-contact-heading h1 span {
    /* display: block; */
    color: #ed1c24;
}

.chi-contact-heading p {
    max-width: 650px;

    margin: 0;

    color: #6e7974;

    font-size: 14px;
    line-height: 1.75;
}


/* ==========================================
   MAIN CONTACT
========================================== */

.chi-contact-section {
    padding: 30px 0;
    background: #fff;
}

.chi-contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 30px;
    align-items: stretch;
}


/* LEFT */

.chi-contact-info {
    padding: 10px 0;
}

.chi-small-label {
    background: #eef9f3;
    border-color: rgba(8,169,87,.12);
    color: #078a47;
}

.chi-contact-info h2 {
    margin: 9px 0 10px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    color: #17201c;
}

.chi-contact-info h2 span {
    display: block;
    color: #ed1c24;
}

.chi-info-text {
    margin-bottom: 22px;

    color: #717d77;

    font-size: 13px;
    line-height: 1.75;
}


/* Emergency */

.chi-emergency-box {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px;
    margin-bottom: 14px;
    border-radius: 10px;
    background: #ed1c24;
    color: #fff;
    text-decoration: none;
    box-shadow:
        0 12px 25px rgba(237,28,36,.17);
    transition: .3s ease;
}

.chi-emergency-box:hover {
    color: #fff;
    transform: translateY(-3px);
}

.chi-emergency-icon {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: rgba(255,255,255,.15);
}

.chi-emergency-box small,
.chi-emergency-box strong {
    display: block;
}

.chi-emergency-box small {
    font-size: 13px;
    opacity: .75;
}

.chi-emergency-box strong {
    margin-top: 2px;
    font-size: 16px;
}

.chi-emergency-box > i {
    margin-left: auto;
    font-size: 10px;
}


/* Contact Details */

.chi-contact-details {
    display: flex;
    flex-direction: column;

    gap: 15px;
}

.chi-contact-item {
    display: flex;
    align-items: center;

    gap: 11px;
}

.chi-contact-icon {
    width: 37px;
    height: 37px;

    min-width: 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #fff1f2;

    color: #ed1c24;

    font-size: 11px;
}

.chi-contact-icon.green {
    background: #eef9f3;
    color: #08a957;
}

.chi-contact-item span {
    display: block;
    margin-bottom: 2px;
    color: #58635e;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.chi-contact-item p {
    margin: 0;
    color: #34403a;
    font-size: 14px;
    font-weight: 700;
}


/* Social */

.chi-contact-social {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 25px;
}

.chi-contact-social > span {
    color: #232825;
    font-size: 13px;
    font-weight: 700;
}

.chi-contact-social > div {
    display: flex;
    gap: 6px;
}

.chi-contact-social a {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    background: #f4f7f5;

    color: #53605a;

    font-size: 10px;

    text-decoration: none;

    transition: .3s ease;
}

.chi-contact-social a:hover {
    background: #ed1c24;
    color: #fff;

    transform: translateY(-3px);
}


/* ==========================================
   FORM
========================================== */

.chi-contact-form-wrap {
    padding: 20px;
    border: 1px solid #e4ebe7;
    border-radius: 14px;
    background: #fff;
    box-shadow:
        0 15px 45px rgba(20,50,35,.06);
}

.chi-form-heading span {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #08a957;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: .6px;
}

.chi-form-heading h2 {
    margin: 8px 0 5px;
    font-size: 23px;
    font-weight: 600;
    color: #17201c;
}

.chi-form-heading p {
    margin: 0 0 20px;

    color: #87918c;

    font-size: 10px;
}


/* Form */

.chi-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.chi-field {
    margin-bottom: 13px;
}

.chi-field label {
    display: block;
    margin-bottom: 5px;
    color: #44504a;
    font-size: 14px;
    font-weight: 600;
}

.chi-input {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 0 11px;
    border: 1px solid #e2e9e5;
    border-radius: 7px;
    background: #fafcfb;
    transition: .3s ease;
}

.chi-input:focus-within {
    border-color: #08a957;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(8,169,87,.07);
}

.chi-input > i {
    width: 20px;
    color: #9aa49f;
    font-size: 12px;
}

.chi-input input,
.chi-input select,
.chi-input textarea {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #35413b;
    font-family: inherit;
    font-size: 14px;
}

.chi-input textarea {
    padding: 10px 0;

    resize: vertical;
}

.chi-input select {
    cursor: pointer;
}

.chi-textarea {
    align-items: flex-start;

    min-height: 100px;
}


/* Submit */

.chi-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    border: 0;
    border-radius: 6px;
    background: #ed1c24;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow:
        0 8px 18px rgba(237,28,36,.17);
    transition: .3s ease;
}

.chi-submit:hover {
    background: #c81018;

    transform: translateY(-2px);
}


/* ==========================================
   LOCATION
========================================== */

.chi-location-section {
    padding: 60px 0;

    background: #f7faf8;
}

.chi-location-heading {
    text-align: center;

    max-width: 600px;

    margin: 0 auto 30px;
}

.chi-location-heading h2 {
    margin: 10px 0 6px;

    font-size: 30px;

    color: #17201c;
}

.chi-location-heading p {
    margin: 0;

    color: #7b8580;

    font-size: 11px;
}

.chi-map-box {
    position: relative;

    min-height: 300px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border-radius: 14px;

    border: 1px solid #e1e9e4;

    background: #eaf2ee;
}

.chi-map-placeholder {
    position: absolute;
    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 7px;

    color: #a1aaa6;

    font-size: 11px;
}

.chi-map-placeholder i {
    font-size: 30px;

    color: #08a957;
}

.chi-map-content {
    position: relative;

    z-index: 2;

    width: 250px;

    padding: 22px;

    border-radius: 10px;

    background: rgba(255,255,255,.96);

    text-align: center;

    box-shadow:
        0 15px 35px rgba(20,50,35,.10);
}

.chi-map-icon {
    width: 40px;
    height: 40px;

    margin: 0 auto 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff0f1;

    color: #ed1c24;
}

.chi-map-content h3 {
    margin: 0 0 4px;

    font-size: 13px;
}

.chi-map-content p {
    margin: 0 0 12px;

    color: #87918c;

    font-size: 9px;
}

.chi-map-btn {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 7px 11px;

    border-radius: 5px;

    background: #08a957;

    color: #fff;

    font-size: 8px;

    text-decoration: none;
}


/* ==========================================
   CTA
========================================== */

.chi-contact-cta {
    padding: 35px 0;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(8,169,87,.16),
            transparent 30%
        ),
        #17201c;
}

.chi-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}

.chi-cta-inner > div > span {
    color: #08a957;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: .6px;
}

.chi-cta-inner h2 {
    margin: 6px 0 3px;

    color: #fff;

    font-size: 24px;

    font-weight: 600;
}
.chi-cta-inner p {
    margin: 0;
    color: #aeb8b3;
    font-size: 15px;
}
.chi-cta-btn {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 9px 18px;

    border-radius: 6px;

    background: #ed1c24;

    color: #fff;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition: .3s ease;
}

.chi-cta-btn:hover {
    background: #c81018;

    color: #fff;

    transform: translateY(-2px);
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

    .chi-contact-grid {
        grid-template-columns: 1fr;
    }

    .chi-contact-info {
        text-align: center;
    }

    .chi-contact-info h2 span {
        display: inline;
    }

    .chi-contact-details {
        max-width: 450px;

        margin: auto;

        text-align: left;
    }

    .chi-contact-social {
        justify-content: center;
    }

    .chi-contact-form-wrap {
        max-width: 650px;

        margin: auto;

        width: 100%;
    }

}


@media (max-width: 600px) {

    .chi-container {
        padding: 0 15px;
    }

    .chi-contact-hero {
        padding: 40px 0;
    }

    .chi-contact-heading {
        text-align: center;
    }

    .chi-contact-heading h1 {
        font-size: 22px;
    }

    .chi-contact-heading p {
        font-size: 12px;
    }

    .chi-contact-section,
    .chi-location-section {
        padding: 6px 0;
    }

    .chi-contact-info h2 {
        font-size: 22px;
    }

    .chi-contact-form-wrap {
        padding: 20px 15px;
    }

    .chi-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .chi-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .chi-cta-btn {
        width: 100%;
        justify-content: center;
    }

}/* ==========================================
   CONTACT INFORMATION - NEW LOOK
========================================== */

.chi-contact-cards {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
    background: #f8fbf9;
}

.chi-contact-cards::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    left: -220px;
    top: -220px;

    border-radius: 50%;

    background: rgba(237, 28, 36, .035);
}

.chi-contact-cards::after {
    content: "";
    position: absolute;

    width: 380px;
    height: 380px;

    right: -200px;
    bottom: -220px;

    border-radius: 50%;

    background: rgba(8, 169, 87, .045);
}

.chi-container {
    position: relative;
    z-index: 2;

    width: 100%;
    margin: auto;
    padding: 0 20px;
}


/* ==========================================
   HEADING
========================================== */

.chi-section-head {
    max-width: 650px;
    margin: 0 auto 32px;

    text-align: center;
}

.chi-head-line {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-bottom: 9px;
}

.chi-head-line span {
    width: 25px;
    height: 1px;

    background: #ed1c24;
}

.chi-head-line small {
    color: #ed1c24;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.chi-section-head h2 {
    margin: 0 0 8px;
    color: #18221d;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
}

.chi-section-head h2 strong {
    color: #ed1c24;
}

.chi-section-head p {
    max-width: 500px;

    margin: auto;

    color: #7b8580;

    font-size: 11px;
    line-height: 1.7;
}


/* ==========================================
   GRID
========================================== */

.chi-info-grid {
    display: grid;

    grid-template-columns:
        1.15fr
        1fr
        1fr
        1fr;

    gap: 14px;
}


/* ==========================================
   CARD
========================================== */

.chi-info-card {
    position: relative;
    /* min-height: 285px; */
    padding: 20px;
    overflow: hidden;
    border: 1px solid #b4dac1;
    border-radius: 14px;
    background: #fff;
    box-shadow:
        0 8px 30px rgba(25, 55, 40, .055);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.chi-info-card::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -45px;
    bottom: -45px;

    border-radius: 50%;

    background: rgba(237, 28, 36, .035);

    transition: .4s ease;
}

.chi-info-card:hover {
    transform: translateY(-7px);

    border-color: rgba(237, 28, 36, .15);

    box-shadow:
        0 18px 40px rgba(25, 55, 40, .10);
}

.chi-info-card:hover::after {
    transform: scale(2);
}


/* Green Card */

.chi-green-card::after {
    background: rgba(8, 169, 87, .045);
}


/* ==========================================
   CARD TOP
========================================== */

.chi-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
}

.chi-card-top > span {
    color: #c8d0cc;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .5px;
}


/* ==========================================
   ICON
========================================== */

.chi-card-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #fff0f1;

    color: #ed1c24;

    font-size: 14px;

    transition: .35s ease;
}

.chi-green-card .chi-card-icon {
    background: #edf9f2;
    color: #08a957;
}

.chi-info-card:hover .chi-card-icon {
    transform:
        translateY(-3px)
        rotate(-6deg);
}


/* ==========================================
   CONTENT
========================================== */

.chi-card-label {
    display: block;
    margin-bottom: 6px;
    color: #08a957;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .8px;
}

.chi-card-content h3 {
    margin: 0 0 2px;
    color: #1c2721;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 600;
}

.chi-card-content > p {
    margin: 0 0 5px;
    color: #2e3230;
    font-size: 13px;
    line-height: 1.7;
}


/* ==========================================
   PERSON
========================================== */

.chi-person {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.chi-person strong {
    color: #303b35;
    font-size: 17px;
}

.chi-person small {
    color: #272b29;
    font-size: 14px;
}


/* ==========================================
   LINKS
========================================== */

.chi-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-top: 4px;
    border-top: 1px solid #edf1ef;
    color: #ed1c24;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.chi-card-link i {
    font-size: 7px;

    transition: .25s ease;
}

.chi-card-link:hover {
    color: #c81018;
}

.chi-card-link:hover i {
    transform: translate(2px, -2px);
}


/* ==========================================
   CONTACT DETAIL
========================================== */

.chi-contact-detail {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    color: #68736e;
    font-size: 13px;
    text-decoration: none;
    transition: .25s ease;
}

.chi-contact-detail i {
    width: 18px;
    color: #ed1c24;
    font-size: 14px;
    text-align: center;
}

.chi-contact-detail:hover {
    color: #ed1c24;
}


/* ==========================================
   AVAILABLE
========================================== */

.chi-available {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid #edf1ef;
    color: #7b8580;
    font-size: 13px;
}

.chi-available i {
    color: #08a957;

    font-size: 8px;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1050px) {

    .chi-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .chi-contact-cards {
        padding: 40px 0;
    }

    .chi-container {
        padding: 0 15px;
    }

    .chi-section-head {
        margin-bottom: 25px;
    }

    .chi-section-head h2 {
        font-size: 26px;
    }

    .chi-section-head p {
        font-size: 10px;
    }

    .chi-info-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .chi-info-card {
        min-height: auto;

        padding: 18px;
    }

}