/* Footer - Enhanced for local SEO */
footer {
    background-color: #f4f4f4;
    color: #333;
    padding: 50px 0 0;
    font-size: 0.95rem;
    margin-top: 50px;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #eb0505;
}

.footer-section p, .footer-section ul, .footer-section li {
    color: #555;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.footer-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #eb0505;
    font-size: 0.8rem;
}

.footer-section ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

.footer-section ul li a:hover {
    color: #eb0505;
    transform: translateX(3px);
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
    height: auto;
}

.footer-bottom {
    background-color: #292b35;
    text-align: center;
    padding: 20px 0;
    color: #cccccc;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: #eb0505;
    transform: translateY(-3px);
}

/* Loading optimization for critical content */
.contact-us, footer {
    will-change: transform;
}
