/* Contact Section Styles */
.contact-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 5%;
}


.contact-info-card,
.map-container,
.form-card {
    background-color: #fcfcfc;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.map-container {
    height: 250px;
    background-color: #e9e9e9;
    border: 2px solid #ffc107;
}

.form-card {
    background-color: #fdfdfd;
}

/* Inputs */
.form-control:focus {
    background-color: #fff !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.15);
    border: 1px solid #ffc107 !important;
}

.btn-warning {
    background-color: #d17a00 !important;
    border: none;
    text-decoration: none;
}

/* Responsiveness */
@media (max-width: 991.98px) {
    .form-card {
        padding: 30px 20px !important;
    }
}