/* ============================================================
 * footer.css — Site footer (3-column grid, social icons, copyright)
 * ============================================================ */

.footer {
    background: var(--navy-dark, #07111c);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-section h3 {
    color: var(--gold, #b8942a);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}
.footer-section p,
.footer-section a {
    line-height: 1.7;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}
.footer-section a:hover { color: var(--gold-light, #e8c45c); }
.footer-section ul { list-style: none; padding: 0; margin: 0; }
.footer-section ul li { margin-bottom: 0.5rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--white, #fff);
}
.footer-bottom a {
    color: var(--white, #fff);
    text-decoration: none;
    margin: 0 0.8rem;
    transition: color 0.25s;
}
.footer-bottom p {
    color: var(--white, #fff);
    margin: 0;
}

/* Social */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.2rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    transition: all 0.25s ease;
}
.footer-social a:hover {
    background: var(--gold, #b8942a);
    color: var(--navy-dark, #07111c) !important;
    transform: translateY(-2px);
}
.footer-social i { font-size: 1rem; }

/* RTL: stack remains the same, but text alignment */
html[dir="rtl"] .footer-content { direction: rtl; text-align: right; }
html[dir="rtl"] .footer-section { text-align: right; }
