/* ================= FOOTER BACKGROUND ================= */

.footer-section {
    background: #070b24;
    padding: 80px 0 0;
    color: #fff;
    position: relative;
}

/* Wrapper Box Style */

.footer-wrapper {
    background: linear-gradient(
        135deg,
        var(--royal-purple),
        var(--primary-blue)
    );
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

/* Logo */

.footer-logo {
    height: 65px;
    margin-bottom: 20px;
}

/* About */

.footer-about {
    font-size: 14px;
    line-height: 1.9;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* Titles */

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

/* Links */

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    padding-left: 8px;
    color: #fff;
}

/* Social */

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: 0.4s ease;
}

.footer-social a:hover {
    background: #fff;
    color: var(--royal-purple);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* Contact */

.footer-contact p {
    font-size: 14px;
    line-height: 1.9;
    display: flex;
    gap: 10px;
}

/* Bottom */

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    background: #05071a;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */

@media (max-width: 991px) {

    .footer-wrapper {
        padding: 30px;
    }

    .footer-bottom .container {
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
}
