.contact-banner.with-overlay {
    position: relative;
    background-image: url("/landing/images/banner-5.webp");
    background-size: cover;
    background-position: 100% 80%;
    background-repeat: no-repeat;
    /* min-height: 400px; */
    z-index: 0;
    overflow: hidden;
}
.contact-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-box,
.info-column {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex: 1 1 500px;
    box-sizing: border-box;
}

.contact-box {
    padding: 40px 24px;
}
.info-column {
    padding: 24px;
}

.contact-box h2,
.info-box h2 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #222;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 200px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

.info-box {
    background: #f9f9f9;
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-item {
    font-size: 14px;
    margin-bottom: 10px;
}

.info-item strong {
    display: inline-block;
    width: 90px;
    color: #111;
}

.business-hours p {
    font-size: 14px;
    margin: 6px 0;
}

.map-container {
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        flex: 1 1 100%;
    }
}
