/* Contact Section */
/* Enhanced Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background-color: #f8f4e9;
    z-index: 0;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
    filter: blur(2px);
    opacity: 0.8;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Section Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-header .lead {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-section h2 {
    font-size: 2rem;
    border-left: 5px solid #c1121f;
    padding-left: 12px;
}

.section-subtitle {
    color: #555;
    font-size: 1.1rem;
}

.contact-section .form-label {
    font-weight: 600;
    color: #333;
}

.contact-section input.form-control,
.contact-section textarea.form-control {
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 1rem;
    background-color: #fdfdfd;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
}

.contact-section input.form-control:focus,
.contact-section textarea.form-control:focus {
    border-color: #c1121f;
    box-shadow: 0 0 0 0.2rem rgba(193, 18, 31, 0.1);
}

.contact-section textarea {
    resize: none;
}

.contact-section .btn {
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-section .btn:hover {
    transform: translateY(-2px);
}

/* Map */
.map-wrapper iframe {
    border: 0;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-section::before {
        width: 100%;
        height: 30%;
        top: 0;
        border-radius: 0;
        border-bottom-left-radius: 100px;
        border-bottom-right-radius: 100px;
        filter: blur(2px);
        opacity: 0.4;
    }

    .contact-header h1 {
        font-size: 2.2rem;
    }

    .contact-header .lead {
        font-size: 1rem;
        padding: 0 15px;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}