/* =========================================================
   Qausainflix Footer 1.0
   Simple Shahid-inspired footer
   ========================================================= */

.qausainflix-footer {
    width: 100%;
    background: #070b10;
    color: rgba(255, 255, 255, 0.72);
    padding: 72px 24px 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.qausainflix-footer-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Navigation */

.qausainflix-footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 auto;
    line-height: 1.6;
}

.qausainflix-footer-nav a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.qausainflix-footer-nav a:hover {
    color: #ffffff;
}

.qausainflix-footer-separator {
    margin: 0 13px;
    color: rgba(255, 255, 255, 0.28);
}


/* Social */

.qausainflix-footer-social {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.qausainflix-footer-social li {
    margin: 0;
    padding: 0;
}

.qausainflix-footer-social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 19px;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.qausainflix-footer-social a:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    transform: translateY(-2px);
}


/* Brand */

.qausainflix-footer-brand {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qausainflix-footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qausainflix-footer-logo img {
    max-width: 150px;
    max-height: 52px;
    width: auto;
    height: auto;
}

.qausainflix-footer-company {
    margin-top: 11px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
    letter-spacing: 0.01em;
}

.qausainflix-footer-company strong {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}


/* Copyright */

.qausainflix-footer-copyright {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .qausainflix-footer {
        padding: 54px 20px 30px;
    }

    .qausainflix-footer-nav {
        flex-direction: column;
        gap: 15px;
    }

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

    .qausainflix-footer-separator {
        display: none;
    }

    .qausainflix-footer-social {
        margin-top: 30px;
        gap: 10px;
    }

    .qausainflix-footer-social a {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .qausainflix-footer-brand {
        margin-top: 26px;
    }

    .qausainflix-footer-company {
        font-size: 12px;
    }

    .qausainflix-footer-copyright {
        margin-top: 20px;
        font-size: 12px;
    }
}
