/* Contact Section - Exact Image Match Styles */
.contact-section {
    /* background-color: #f8f9fa; */
    padding: 80px 0;
}

.contact-wrapper {
    border: 1px solid #BABABA;
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.contact-form-area {
    padding-right: 30px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contact-form .form-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 400;
}

.contact-form .form-control {
    border: 1px solid #BABABA;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    color: #495057;
    background: #ffffff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    height: auto;
}

.contact-form .form-control::placeholder {
    color: #BABABA;
    font-size: 13px;
}

.contact-form .form-control:focus {
    border-color: #e6c36f;
    box-shadow: 0 0 0 0.25rem rgba(230, 195, 111, 0.25);
    outline: 0;
}

.message-textarea {
    min-height: 100px;
    resize: vertical;
}

.send-message-btn {
    background: #e6c36f;
    color: var(--text-dark);
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: none;
}

.send-message-btn:hover {
    background: #e6c36f;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(230, 195, 111, 0.3);
}

/* .contact-header {
    margin-bottom: 40px;
} */

.contact-info-front {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-item-front {
    display: flex;
    align-items: center;
}

.contact-text-front {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
}

.right-spacer {
    height: 100px;
}

.contact-icon-wrapper {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    width: 40px;
    height: 40px;
}

/* Maps Section - Exact Match Styles */
.maps-section {
    /* background-color: #f5f5f5; */
    padding: 60px 0;
}

.maps-wrapper {
    border: 1px solid #BABABA;
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.maps-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.2;
}

.maps-section .map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.maps-section .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-wrapper {
        padding: 40px;
    }

    .contact-form-area {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .contact-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .contact-info-sidebar {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        padding: 30px 25px;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .contact-info-sidebar {
        padding: 30px 20px;
    }

    .maps-wrapper {
        padding: 40px 30px;
    }

    .maps-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .maps-section .map-container {
        height: 350px;
    }
}

@media (max-width: 576px) {

    .contact-info-front {
        margin-top: 0px;
    }

    .contact-wrapper {
        padding: 25px 20px;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .maps-wrapper {
        padding: 30px 20px;
    }

    .maps-title {
        font-size: 1.8rem;
    }

    .maps-section .map-container {
        height: 300px;
    }
}
