/* ---- Footer Redesign ---- */
.site-footer {
    font-family: 'Inter', 'Poppins', sans-serif;
    background: #ffffff;
}

/* --- Divider --- */
.footer-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0;
}

/* =============================================
   Section 1 -- Top Navigation Links
   ============================================= */
.footer-nav-bar {
    background: #ffffff;
    min-height: 56px;
    display: flex;
    align-items: center;
}

.footer-nav-inner {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    padding: 10px 0;
}

.footer-nav-links a {
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    text-decoration: none;
    white-space: nowrap;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.footer-nav-links a:hover {
    color: #c74444;
}

.nav-pipe {
    color: #cccccc;
    font-size: 15px;
    font-weight: 300;
    padding: 0 10px;
    user-select: none;
}

/* =============================================
   Section 2 -- App Buttons & Social Icons
   ============================================= */
.footer-apps-social {
    background: #ffffff;
    padding: 20px 0;
}

.footer-apps-social-inner {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* App Buttons */
.footer-app-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid #dddddd;
    background: #ffffff;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.app-btn:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.app-btn i {
    font-size: 28px;
    color: #333333;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.app-btn-small {
    font-size: 9px;
    font-weight: 500;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.app-btn-large {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    letter-spacing: -0.2px;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.footer-social-icons {
    margin-right: 8px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}

.social-icon:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.social-facebook { background: #1877F2; }
.social-blogger { background: #f57d00; }
.social-pinterest { background: #E60023; }
.social-x { background: #000000; }
.social-youtube { background: #FF0000; }
.social-instagram { background: #E4405F; }

/* =============================================
   Section 3 -- Disclaimer
   ============================================= */
.footer-disclaimer {
    background: #ffffff;
    padding: 24px 0;
}

.footer-disclaimer-inner {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    box-sizing: border-box;
}

.footer-disclaimer-inner p {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin: 0;
    text-align: left;
}

.disclaimer-label {
    font-weight: 600;
    color: #333333;
}

/* =============================================
   Section 4 -- Copyright Bar
   ============================================= */
.footer-copyright {
    background: #2d2d2d;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.footer-copyright-inner {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-copyright-inner p {
    font-size: 15px;
    color: #ffffff;
    margin: 12px 0;
    line-height: 1.5;
}

.copyright-link {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.copyright-link:hover {
    color: #cccccc;
}

.copyright-pipe {
    color: #666666;
    margin: 0 12px;
    user-select: none;
}

/* =============================================
   Responsive -- Tablet (max-width: 991px)
   ============================================= */
@media (max-width: 991px) {
    .footer-nav-inner {
        padding: 0 28px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-nav-links {
        justify-content: center;
    }

    .footer-apps-social-inner {
        padding: 0 28px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-app-buttons {
        justify-content: center;
    }

    .footer-disclaimer-inner {
        padding: 0 28px;
    }

    .footer-copyright-inner {
        padding: 0 28px;
    }
}

/* =============================================
   Responsive -- Mobile (max-width: 767px)
   ============================================= */
@media (max-width: 767px) {
    .footer-nav-inner {
        padding: 0 16px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .footer-nav-links {
        justify-content: center;
        padding: 8px 0;
    }

    .footer-nav-links a {
        font-size: 14px;
    }

    .nav-pipe {
        padding: 0 6px;
    }

    .footer-apps-social-inner {
        padding: 0 16px;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer-app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .app-btn {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .footer-disclaimer-inner {
        padding: 0 16px;
    }

    .footer-disclaimer-inner p {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-copyright-inner {
        padding: 0 16px;
    }

    .footer-copyright-inner p {
        font-size: 13px;
    }

    .copyright-pipe {
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .footer-nav-bar {
        min-height: auto;
        padding: 10px 0;
    }

    .footer-nav-links {
        justify-content: center;
        gap: 2px;
    }

    .footer-nav-links a {
        font-size: 13px;
        padding: 2px 0;
    }

    .nav-pipe {
        padding: 0 4px;
        font-size: 13px;
    }

    .footer-copyright {
        min-height: auto;
        padding: 14px 0;
    }

    .footer-copyright-inner p {
        font-size: 12px;
    }
}
