/* CONTACT US BANNER */
.contact-banner {
    position: relative;
    width: 100%;
    height: 32rem;                 /* same height as screenshot */
    background-image: url("ContactUs.png"); /* your image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* DARK OVERLAY */
.contact-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);   /* dark transparent layer */
}

/* CENTER TEXT */
.contact-banner h1 {
    position: relative;
    color: #ffffff;
    font-size: 36px;
    font-weight: 600;
    z-index: 2;                   /* above overlay */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-banner {
        height: 200px;
    }
    .contact-banner h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .contact-banner {
        height: 160px;
    }
    .contact-banner h1 {
        font-size: 22px;
    }
}
/* CONTACT SECTION LAYOUT */
.contact-section {
    width: 100%;
    max-width: 1300px;
    margin: 60px auto;
    display: flex;
    justify-content: space-between;
    gap: 12rem;
    padding: 0 40px;
}

/* LEFT FORM AREA */
.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-left p {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
}

/* FORM */
.contact-form label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 14px;
}

.contact-form textarea {
    height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: #f57c21;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 600;
}

.contact-form button:hover {
    background: #e06f17;
}

/* RIGHT SIDE BOX + LOCATION */
.contact-right {
    flex: 1;
}

/* CONTACT CARD */
.contact-card {
    background: #eaf7f1;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #bee9d7;
    margin-bottom: 40px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* Email Row */
.contact-email-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #d7efe4;
}

.email-icon {
    width: 40px;
    height: 40px;
    background: #f57c21;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.email-details span {
    color: #444;
    font-size: 14px;
}

.arrow {
    margin-left: auto;
    font-size: 20px;
    color: #333;
}

/* LOCATION SECTION */
.location-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.location-map {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: block;
}

.location-list {
    margin-top: 12px;
    text-align: center;
    color: #444;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
        padding: 0 20px;
    }

    .location-map {
        max-width: 350px;
    }
}

@media (max-width: 600px) {
    .contact-left h2,
    .location-heading {
        font-size: 24px;
    }
}
