﻿/* =========================================
   PREMIUM FOOTER
========================================= */

.premium-footer {
    background: linear-gradient( 135deg, #0f172a, #111827 );
    color: #fff;
    position: relative;
    overflow: hidden;
}

    /* GLOW */

    .premium-footer::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(227,30,36,.10);
        border-radius: 50%;
        top: -200px;
        right: -150px;
    }

/* TOP */

.footer-top {
    padding: 90px 50px 60px;
    position: relative;
    z-index: 2;
}

/* LOGO */

.footer-logo {
    max-width: 220px;
    margin-bottom: 28px;
}

/* ABOUT */

.footer-brand p {
    color: rgba(255,255,255,.72);
    line-height: 2 !important;
    font-size: 16px;
    margin-bottom: 30px;
}

/* BUTTON */

.footer-btn {
    display: inline-block;
    padding: 16px 28px;
    border-radius: 50px;
    background: linear-gradient( 135deg, #ff1e1e, #d90429 );
    color: #fff !important;
    font-weight: 700;
    transition: .3s ease;
}

    .footer-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(217,4,41,.28);
    }

/* TITLES */

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
    color:#aaa;
}

/* LINKS */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 16px;
    }

    .footer-links a {
        color: rgba(255,255,255,.72);
        transition: .3s;
    }

        .footer-links a:hover {
            color: #fff;
            padding-left: 6px;
        }

/* CONTACT */

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

    .footer-contact-item i {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(255,255,255,.06);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        color: #ff4d4d;
    }

    .footer-contact-item a {
        color: rgba(255,255,255,.78);
    }

/* SOCIAL */

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 35px;
}

    .footer-social a {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: rgba(255,255,255,.06);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        transition: .3s;
    }

        .footer-social a:hover {
            background: linear-gradient( 135deg, #ff1e1e, #d90429 );
            transform: translateY(-4px);
        }

/* BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 28px 50px;
    position: relative;
    z-index: 2;
}

.footer-copy {
    color: rgba(255,255,255,.6);
    font-size: 14px;
}

.footer-policy-links {
    display: flex;
    justify-content: center;
    gap: 22px;
}

    .footer-policy-links a {
        color: rgba(255,255,255,.65);
        font-size: 14px;
    }

.footer-powered {
    text-align: right;
    color: rgba(255,255,255,.55);
    font-size: 14px;
}

/* MOBILE */

@media(max-width:991px) {

    .footer-top {
        padding: 70px 30px 40px;
    }

    .footer-bottom {
        padding: 25px 30px;
    }

    .footer-powered {
        text-align: center;
        margin-top: 15px;
    }

    .footer-copy {
        text-align: center;
        margin-bottom: 15px;
    }
}

@media(max-width:767px) {

    .footer-policy-links {
        flex-direction: column;
        gap: 10px;
    }
}
