/* footer, footer badges, footer mobile rules */
/* ==========================================
   FOOTER
========================================== */

.site-footer,
footer {
    background: #fff4e8;
    color: #555;
    font-size: 0.95rem;
    padding: 2rem 0 1.5rem;
    text-align: center;
}

.site-footer p,
footer p {
    margin: 0.25rem 0;
    color: #5b667a;
}

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

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.footer-social a {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    font-size: 1.45rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.footer-social a i {
    background: linear-gradient(135deg, #e94b5a, #f47c5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-social a:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 14px 30px rgba(233, 75, 90, 0.20);
}

/* ==========================================
   FOOTER TRUST BADGES
========================================== */

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #173b57;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.footer-badges i,
.footer-heart {
    background: linear-gradient(135deg, #e94b5a, #f47c5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-badges i {
    font-size: 1.1rem;
}

.footer-heart {
    margin-left: 0.3rem;
    font-size: 1rem;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .site-footer,
    footer {
        padding: 1.75rem 1rem 1.35rem;
    }

    .footer-social {
        gap: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .footer-social a {
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
    }

    .footer-badges {
        flex-direction: column;
        gap: 0.7rem;
        font-size: 0.92rem;
    }
}