/* css/footer.css */

/* Footer Section */
.footer-section {
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 60%);
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-section h5 {
    font-weight: 600;
    color: var(--secondary);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

/* Social Links */
.social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links .social-icon:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

/* Map Section */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.map-container iframe {
    width: 100%;
    height: 230px;
    border: 0;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4); /* soft golden glow */
}

/* Footer Bottom */
.footer-bottom {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}
