/* ========== FOOTER - GRANATOWA PALETA ========== */

footer {
    background: rgba(15, 31, 56, .9);
    border-top: 1px solid rgba(201, 162, 39, .2);
    padding: 2.5rem 1.5rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--accent);
    margin-bottom: .8rem;
    font-size: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    display: block;
    margin-bottom: .4rem;
    font-size: .85rem;
    transition: color .3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .6);
    font-size: .8rem;
}