/* ===== FOOTER BASE ===== */
.footer {
    width: 100%;
    background-color: var(--brand-primary-dark);
    color: var(--text-inverse);
    position: relative;
    overflow-x: hidden;
}

/* Decorative logo */
.footer-logo {
    position: absolute;
    top: 25px;
    right: 40px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--text-inverse);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== CONTAINER ===== */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 0px 40px;
    display: grid;
    grid-template-columns: 1.3fr 1.2fr 1.2fr 3fr;
    gap: 60px;
}

/* ===== COLUMNS ===== */
.footer-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 600;
}

/* ===== LINKS ===== */
.footer-col a {
    width: fit-content;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 4px;
    font-size: 15px;
}

.footer-col a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.4s ease;
}

.footer-col a:hover::after {
    width: 100%;
}

/* ===== CONTACT TABLE ===== */
.contact-info .row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.8;
}

.contact-info .label {
    min-width: 90px;
    font-weight: 600;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 25px;
    justify-content: center;
}

.social-link {
    width: 42px;
    height: 42px;
    aspect-ratio: 1 / 1;
    flex: 0 0 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-inverse);
    font-size: 18px;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-link i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transform: translateY(5%);
}


.social-link::after {
    display: none !important;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}

/* Brand Colors */
.fb {
    background: #1877f2;
}

.tt {
    background: #000000;
}

.tg {
    background: #229ed9;
}

.ig {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}


/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    text-align: right;
    font-size: 14px;
    opacity: 0.5;
    padding: 30px 20px 30px;
}

@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
        padding-top: 110px;
    }
}

@media (max-width: 800px) {
    .footer-logo {
        width: 64px;
        height: 64px;
        top: 18px;
        right: 24px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 100px 24px 0 24px;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-col a {
        width: auto;
    }

    .contact-info .row {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
    }

    .contact-info .label {
        min-width: 0;
    }

    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 90px 18px 0 18px;
    }

    .footer-col h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-col a {
        font-size: 14px;
        margin-bottom: 14px;
    }
}
