/* Styles for page without hero */
.contact-info-section.no-hero {
    padding-top: 100px; /* Increased top padding to account for navbar */
    padding-bottom: 80px;
    margin-top: 76px; /* This accounts for the fixed navbar height */
}

.contact-info-section.no-hero .section-heading {
    margin-bottom: 40px;
}

.contact-info-section.no-hero .section-heading h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.contact-info-section.no-hero .section-heading p.lead {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.contact-info-section.no-hero .section-heading h2 {
    display: none;
}

@media (max-width: 767.98px) {
    .contact-info-section.no-hero {
        padding-top: 100px;
    }

    .contact-info-section.no-hero .section-heading h1 {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
}

.contact-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-lighter);
    color: var(--primary);
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.contact-link {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-lighter);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
}

.contact-form-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.contact-form-wrapper {
    padding: 40px;
}

.contact-form-wrapper h3,
.contact-map-wrapper h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.contact-map-wrapper {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-map {
    flex-grow: 1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-hours {
    background-color: var(--primary-lighter);
    padding: 20px;
    border-radius: 8px;
}

.contact-hours h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 18px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.hours-list li span {
    font-weight: 600;
    color: var(--primary);
}

.contact-faq-section {
    padding: 80px 0;
}

.contact-cta-section {
    background-color: var(--primary-lighter);
    padding: 80px 0;
}

.contact-cta-card {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-card h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.contact-cta-card p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

@media (max-width: 767.98px) {
    .contact-info-section,
    .contact-form-section,
    .contact-faq-section,
    .contact-cta-section {
        padding: 50px 0;
    }

    .contact-card {
        margin-bottom: 30px;
    }

    .contact-form-wrapper,
    .contact-map-wrapper {
        padding: 20px;
    }

    .contact-map-wrapper {
        margin-top: 30px;
    }
}
