/* ==========================================
   PREMIUM SAAS FOOTER (DARK/LIGHT COMPATIBLE)
   ========================================== */

.footer-premium {
    background-color: var(--site-bg);
    border-top: 1px solid var(--border-color);
    padding-top: 70px;
    color: var(--site-text);
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.footer-premium h5 {
    color: var(--site-title);
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 1.2rem;
    transition: color 0.4s ease;
}

.footer-premium p {
    color: var(--site-text);
    line-height: 1.8;
    font-size: 0.95rem;
    transition: color 0.4s ease;
}

.footer-premium ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-premium ul li {
    margin-bottom: 12px;
}

.footer-premium ul li a {
    color: var(--site-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-premium ul li a:hover {
    color: #0d6efd;
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: transparent;
    color: var(--site-title);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: #0d6efd;
    color: #ffffff;
    border-color: #0d6efd;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}

.footer-payment-img {
    height: 36px !important;
    width: auto !important;
    max-width: 90px !important;
    object-fit: contain !important;
    background-color: #0f172a !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    opacity: 0.85;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-payment-img:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(13, 110, 253, 0.3);
    border-color: #0d6efd !important;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 25px 0;
    margin-top: 50px;
    text-align: center;
    transition: border-color 0.4s ease;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}