/* =============================================== */
/* --- Contact Page Styles --- */
/* =============================================== */

.contact-hero {
    background-color: #f8f9fa; /* Light Gray */
    padding: 80px 0;
}

/* --- Contact Info & Form Cards --- */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-info-card .icon-box {
    width: 50px;
    height: 50px;
    background-color: #f0f2ff; /* Light primary */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-info-card h5 {
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-form-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.25);
}

/* --- Map Section --- */
.map-section {
    filter: grayscale(80%);
    transition: filter 0.3s ease;
}

.map-section:hover {
    filter: grayscale(0%);
}

/* --- FAQ Section --- */
/* You can reuse the styled accordion from course-detail.css if you have it globally,
   or use this simpler version specifically for the contact page */
#faqAccordion .accordion-item {
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
    border-radius: 8px !important;
}

#faqAccordion .accordion-button {
    font-weight: 600;
}
#faqAccordion .accordion-button:not(.collapsed) {
    background-color: #f0f2ff;
    color: var(--primary-color);
    box-shadow: none;
}
#faqAccordion .accordion-button:focus {
    box-shadow: none;
}