/* =============================================
   UPVC – Custom Footer
   ============================================= */

.upvc-footer {
    background: var(--upvc-ft-bg, #013a4f);
    color: var(--upvc-ft-text, #fff);
    width: 100%;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    text-align: center;
    line-height: 1.6;
}

/* ── Phone Banner ── */

.upvc-footer__phone {
    padding: 0 24px 20px;
}

.upvc-footer__phone-image {
    max-width: 245px;
    height: 35px;
}

.upvc-footer__phone-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--upvc-ft-heading, #fff);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.upvc-footer__phone-text:hover {
    color: #8CC73D;
}

/* ── Navigation Links ── */

.upvc-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 0 24px;
    margin-bottom: 20px;
}

.upvc-footer__link {
    color: var(--upvc-ft-heading, #fff);
    text-decoration: none;
    margin: 0 15px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.upvc-footer__link:hover {
    color: #8CC73D;
}

.upvc-footer__nav--main .upvc-footer__link {
    font-size: 20px;
    font-weight: 400;
}

.upvc-footer__link--small {
    font-size: 15px;
    margin: 0 10px;
    font-weight: 400;
}

/* ── Divider ── */

.upvc-footer__divider {
    width: 80%;
    height: 1px;
    background: #ffffff;
    opacity: 0.3;
    margin: 0 auto 20px;
}

/* ── Payment & Manufacturer Logos ── */

.upvc-footer__logos {
    padding: 20px 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.upvc-footer__payment-image {
    max-width: 450px;
    width: 100%;
    height: auto;
}

.upvc-footer__manufacturer-image {
    height: 50px;
    width: auto;
}

/* ── Bottom Bar (Copyright + Social) ── */

.upvc-footer__bottom {
    background: var(--upvc-ft-bg, #013a4f);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

.upvc-footer__bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.upvc-footer__copyright {
    font-size: 14px;
    margin: 0;
}

.upvc-footer__copyright a {
    color: #8CC73D;
    text-decoration: none;
}

.upvc-footer__copyright a:hover {
    text-decoration: underline;
}

/* Social Icons */
.upvc-footer__social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.upvc-footer__social-link {
    color: var(--upvc-ft-text, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.upvc-footer__social-link:hover {
    transform: scale(1.1);
}

.upvc-footer__social-link svg {
    display: block;
    width: 30px;
    height: 30px;
}

/* ── Responsive ── */

@media (max-width: 768px) {
    .upvc-footer__phone {
        padding: 0 16px 16px;
    }

    .upvc-footer__phone-image {
        max-width: 200px;
        height: 28px;
    }

    .upvc-footer__phone-text {
        font-size: 22px;
    }

    .upvc-footer__nav {
        gap: 4px 0;
        padding: 0 16px;
    }

    .upvc-footer__link {
        font-size: 14px;
        margin: 0 8px;
    }

    .upvc-footer__nav--main .upvc-footer__link {
        font-size: 14px;
    }

    .upvc-footer__link--small {
        font-size: 12px;
        margin: 0 6px;
    }

    .upvc-footer__logos {
        padding: 16px 16px 0;
    }

    .upvc-footer__payment-image {
        max-width: 280px;
    }

    .upvc-footer__manufacturer-image {
        height: 40px;
    }

    .upvc-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
        padding: 10px 16px;
        gap: 10px;
    }

    .upvc-footer__copyright {
        font-size: 12px;
    }
}
