:root {
    --footer-bg: #0f172a;
    --footer-secondary-bg: #1e293b;
    --footer-text: #7D7F8E;
    --footer-muted: #94a3b8;
    --footer-accent: rgb(14, 165, 233);
    --footer-accent-dark: rgb(14, 165, 233);
    --footer-white: #ffffff;
    --footer-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* =========================================
   FOOTER MAIN
========================================= */

.footer {
    position: relative;
    background: var(--footer-bg);
    color: var(--footer-white);
    overflow: hidden;
}

.footer-inner {
    position: relative;
    z-index: 2;
}

/* =========================================
   TOP NEWSLETTER BOX
========================================= */

.top-footer-box {
    background: linear-gradient(135deg, var(--footer-accent), var(--footer-accent-dark));
    padding: 60px 50px;
    border-radius: 0 0 40px 40px;
    margin-bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.newsletter-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.newsletter-text {
    font-size: 14px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 420px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    height: 52px;
    border-radius: 10px;
    border: none;
    padding: 0 18px;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

/* Subscribe Button */

.SUBCRIBE_BTN {
    height: 52px;
    background: var(--footer-white);
    color: var(--footer-accent-dark);
    border: none;
    padding: 0 26px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.SUBCRIBE_BTN:hover {
    background: var(--footer-bg);
    color: var(--footer-white);
    transform: translateY(-3px);
}

/* =========================================
   FOOTER TOP AREA
========================================= */

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-widget h4::after {
    content: "";
    width: 50px;
    height: 3px;
    background: var(--footer-accent);
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 3px;
}

/* =========================================
   LINKS
========================================= */

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-widget ul li a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-widget ul li a:hover {
    color: var(--footer-accent);
    transform: translateX(6px);
}

/* =========================================
   LOGO & DESCRIPTION
========================================= */

.footer-widget .logo img {
    max-height: 65px;
    margin-bottom: 20px;
}

.footer-widget .description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--footer-muted);
    margin-bottom: 20px;
}

/* =========================================
   SOCIAL ICONS
========================================= */

.social-icon {
    display: flex;
    gap: 14px;
    padding: 0;
}

.social-icon li {
    list-style: none;
}

.footer-widget ul li a.social__list {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--footer-white);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-widget ul li a.social__list:hover {
    background: var(--footer-accent);
    transform: translateY(-5px);
}

/* =========================================
   CONTACT INFO
========================================= */

.footer-widget ul li span {
    font-weight: 600;
    margin-right: 6px;
    color: var(--footer-text);
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: var(--footer-muted);
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */

@media (max-width: 992px) {

    .top-footer-box {
        flex-direction: column;
        text-align: center;
        padding: 45px 25px;
    }

    .newsletter-form {
        justify-content: center;
    }
}

@media (max-width: 576px) {

    .newsletter-title {
        font-size: 18px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .SUBCRIBE_BTN {
        width: 100%;

    }

    .newsletter-form input {
        line-height: 52px;
    }

    .footer-top {
        padding-bottom: 40px;
    }

}