/* ==========================
   FOOTER IMPROVEMENTS
========================== */

.footer-newsletter-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.news-cont h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.news-cont h2 span {
    color: #4eb8da;
}

.news-cont p {
    color: rgba(255, 255, 255, .8);
    max-width: 600px;
}

.contact-btn {
    background: #236681;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.contact-btn:hover {
    background: #2f87a8;
    color: #fff;
}

/* ==========================
   OFFICE CARDS
========================== */

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.footer-contact-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 30px;
    transition: .35s ease;
}

.footer-contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, .25);
}

.office-badge {
    display: inline-block;
    background: #236681;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.office-badge.uk {
    background: #00247d;
}

.contact-item {
    margin-bottom: 18px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item span {
    display: block;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    line-height: 1.8;
    transition: .3s;
}

.contact-item a:hover {
    color: #4eb8da;
}

/* ==========================
   PARTNERS
========================== */

.partners-section {
    text-align: center;
    margin-top: 20px;
}

.partners-section h4 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.partner-logos img {
    height: 70px;
    object-fit: contain;
    transition: .3s;
}

.partner-logos img:hover {
    transform: scale(1.05);
}

/* ==========================
   TRUST LOGOS
========================== */

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 50px 0 30px;
}

.footer-logos img {
    height: 45px;
    border-radius: 12px;
    transition: .3s;
}

.footer-logos img:hover {
    transform: translateY(-4px);
}

/* ==========================
   BRAND LOGO
========================== */

.footer-brand {
    text-align: center;
    padding-bottom: 20px;
}

.footer-brand img {
    max-width: 320px;
    width: 100%;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px) {

    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        text-align: center;
        justify-content: center;
    }

    .contact-btn {
        margin-top: 10px;
    }

}

@media(max-width:768px) {

    .footer-contact-card {
        padding: 22px;
    }

    .partner-logos img {
        height: 55px;
    }

    .footer-logos img {
        height: 38px;
    }

    .partners-section h4 {
        font-size: 24px;
    }

}


/* Footer Bottom Links */

.footer-bottom-links {
    text-align: center;
    padding: 25px 0 10px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 0px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: .3s ease;
}

.footer-bottom-links a:hover {
    color: #4eb8da;
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, .35);
    margin: 0 12px;
}

@media(max-width:576px) {

    .footer-bottom-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-links span {
        display: none;
    }
}