/* ================= FOOTER ================= */

.footer-card {
    width: 100% !important;
    max-width: 1380px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 auto;
    padding: 60px 80px 40px !important;
    border-radius: 20px;
    background: linear-gradient(90deg, #912013 0%, #BA2616 100%);
    color: #ffffff;

    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;

    overflow: hidden;
    position: relative;
    box-sizing: border-box !important;
}

/* ================= TOP SECTION ================= */

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

/* ================= LINKS ================= */

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    font-size: 16px;
    line-height: 24px;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    opacity: 1;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

/* ================= SOCIAL ICONS ================= */

.footer-social {
    margin-top: 15px;
}

.footer-social .icons {
    display: flex;
    gap: 14px;
}

.footer-social .icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2A2A2A;
    border: 1px solid rgba(255,255,255,0.2);

    transition: all 0.3s ease;
}

.footer-social .icons a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-social .icons a:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.footer-social .icons a:hover img {
    filter: brightness(0)
            saturate(100%)
            invert(20%)
            sepia(85%)
            saturate(2329%)
            hue-rotate(345deg)
            brightness(88%)
            contrast(99%);
}

/* ================= BOTTOM BAR ================= */

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {

    .footer-card {
        padding: 50px 40px 30px;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .footer-card {
        height: auto;
        padding: 40px 20px;
        border-radius: 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-links {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 35px;
    }

    .footer-links h4 {
        margin-bottom: 10px;
    }

    .footer-links ul {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-social .icons {
        justify-content: center;
    }
}
