/* Contact Section */
.contact-section {
    padding: 50px 0;
    background: #f8f9fa;
}

/* Enhanced Map Container */
.map-container {
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.25);
    transform: translateY(-3px);
}

.map-container iframe {
    border: 0;
    min-height: 300px;
    width: 100%;
    height: 100%;
    filter: grayscale(0%) contrast(1.02) brightness(1.02);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1.05) brightness(1.05);
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 20px;
}

/* Contact Form Card */
.form-contact {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.form-contact:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Form Groups */
.form-group {
    margin-bottom: 0px;
    position: relative;
}

.form-group label {
    font-weight: 600;
    color: #34495e;
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Controls */
.form-control {
    border: 2px solid #e8ecef;
    border-radius: 8px;
    padding: 5px 15px;
    font-size: 15px;
    color: #2c3e50;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: #667eea;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 50px;
    padding: 5px 15px;
}

input.form-control {
    padding: 5px 15px;
}

/* Validation States */
.form-control.is-valid {
    border-color: #27ae60;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2327ae60' d='M4.5 9L1.5 6l1-1 2 2 4.5-4.5 1 1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.form-control.is-invalid {
    border-color: #e74c3c;
}

.form-control::placeholder {
    color: #95a5a6;
    font-size: 14px;
}

/* Submit Button */
.button-contactForm {
    background: linear-gradient(120deg, #0d6efd, #6610f2);
    background-size: 150% auto;
    background-position: left center;
    border: none;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.button-contactForm:hover {
    background-position: right center;
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}


/* Contact Info Cards */
.contact-info-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-left-color: #667eea;
}

.contact-info__icon {
    width: 50px;
    height: 50px;
    background-color: #010205;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-info-card p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

.media {
    display: flex;
    align-items: center;
}

.media-body {
    flex: 1;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .map-container {
        height: 300px;
    }

    .contact-section {
        padding: 40px 0;
    }

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

    .form-contact {
        padding: 25px;
    }

    .button-contactForm {
        width: 100%;
        padding: 15px 30px;
    }

    .contact-info-card {
        padding: 20px;
    }
}

/* Tablets */
@media (min-width: 577px) and (max-width: 991px) {
    .map-container {
        height: 400px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .map-container {
        height: 480px;
    }
}