/* ========================================
   PREMIUM FOOTER STYLES
   Modern, Clean & Professional Design
   ======================================== */

/* ===== BASE FOOTER STYLES ===== */
.premium-footer {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* ===== DESKTOP FOOTER ===== */
.premium-footer__desktop {
    display: block;
    padding: 60px 0 0 0;
    margin: 0;
    position: relative;
    background: linear-gradient(180deg, rgba(16, 16, 18, 0) 0%, #101012 15%);
}

/* Dark Mode Styles */
.premium-footer__desktop {
    background-color: #0a0a0c;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Top Section */
.premium-footer__top {
    padding-bottom: 40px;
}

/* Brand Section */
.premium-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.premium-footer__logo {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.premium-footer__logo:hover {
    opacity: 0.8;
}

.premium-footer__logo img {
    height: 40px;
    width: auto;
    display: block;
}

.premium-footer__tagline {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0;
    max-width: 280px;
}

/* Contact Section */
.premium-footer__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.premium-footer__email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 50px;
    color: #E91E63;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.premium-footer__email i {
    font-size: 18px;
    color: #E91E63 !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
}

.premium-footer__email:hover {
    background: rgba(233, 30, 99, 0.15);
    border-color: rgba(233, 30, 99, 0.4);
    color: #E91E63;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
}

/* Social Section */
.premium-footer__social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.premium-footer__social-label {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-footer__social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.premium-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #9ca3af;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-footer__social-link i {
    color: #9ca3af !important;
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

.premium-footer__social-link:hover {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    border-color: #E91E63;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 16px rgba(233, 30, 99, 0.3);
}

.premium-footer__social-link:hover i {
    color: #ffffff !important;
}

/* Divider */
.premium-footer__divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(255, 255, 255, 0.1) 80%, 
        transparent 100%
    );
    margin: 0;
}

/* Bottom Section */
.premium-footer__bottom {
    padding: 32px 0;
}

.premium-footer__copyright {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
}

.premium-footer__links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.premium-footer__link {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.premium-footer__link:hover {
    color: #E91E63;
}

.premium-footer__separator {
    color: #4b5563;
    font-size: 14px;
}

/* ===== MOBILE FOOTER ===== */
.premium-footer__mobile {
    display: none;
    padding: 50px 0 0 0;
    margin: 0;
    background-color: #0a0a0c;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-footer__mobile-brand {
    text-align: center;
    margin-bottom: 32px;
}

.premium-footer__mobile-brand .premium-footer__logo {
    display: inline-block;
    margin-bottom: 16px;
}

.premium-footer__mobile-brand .premium-footer__tagline {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
}

.premium-footer__mobile-contact {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.premium-footer__mobile-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.premium-footer__mobile-social .premium-footer__social-links {
    justify-content: center;
}

.premium-footer__mobile-bottom {
    padding: 32px 0;
    text-align: center;
}

.premium-footer__mobile-bottom .premium-footer__links {
    justify-content: center;
    margin-bottom: 16px;
}

.premium-footer__mobile-bottom .premium-footer__copyright {
    text-align: center;
}

/* ===== LIGHT MODE STYLES ===== */
body.light-mode .premium-footer__desktop,
body.light-mode .premium-footer__mobile {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 15%);
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
}

body.light-mode .premium-footer__tagline {
    color: #374151;
}

body.light-mode .premium-footer__email {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08) 0%, rgba(194, 24, 91, 0.08) 100%);
    border-color: rgba(233, 30, 99, 0.25);
    color: #E91E63;
    font-weight: 600;
}

body.light-mode .premium-footer__email:hover {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15) 0%, rgba(194, 24, 91, 0.15) 100%);
    border-color: rgba(233, 30, 99, 0.4);
    color: #C2185B;
}

body.light-mode .premium-footer__social-label {
    color: #1f2937;
    font-weight: 600;
}

body.light-mode .premium-footer__social-link {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #374151;
}

