/* Updated font colors and improved readability */
p, .service-description, .about-content p, .info-card p, .footer-info p, .footer-contact p, .footer-links p {
    color: var(--indigo-blue);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 500;
}

.section-title h2 {
    color: var(--bright-indigo);
}

.section-title p {
    color: var(--indigo-blue);
}

.nav-link {
    color: var(--indigo-blue) !important;
    font-weight: 600;
}

.nav-link:hover, .nav-link.active {
    color: var(--bright-indigo) !important;
}

/* Enhanced Map Section */
.map-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--indigo-blue);
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.map-info-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    height: 100%;
    border-top: 5px solid var(--indigo-blue);
    border-bottom: 5px solid var(--indigo-blue);
    transition: all 0.3s ease;
}

.map-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-get-directions {
    background-color: var(--indigo-blue);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-top: 10px;
}

.btn-get-directions:hover {
    background-color: var(--bright-indigo);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(63, 81, 181, 0.3);
}

/* Footer Styling to match header */
#footer {
    background: linear-gradient(to right, var(--indigo), var(--indigo-blue));
    padding: 60px 0 30px 0;
    color: white;
    font-size: 16px;
}

#footer .footer-info h3 {
    font-size: 28px;
    margin: 0 0 15px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    color: white;
}

#footer .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-contact p {
    color: white;
    line-height: 1.8;
    margin-bottom: 10px;
}

#footer .footer-contact i {
    color: var(--light-teal);
    margin-right: 8px;
    font-size: 18px;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}