.site-footer { background: var(--primary-blue); color: var(--white); padding: 80px 0 0; font-size: 14px; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr; gap: 30px; margin-bottom: 60px; }
.footer-logo { max-height: 60px; margin-bottom: 20px; }
.about-widget p { color: #94a3b8; line-height: 1.8; margin-bottom: 25px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
    display: flex; align-items: center; justify-content: center; width: 36px; height: 36px;
    background: rgba(255,255,255,0.1); border-radius: 50%; transition: var(--transition);
}
.social-icons a:hover { background: var(--primary-gold); transform: translateY(-3px); }
.social-icons img { width: 16px; }

.footer-widget h3 { color: var(--white); font-size: 18px; margin: 0 0 25px; font-weight: 600; }
.links-widget ul { padding: 0; margin: 0; }
.links-widget a { color: #94a3b8; display: block; margin-bottom: 12px; transition: var(--transition); }
.links-widget a:hover { color: var(--primary-gold); padding-left: 5px; }

.contact-info { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; color: #94a3b8; line-height: 1.6; }
.contact-info img { width: 20px; margin-top: 3px; }
.contact-info p { margin: 0; }

.map-widget .footer-map { width: 100%; border-radius: 8px; opacity: 0.8; transition: opacity 0.3s; }
.map-widget .footer-map:hover { opacity: 1; }

.footer-bottom { background: #0b1a30; padding: 25px 0; text-align: center; color: #64748b; font-size: 13px; }
.footer-bottom p { margin: 0; }