/* =========================================================
   GIX LAW FIRM - CONTACT PAGE
========================================================= */

.contact-page-intro {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.contact-page-intro h1 {
    margin: 0 0 15px;
    color: #0b2138;
    font-size: 46px;
}

.contact-page-intro p {
    margin: 0;
    color: #666666;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   OFFICE LOCATIONS
========================================================= */

.office-locations {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 24px;
}

.office-card {
    flex: 1 1 30%;
    min-width: 260px;
    margin: 0;
    padding: 32px 28px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-top: 4px solid #c79a4a;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
}

.office-card h2 {
    margin: 0 0 22px;
    color: #0b2138;
    font-size: 24px;
}

.office-card > p {
    color: #666666;
    line-height: 1.85;
}

.office-card .office-contact {
    margin-top: 22px;
    margin-bottom: 0;
    padding-top: 18px;
    border-top: 1px solid #eeeeee;
}

.office-contact strong {
    color: #0b2138;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   ENQUIRY SECTION
========================================================= */

.contact-enquiry {
    margin-top: 20px;
    margin-bottom: 80px;
}

.contact-enquiry h2 {
    margin: 0 0 15px;
    color: #0b2138;
    font-size: 32px;
}

.contact-enquiry .notice {
    margin-bottom: 20px;
    background: #fff8e8;
    border-left: 4px solid #c79a4a;
    color: #68572e;
}

.contact-enquiry form {
    padding: 35px;
}

.contact-enquiry label {
    color: #34495e;
    font-size: 14px;
    font-weight: 600;
}

.contact-enquiry input,
.contact-enquiry textarea,
.contact-enquiry select {
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.contact-enquiry .check {
    font-weight: 400;
}

.contact-enquiry .btn {
    margin-top: 10px;
    background: #0b2138;
}

.contact-enquiry .btn:hover {
    background: #c79a4a;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .office-card {
        flex: 1 1 45%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .contact-page-intro h1 {
        font-size: 38px;
    }

    .office-locations {
        display: block;
    }

    .office-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-enquiry form {
        padding: 24px 20px;
    }

}