/* ================= SMALL BANNER ================= */

.small-banner {
    height: 180px;
    position: relative;
    background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f') center/cover no-repeat;
}

.small-banner .banner-overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.small-banner h1 {
    color: #fff;
    font-size: 32px;
}

/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
}

/* Contact Info */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-box i {
    font-size: 22px;
    color: #c9a74d;
    margin-top: 5px;
}

.info-box h4 {
    margin-bottom: 5px;
}

/* Contact Form */
.contact-form {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c9a74d;
}

.primary-btn {
    background: #c9a74d;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn:hover {
    background: #a8893c;
}

/* ================= MAP ================= */

.map-section iframe {
    display: block;
}
/* ================= MAP SECTION ================= */

.map-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.map-heading {
    margin-bottom: 40px;
}

.map-heading h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.map-heading p {
    color: #555;
}

.map-box iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Responsive */

@media (max-width: 992px) {
    .map-box iframe {
        height: 350px;
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .contact-wrapper {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
}
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.contact-form select:focus {
    outline: none;
    border-color: #c9a74d;
}

.form-message {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
}

.form-error {
    color: #d93025;
}

.form-success {
    color: #2e7d32;
}
