/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #1a1e55 100%);
    color: #f1f5f9;
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 50px;
}

/* Brand column */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    height: 130px;
    width: auto;
    max-width: 100%;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin: 0 0 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
}

.footer-socials a:hover {
    background: #febc00;
    transform: translateY(-3px);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* Links columns */
.footer-links h3,
.footer-contact h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.04em;
    font-family: 'Novecento Wide', Arial, sans-serif;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #febc00;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #febc00;
    padding-left: 6px;
}

/* Contact column */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: #febc00;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* Bottom bar */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #febc00;
}

/* Responsive footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
        padding: 40px 24px 30px;
        gap: 30px;
        text-align: center;
    }
    .footer-links h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact-item {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 24px;
    }
    .footer-bottom-links {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 30px 20px;
        gap: 25px;
    }
    .footer-logo {
        height: 60px;
        padding: 8px 14px;
    }
    .footer-desc {
        font-size: 0.85rem;
    }
    .footer-links h3,
    .footer-contact h3 {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    .footer-links a,
    .footer-contact-item span {
        font-size: 0.82rem;
    }
    .footer-bottom {
        padding: 15px 20px;
        gap: 10px;
    }
    .footer-bottom p {
        font-size: 0.75rem;
    }
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .footer-bottom-links a {
        font-size: 0.75rem;
    }
}
