/* ===================================
   SEO OPTIMIZED FOOTER STYLES
   =================================== */

.site-footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #4a6741 100%);
    color: white;
    margin-top: 30px; /* Reduced from 60px */
    font-family: Arial, sans-serif;
}

/* Footer Container */
.footer-container {
    max-width: 100%; /* Changed from 1400px */
    margin: 0 auto;
    padding: 30px 20px 20px; /* Reduced from 60px 40px 40px */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px; /* Reduced from 40px */
}

/* Footer Columns */
.footer-column h3 {
    color: #fbbf24;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
    padding-bottom: 10px;
}

.footer-description {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer-links a:hover {
    opacity: 1;
    color: #fbbf24;
    transform: translateX(5px);
}

.footer-links a::before {
    content: "▸ ";
    margin-right: 8px;
    color: #fbbf24;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.2em;
}

.social-links a:hover {
    background: #fbbf24;
    color: #1e3c72;
    transform: translateY(-5px);
}

/* Contact Information */
.contact-info p {
    margin-bottom: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

.contact-info i {
    color: #fbbf24;
    margin-right: 10px;
    width: 20px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 1;
    color: #fbbf24;
}

.map-link {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 15px;
    border: 2px solid #fbbf24;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: #fbbf24;
    color: #1e3c72;
    transform: scale(1.05);
}

/* Google Map Section */
.footer-map {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px; /* Reduced from 40px */
    text-align: center;
}

.footer-map h3 {
    color: #fbbf24;
    font-size: 1.8em;
    margin-bottom: 25px;
    font-weight: 600;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px; /* Reduced from 25px 40px */
}

.footer-bottom-content {
    max-width: 100%; /* Changed from 1400px */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px; /* Reduced from 20px */
}

.footer-bottom p {
    margin: 0;
    opacity: 0.9;
}

.footer-legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    opacity: 1;
    color: #fbbf24;
}

.footer-legal-links .separator {
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 40px 20px 30px;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links a::before {
        content: "";
        margin-right: 0;
    }
    
    .footer-map {
        padding: 30px 20px;
    }
    
    .map-container {
        border-radius: 10px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-column h3 {
        font-size: 1.2em;
    }
    
    .footer-map h3 {
        font-size: 1.4em;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* Animation */
.footer-links li {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.footer-links li:nth-child(1) { animation-delay: 0.1s; }
.footer-links li:nth-child(2) { animation-delay: 0.2s; }
.footer-links li:nth-child(3) { animation-delay: 0.3s; }
.footer-links li:nth-child(4) { animation-delay: 0.4s; }
.footer-links li:nth-child(5) { animation-delay: 0.5s; }
.footer-links li:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
