/* =========================================
   PREMIUM FOOTER STYLES
   ========================================= */
.site-footer.footer-modern {
    background: linear-gradient(135deg, #0a0f16 0%, #3a1f3a 50%, #1f081f 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

/* Remove old background if exists */
.footer-background {
    display: none;
}

/* Glass effect for footer content */
.footer-modern-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

/* Footer modern links */
.footer-links-column h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    border-radius: 2px;
}

.footer-links-column ul li {
    margin-bottom: 12px;
}

.footer-links-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.footer-links-column ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links-column ul li a i {
    color: #818cf8;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links-column ul li a:hover i {
    color: #ec4899;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

/* Footer Bottom */
.footer-modern-bottom {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px 30px;
    margin-top: 50px;
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-modern-bottom:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.footer-modern-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-modern-bottom:hover::before {
    opacity: 1;
}

.footer-copyright {
    color: #64748b;
    font-size: 14px;
}

.copyright-year {
    color: #e2e8f0;
    font-weight: 600;
}

.footer-bottom-links a {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-separator {
    color: #475569;
}

/* Social Icons in Footer */
.footer-social {
    margin-top: 20px;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin: 0 5px;
    color: #cbd5e1;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.footer-social .social-icon:hover {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
    border-color: transparent;
}

/* Footer Logo Text */
.footer-logo-text {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-description {
    color: #94a3b8;
    max-width: 400px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .footer-modern-content {
        text-align: center;
    }

    .footer-links-column {
        margin-bottom: 40px;
    }

    .footer-links-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-column ul li a {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

/* =========================================
   PREMIUM PAGE HEADER STYLES
   ========================================= */
.archive-header-premium,
.page-header-premium {
    background: linear-gradient(135deg, #0a0f16 0%, #3a1f3a 50%, #1f081f 100%) !important;
    position: relative;
    padding: 80px 0;
    margin-bottom: 40px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.archive-header-premium::before,
.page-header-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 800px 400px at 20% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 600px 300px at 80% 60%, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.archive-header-wrapper,
.page-header-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 15px;
}

.archive-title-premium,
.page-title-premium {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    line-height: 1.2;
}

.archive-description-premium,
.page-description-premium {
    color: #cbd5e1;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.archive-header-icon,
.page-header-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.archive-header-icon i,
.page-header-icon i {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}