/* =========================================================
   CONTACT PAGE
========================================================= */

.page-banner h1{
    align-items: center;
    display: flex;
}


/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}


/* ================= CONTACT INFORMATION ================= */

.contact-info {
    padding-right: 20px;
}

.contact-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-info > h2 {
    margin: 0 0 18px;
    font-size: 36px;
    line-height: 1.2;
}

.contact-info > p {
    margin-bottom: 35px;
    line-height: 1.8;
    color: #000;
}


/* ================= CONTACT ITEMS ================= */

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #f1f6f9;
}

.contact-icon i {
    font-size: 18px;
}

.contact-item h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.contact-item p {
    margin: 0;
    color: #000;
    font-size: 18px;
    line-height: 1.7;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}


/* ================= CONTACT FORM ================= */

.contact-form-box {
    padding: 35px;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 12px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.contact-form-box h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.contact-form-box > p {
    margin: 0 0 25px;
    color: #666;
    line-height: 1.7;
}


/* ================= FORM ================= */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    font-size: 14px;

    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #dcdcdc;

    border-radius: 6px;

    background: #ffffff;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    box-sizing: border-box;

    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1d5d7f;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}


/* ================= FORM BUTTON ================= */

.contact-form-box .btn {
    border: none;

    cursor: pointer;

    display: inline-flex;

    align-items: center;

    gap: 10px;
}


/* ================= LOCATION ================= */

.location-section {
    padding: 80px 0;
    background: #f7f9fa;
}

.section-title {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 35px;
}

.section-title span {
    display: inline-block;

    margin-bottom: 10px;

    font-size: 18px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.section-title h2 {
    margin: 0 0 12px;

    font-size: 34px;
}

.section-title p {
    margin: 0;

    color: #000;

    line-height: 1.7;
}


/* ================= MAP ================= */

.map-container {
    width: 100%;

    height: 400px;

    overflow: hidden;

    border-radius: 12px;

    border: 1px solid #e2e2e2;
}

.map-container iframe {
    width: 100%;

    height: 100%;

    border: 0;
}


/* ================= CTA ================= */

.cta {
    padding: 75px 20px;

    text-align: center;
}

.cta h2 {
    margin: 0 0 15px;

    font-size: 34px;
}

.cta p {
    max-width: 700px;

    margin: 0 auto 25px;

    color: #fff;

    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-info {
        padding-right: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-section {
        padding: 55px 0;
    }

    .contact-info > h2 {
        font-size: 28px;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .contact-form-box h2 {
        font-size: 24px;
    }

    .location-section {
        padding: 55px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .map-container {
        height: 300px;
    }

    .cta {
        padding: 55px 20px;
    }

    .cta h2 {
        font-size: 27px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

}