/* ================================================ */
/* SHARED FOOTER STYLES (from contact.html)         */
/* ================================================ */

/* --- Footer Grid Adjustment --- */
.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 24px;
    color: #fff;
}

/* Quick Links */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #FDB913;
}

/* Social Icons */
.social-icons-row {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #FDB913;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1f17;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
