/* =========================
   FOOTER BASE
========================= */
.site-footer {
    background: radial-gradient(
        circle at top,
        #1e293b,
        #0f172a
    );
    color: #e5e7eb;
    padding: 70px 0 30px;
    position: relative;
}

/* BRAND */
.footer-brand {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 380px;
}

/* TITLES */
.footer-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color .2s ease, padding-left .2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 6px;
}

/* CONTACT */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li span {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 2px;
}

.footer-contact a {
    color: #f87171;
    text-decoration: none;
    font-weight: 500;
}

/* SOCIAL */
.footer-social {
    margin-top: 16px;
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all .25s ease;
}

.footer-social a:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    transform: translateY(-2px);
}

/* DIVIDER */
.footer-divider {
    margin: 40px 0 20px;
    height: 1px;
    background: rgba(255,255,255,.08);
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .footer-desc {
        max-width: 100%;
    }

    .footer-social {
        justify-content: flex-start;
    }
}
