﻿.contact-section {
    background: url('/images/default-source/ihh/background-image/enquire-bg-img.webp') center center / cover no-repeat;
    padding: 80px 20px;
    position: relative;
}

    /* Optional overlay to match screenshot look */
    .contact-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(89, 122, 148, 0.8);
    }

.contact-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2; /* to stay above overlay */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT CONTENT */
.contact-left {
    flex: 1;
    min-width: 300px;
    color: #ffffff;
}

    .contact-left h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
    }

.hotline-title,
.hotline-time {
    font-size: 18px;
}

/* FORM CARD */
.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    flex: 1;
    min-width: 320px;
}
@media(max-width:768px){
    .contact-form-card {
        padding: 20px;
    }
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-left {
        text-align: center;
    }
}

.badge-resident {
    background-color: #BBBDDF;
    color: #2F2E73;
    font-weight: 500;
    border-radius: 5px;
    padding: 0.25rem 0.5rem;
    width: fit-content;
}

.badge-purple {
    background-color: #F5E6F1;
    color: var(--dark-purple);
    font-weight: 500;
    border-radius: 5px;
    padding: 0.25rem 0.5rem;
    width: fit-content;
}