.footer-section {
    background-color: #f8f9fa;
    padding-top: 2rem;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.footer-heading {
    color: var(--dark);
    font-weight: 600;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-intro {
    color: var(--gray);
    line-height: 1.6;
}

.footer-contact-item {
    margin-bottom: 1rem;
}

.footer-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(61, 122, 103, 0.2);
}

.footer-contact-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.footer-link {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.footer-address, .footer-hours {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-links li:last-child {
    border-bottom: none;
}

.footer-map-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .footer-section {
        padding-top: 1rem;
    }

    .footer-map-container {
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    .footer-contact-item {
        margin-bottom: 1.5rem;
    }

    .footer-heading::after {
        width: 30px;
    }
}