/* ===== FOOTER STYLING ===== */

.site-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 20px 40px 20px;
    margin-top: 0;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-columns {
    display: contents;
}

.footer-links {
    justify-self: start;
}

.footer-links h3 {
    color: #012a9e;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 8px 0;
    width: fit-content;
}

.footer-nav a:hover {
    color: #0066ff;
    padding-left: 10px;
}

.footer-social {
    justify-self: center;
    align-self: end;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.social-icons {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a[aria-label="Google"] { color: #4285F4; }
.social-icons a[aria-label="Instagram"] { color: #E4405F; }
.social-icons a[aria-label="Facebook"] { color: #1877F2; }

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(1, 42, 158, 0.4);
    background-color: #012a9e;
    color: white;
}

.social-icons svg {
    width: 35px;
    height: 35px;
}

.footer-contact {
    justify-self: end;
}

.footer-contact h3 {
    color: #012a9e;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 28px;
    height: 28px;
    color: #012a9e;
    flex-shrink: 0;
}

.contact-item span,
.contact-item a {
    color: white;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #0066ff;
}

.copyright {
    text-align: center;
}

.copyright p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: white;
}

.footer-bottom {
    display: none;
}

.footer-content {
    display: none;
}

/* ===== FOOTER RESPONSIVE ===== */

@media screen and (max-width: 1200px) {
    .footer-main {
        gap: 40px;
    }
}

@media screen and (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-links,
    .footer-social,
    .footer-contact {
        justify-self: center;
        text-align: center;
    }

    .footer-nav {
        align-items: center;
    }

    .contact-info {
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    .site-footer {
        padding: 50px 20px 30px 20px;
    }

    .footer-main {
        gap: 40px;
        padding-bottom: 30px;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .footer-nav a {
        font-size: 1.05rem;
    }

    .contact-item span,
    .contact-item a {
        font-size: 1rem;
    }

    .contact-icon {
        width: 24px;
        height: 24px;
    }

    .social-icons {
        gap: 20px;
    }

    .social-icons a {
        width: 50px;
        height: 50px;
    }

    .social-icons svg {
        width: 28px;
        height: 28px;
    }

    .copyright p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .site-footer {
        padding: 40px 15px 25px 15px;
    }

    .footer-main {
        gap: 35px;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .footer-nav a {
        font-size: 0.95rem;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-item span,
    .contact-item a {
        font-size: 0.9rem;
        word-break: break-word;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
    }

    .social-icons svg {
        width: 25px;
        height: 25px;
    }

    .copyright p {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }
}
