/* 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%;
}

/* CENTER TEXT */
.contact-banner h1 {
    position: relative;
    color: #ffffff;
    font-size: 36px;
    font-weight: 600;
    z-index: 2;
    /* above overlay */
}

/* PILOT PROGRAM BUTTON */
.pilot-btn {
    position: absolute;
    right: 28px;
    bottom: 0;
    z-index: 3;
    background: #f57c21;
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px 12px 0 0;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(245, 124, 33, 0.18);
    transition: transform 0.14s ease, box-shadow 0.14s ease;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-banner {
        height: 200px;
    }

    .contact-banner h1 {
        font-size: 28px;
    }

    .pilot-btn {
        right: 18px;
        bottom: 0;
        padding: 12px 18px;
    }
}

@media (max-width: 480px) {
    .contact-banner {
        height: 160px;
    }

    .contact-banner h1 {
        font-size: 22px;
    }

    .pilot-btn {
        right: 16px;
        bottom: 0px;
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 10px 10px 0 0;
    }
}

/* 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;
    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;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    .body {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* 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: 650px;
    max-width: 650px;
    margin: 0 auto;
    display: block;
    margin-top: 60px;
}

.location-map:hover {
    transform: scale(1.1);
}

.location-list {
    margin-top: 30px;
    text-align: center;
    color: #444;
    font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
        padding: 0 20px;
        width: 75%;
        max-width: 100%;
        gap: 5rem;
    }

    .location-map {
        max-width: 300px;
    }
}

@media (max-width: 600px) {

    .contact-left h2,
    .location-heading {
        font-size: 24px;
    }
}