body.light-mode .premium-footer__social-link i {
    color: #374151 !important;
}

body.light-mode .premium-footer__social-link:hover {
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    border-color: #E91E63;
    color: #ffffff !important;
}

body.light-mode .premium-footer__social-link:hover i {
    color: #ffffff !important;
}

body.light-mode .premium-footer__divider {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 0, 0, 0.12) 20%, 
        rgba(0, 0, 0, 0.12) 80%, 
        transparent 100%
    );
}

body.light-mode .premium-footer__copyright {
    color: #1f2937;
    font-weight: 500;
}

body.light-mode .premium-footer__link {
    color: #374151;
    font-weight: 600;
}

body.light-mode .premium-footer__link:hover {
    color: #E91E63;
}

body.light-mode .premium-footer__separator {
    color: #6b7280;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .premium-footer__desktop {
        display: none !important;
    }
    
    .premium-footer__mobile {
        display: block !important;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .premium-footer__mobile {
        padding: 40px 0 0 0;
    }
    
    .premium-footer__mobile-brand {
        margin-bottom: 28px;
    }
    
    .premium-footer__email {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .premium-footer__email i {
        font-size: 16px;
    }
    
    .premium-footer__social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .premium-footer__mobile-bottom {
        padding: 28px 0;
    }
    
    .premium-footer__links {
        gap: 12px;
    }
    
    .premium-footer__link,
    .premium-footer__separator,
    .premium-footer__copyright {
        font-size: 13px;
    }
}

/* Small Mobile (< 576px) */
@media (max-width: 575px) {
    .premium-footer__mobile {
        padding: 35px 0 0 0;
    }
    
    .premium-footer__logo img {
        height: 35px;
    }
    
    .premium-footer__tagline {
        font-size: 13px;
    }
    
    .premium-footer__email {
        padding: 10px 20px;
        font-size: 13px;
        gap: 10px;
    }
    
    .premium-footer__social-links {
        gap: 8px;
    }
    
    .premium-footer__social-link {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
    
    .premium-footer__mobile-bottom {
        padding: 24px 0;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-footer__top,
.premium-footer__bottom,
.premium-footer__mobile-brand,
.premium-footer__mobile-contact,
.premium-footer__mobile-social {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== ACCESSIBILITY ===== */
.premium-footer__link:focus,
.premium-footer__email:focus,
.premium-footer__social-link:focus,
.premium-footer__logo:focus {
    outline: 2px solid #E91E63;
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .premium-footer {
        background: white !important;
        border-top: 1px solid #000;
    }
    
    .premium-footer__social-links,
    .premium-footer__email {
        display: none;
    }
}


/* ===== HIDE OLD FOOTER STYLES ===== */
.footer-desktop,
.footer-mobile,
.ff-bg,
.footer-left,
.footer-right,
.fl-top-area,
.fl-bottom-area,
.fr-top-area,
.fr-bottom-area,
.ft-mobile-top,
.ft-mobile-bottom,
.ft-logo-mobil-block,
.footer-age-logo {
    display: none !important;
}

/* Hide any orphaned footer containers */
footer > .container:not(.premium-footer__desktop .container):not(.premium-footer__mobile .container) {
    display: none !important;
}

/* ===== REMOVE ALL BOTTOM SPACING - AGGRESSIVE ===== */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

main {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

footer,
.premium-footer,
.premium-footer__desktop,
.premium-footer__mobile {
    margin: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.premium-footer__bottom {
    margin-bottom: 0 !important;
    padding-bottom: 32px !important;
}

.premium-footer__mobile-bottom {
    margin-bottom: 0 !important;
    padding-bottom: 32px !important;
}

/* Remove any spacing after footer */
footer::after,
.premium-footer::after {
    display: none !important;
    content: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure no spacing from container */
.premium-footer .container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove row spacing */
.premium-footer .row {
    margin-bottom: 0 !important;
}

/* Force footer to be at absolute bottom */
.premium-footer {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}

