.landing-footer {
    background-color: #242788;
    padding: 4rem 0 2rem;
}

/* Logo section */
.landing-footer .app-brand-link {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.landing-footer .app-brand-logo img {
    width: 156px;
    height: 70px;
    opacity: 1;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.landing-footer .app-brand-logo img:hover {
    transform: scale(1.05);
}

/* Description text */
.landing-footer p {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

/* Social icons */
.landing-footer .social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.landing-footer .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.landing-footer .social img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.landing-footer .social a:hover img {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

/* Navigation links */
.landing-footer ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 80px;
    row-gap: 20px;
    padding-left: 0;
}

.landing-footer ul li {
    list-style: none;
    margin-bottom: 0;
}

.landing-footer ul .footer-link {
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.5px;
    color: #fff !important;
    text-decoration: none;
    padding: 0.5rem 0;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.landing-footer ul .footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.landing-footer ul .footer-link:hover {
    opacity: 0.8;
}

.landing-footer ul .footer-link:hover::after {
    width: 100%;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .landing-footer {
        padding: 3rem 0 1.5rem;
    }

    .landing-footer .app-brand-logo img {
        width: 136px;
        height: 50px;
    }

    .landing-footer p {
        font-size: 13px;
        line-height: 22px;
        max-width: 350px;
    }

    .landing-footer ul .footer-link {
        font-size: 15px;
    }

    .landing-footer ul {
        column-gap: 40px;
    }

    .landing-footer .social img {
        width: 30px;
        height: 30px;
    }

    /* Stack columns on medium screens */
    .landing-footer .col-lg-5,
    .landing-footer .col-lg-7,
    .landing-footer .col-md-5,
    .landing-footer .col-md-7 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 2rem;
    }

    .landing-footer .row {
        flex-direction: column;
    }
}

/* Small Tablet (768px and below) */
@media (max-width: 768px) {
    .landing-footer {
        text-align: center;
        padding: 2.5rem 0 1.5rem;
    }

    .landing-footer .app-brand-link,
    .landing-footer .social {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .landing-footer .app-brand-logo img {
        width: 126px;
        height: 40px;
    }

    .landing-footer p {
        font-size: 12px;
        line-height: 20px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .landing-footer ul .footer-link {
        font-size: 14px;
        padding: 0.25rem 0;
    }

    .landing-footer ul {
        column-gap: 25px;
        row-gap: 15px;
        justify-content: center;
        margin-top: 1rem;
    }

    .landing-footer .social {
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .landing-footer .social img {
        width: 28px;
        height: 28px;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .landing-footer {
        padding: 2rem 0 1rem;
    }

    .landing-footer .app-brand-logo img {
        width: 110px;
        height: 40px;
    }

    .landing-footer p {
        font-size: 11px;
        line-height: 18px;
        max-width: 300px;
    }

    .landing-footer ul {
        column-gap: 15px;
        row-gap: 12px;
        justify-content: center;
    }

    .landing-footer ul .footer-link {
        font-size: 12px;
        padding: 0.2rem 0;
    }

    .landing-footer .social {
        gap: 0.75rem;
    }

    .landing-footer .social img {
        width: 24px;
        height: 24px;
    }
}

/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
    .landing-footer ul {
        column-gap: 12px;
        row-gap: 10px;
    }

    .landing-footer ul .footer-link {
        font-size: 11px;
    }

    .landing-footer .app-brand-logo img {
        width: 100px;
        height: 35px;
    }

    .landing-footer p {
        font-size: 10px;
        line-height: 16px;
    }
}

/* ===== FOOTER BOTTOM SECTION (if you add one) ===== */
.footer-bottom {
    border-top: 1px solid ;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    text-align: center;
}

/* Responsive adjustments for footer bottom */
@media (max-width: 768px) {
    .footer-bottom {
        padding-top: 1rem;
        margin-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .footer-bottom {
        padding-top: 0.75rem;
        margin-top: 1rem;
    }

    .footer-bottom p {
        font-size: 10px;
    }
}
