/* =========================
   CONTACT PAGE
========================= */

.contact-page {
    padding: 90px 0;
    background: #ffffff;
}

/* TITLE */
.contact-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 60px;
}

.contact-title-icon {
    width: 26px;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/* LAYOUT */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: flex-start;
}

/* LEFT */
.contact-offices {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    column-gap: 70px;
    row-gap: 55px;
}

.contact-office {
    font-size: 1.4rem;
    color: #000;
}

.office-location {
    font-size: 2.2rem;
    font-weight: 600;
    color: #BF1D21;
    margin-bottom: 6px;
}

.office-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.office-address,
.office-contact {
    font-size: 1.1rem;
    line-height: 1.55;
}

/* RIGHT */
.contact-right {
    display: flex;
    justify-content: flex-end;
}

.contact-form-box {
    width: 100%;
    max-width: 550px;
    padding: 34px 30px;
    background: #fffefe;
    border: 1.5px solid #BF1D21;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(31, 87, 255, 0.08);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-title-wrap {
        justify-content: center;
    }

    .contact-offices {
        grid-template-columns: 1fr;
    }

    .contact-right {
        justify-content: center;
    }

    .contact-form-box {
        max-width: 100%;
    }
}



@media (max-width: 992px) {
    .form-control {
        margin-top: 15px;
    }

}

@media (max-width: 768px) {

    .contact-checkboxes {
        gap: 20px;
    }

}