/* ============================================
   CONTACT US PAGE - CSS STYLES
   ============================================ */

/* ============================================
   CONTACT BANNER
   ============================================ */
.contact-banner {
    position: relative;
    width: 100%;
    height: 1080px;
    overflow: hidden;
    background: #000;
}

.contact-banner-image {
    position: absolute;
    inset: 0;
}

.contact-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-banner-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 24, 62, 0) 50%, rgb(0, 38, 99) 109.35%),
        linear-gradient(0deg, rgba(0, 24, 62, 0) 75.926%, rgb(0, 38, 99) 110.97%);
    pointer-events: none;
}

.contact-banner-content {
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    z-index: 2;
}

.contact-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 72px;
    color: var(--white);
    margin-bottom: 40px;
}

.contact-intro {
    max-width: 1259px;
}

.contact-intro p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 32px;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 24px;
}

.contact-intro p:last-child {
    margin-bottom: 0;
}

/* ============================================
   OFFICE LOCATIONS
   ============================================ */
.contact-offices {
    padding: 100px 0;
}

.office-card {
    display: flex;
    gap: 152px;
    padding: 24px;
    margin-bottom: 100px;
    align-items: stretch;
}

.office-card:last-child {
    margin-bottom: 0;
}

.office-left {
    border-left: 2px solid var(--primary);
    padding-left: 26px;
}

.office-right {
    border-right: 2px solid var(--primary);
    padding-right: 26px;
    gap: 191px;
}

.office-details {
    display: flex;
    flex-direction: column;
}

.office-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 12px;
}

.office-address {
    margin-bottom: auto;
}

.office-address p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: var(--grey);
    line-height: 1.5;
    margin-bottom: 0;
}

.office-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 24px;
    border-radius: 36px;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-contact:hover {
    background: #003d6d;
}

.office-image {
    flex-shrink: 0;
    width: 752px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   INDIA MAP SECTION
   ============================================ */
.contact-map-section {
    padding: 0 0 100px;
}

.map-content {
    display: flex;
    flex-direction: column;
}

.map-title {
    margin-bottom: 0;
}

.map-body {
    display: flex;
    align-items: flex-end;
    gap: 60px;
}

.map-image {
    flex: 1;
}

.map-image img {
    width: 100%;
    height: auto;
}

.map-actions {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-shrink: 0;
}

.map-actions .btn-contact {
    width: fit-content;
}

/* ============================================
   SIDE-BY-SIDE OFFICE CARDS
   ============================================ */
.office-cards-row {
    display: flex;
    gap: 80px;
}

.office-cards-row .office-card {
    flex: 1;
    margin-bottom: 0;
}

.office-cards-row .office-left {
    border-left: 2px solid var(--primary);
    border-right: none;
    padding-left: 26px;
    padding-right: 0;
}

.office-cards-row .office-right {
    border-right: 2px solid var(--primary);
    border-left: none;
    padding-right: 26px;
    padding-left: 0;
    gap: 0;
}

.office-cards-row .office-actions {
    margin-top: auto;
    padding-top: 40px;
}

/* ============================================
   MOBILE STYLES - 768px and below
   ============================================ */
@media screen and (max-width: 768px) {
    /* CONTACT BANNER - MOBILE */
    .contact-banner {
        height: 545px;
    }

    .contact-banner-content {
        bottom: 16px;
        padding: 0 16px;
    }

    .contact-heading {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .contact-intro {
        max-width: 100%;
    }

    .contact-intro p {
        font-size: 16px;
        margin-bottom: 16px;
    }

    /* OFFICE LOCATIONS - MOBILE */
    .contact-offices {
        padding: 32px 0 40px;
    }

    .office-cards-row {
        flex-direction: column;
        gap: 32px;
    }

    .office-card {
        flex-direction: column;
        gap: 32px;
        padding: 26px 24px 24px;
        margin-bottom: 32px;
        border-left: none;
        border-right: none;
        border-top: 2px solid var(--primary);
    }

    .office-left,
    .office-right,
    .office-cards-row .office-left,
    .office-cards-row .office-right {
        border-left: none;
        border-right: none;
        padding-left: 0;
        padding-right: 0;
    }

    .office-details {
        min-height: auto;
        gap: 24px;
    }

    .office-title {
        font-family: 'Raleway', sans-serif;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .office-address p {
        font-size: 16px;
    }

    .office-actions {
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }

    .btn-contact {
        padding: 12px 24px;
        font-size: 16px;
        width: fit-content;
    }

    .office-image {
        width: 100%;
        height: 213px;
    }

    /* INDIA MAP SECTION - MOBILE */
    .contact-map-section {
        padding: 0 0 40px;
    }

    .map-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .map-body {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .map-image {
        width: 100%;
        overflow: visible;
    }

    .map-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .map-actions {
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
    }
}
