/* ===============================
   CONTACT PAGE STYLING
================================= */

/* Banner */
.page-banner {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url('../images/contact-banner.jpg') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-banner h1 {
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-banner p {
    font-size: 16px;
    opacity: 0.9;
}


/* ===============================
   CONTACT SECTION
================================= */

.contact-section {
    padding: 80px 0;
    background: #f8f9fb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}


/* ===============================
   CONTACT INFO BOX
================================= */

.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.contact-info h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #222;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.contact-info i {
    color: #6a5af9;
    margin-right: 10px;
}


/* ===============================
   CONTACT FORM BOX
================================= */

.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.contact-form-box h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #222;
}


/* ===============================
   FORM STYLING
================================= */

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6a5af9;
    box-shadow: 0 0 0 2px rgba(106,90,249,0.15);
}

.contact-form textarea {
    resize: none;
    min-height: 120px;
}


/* ===============================
   SUBMIT BUTTON
================================= */

.contact-form button {
    background: #6a5af9;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #5848e5;
}


/* ===============================
   MAP SECTION
================================= */

.map-section {
    padding: 60px 0;
    background: #fff;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border-radius: 18px;
}


/* ===============================
   RESPONSIVE DESIGN
================================= */

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-box {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .page-banner h1 {
        font-size: 28px;
    }

    .contact-section {
        padding: 60px 0;
    }
}
