/* ===== FOOTER ===== */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

/* main page content area */
.page-wrapper {
    flex: 1;
}

.footer {
    background: #2f3b4c;
    color: #cfd6df;
    padding: 30px 40px;
    font-family: Arial, sans-serif;
}

.footer a {
    color: #cfd6df;
    text-decoration: none;
    font-size: 14px;
}

.footer a:hover {
    color: #ffffff;
}

/* TOP */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: #3b4758;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    font-size: 13px;
    opacity: 0.9;
}

.payments img {
    height: 28px;
    margin-left: 10px;
    background: #fff;
    padding: 4px 6px;
    border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-top,
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}
