/* ============================================
   FOOTER KIP - Kampung Inggris Plus
   Reusable Component Styles
   ============================================ */

/* CSS Variables (if not already defined) */
:root {
    --kip-primary: #2049D0;
    --kip-footer-bg: #0f172a;
    --kip-footer-card-bg: #1e293b;
    --kip-text-light: #94a3b8;
    --kip-text-white: #FFFFFF;
    --kip-accent-yellow: #FFB900;
    --kip-transition: all 0.3s ease;
}

/* Footer Base */
#footer-kip {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #2049D0 100%);
    color: var(--kip-text-white);
    padding-top: 64px;
    padding-bottom: 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-container-kip {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid-kip {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

/* Footer Brand */
.footer-brand-kip {
    max-width: 300px;
}

.footer-logo-kip {
    margin-bottom: 24px;
}

.footer-logo-kip img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-desc-kip {
    font-size: 14px;
    line-height: 1.7;
    color: var(--kip-text-light);
    margin-bottom: 24px;
}

/* Social Icons */
.footer-social-kip {
    display: flex;
    gap: 12px;
}

.social-icon-kip {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--kip-footer-card-bg);
    color: var(--kip-text-white);
    text-decoration: none;
    transition: var(--kip-transition);
}

.social-icon-kip:hover {
    background-color: var(--kip-primary);
    transform: translateY(-3px);
}

.social-icon-kip svg {
    width: 20px;
    height: 20px;
}

/* Footer Columns */
.footer-col-kip {
    /* Column styles */
}

.footer-title-kip {
    font-size: 18px;
    font-weight: 700;
    color: var(--kip-accent-yellow);
    margin-bottom: 24px;
    margin-left: 8px;
}

.footer-links-kip {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links-kip li {
    list-style: none;
    margin-bottom: 12px;
}

.footer-links-kip li::marker {
    content: none;
}

.footer-link-kip {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--kip-text-light);
    text-decoration: none;
    transition: var(--kip-transition);
}

.footer-link-kip:hover {
    color: var(--kip-text-white);
}

.footer-arrow-kip {
    width: 20px;
    height: 20px;
    color: var(--kip-accent-yellow);
    flex-shrink: 0;
}

/* Footer Contact */
.footer-contact-kip {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-kip li {
    list-style: none;
    margin-bottom: 16px;
}

.footer-contact-kip li::marker {
    content: none;
}

.footer-contact-link-kip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--kip-text-light);
    text-decoration: none;
    transition: var(--kip-transition);
}

.footer-contact-link-kip:hover {
    color: var(--kip-text-white);
}

.contact-icon-kip {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-link-kip span {
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom-kip {
    border-top: 1px solid var(--kip-footer-card-bg);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom-kip p {
    font-size: 14px;
    color: var(--kip-text-light);
    margin: 0;
}

/* ============================================
   RESPONSIVE - TABLET (max-width: 992px)
   ============================================ */
@media (max-width: 992px) {
    .footer-grid-kip {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand-kip {
        max-width: 100%;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .footer-grid-kip {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand-kip {
        text-align: center;
        max-width: 100%;
    }

    .footer-logo-kip {
        display: flex;
        justify-content: center;
    }

    .footer-social-kip {
        justify-content: center;
    }

    .footer-col-kip {
        text-align: left;
    }

    .footer-title-kip {
        margin-left: 0;
    }

    #footer-kip {
        padding-top: 48px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .footer-container-kip {
        padding: 0 16px;
    }
}