/* ===================== */
/* LUXURY FOOTER STYLES */
/* ===================== */
.luxury-footer01 {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #051926 100%) !important;
    background-image: radial-gradient(circle at 50% 50%, rgba(219,168,88,0.1) 0%, transparent 50%), linear-gradient(180deg, var(--primary-dark) 0%, #051926 100%) !important;
    color: var(--white) !important;
    position: relative !important;
    padding-top: 100px !important;
    padding-bottom: 40px !important;
    font-family: var(--font-primary) !important;
    margin-top: 80px !important;
    overflow: hidden !important;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3) !important;
    perspective: 1000px !important;
    animation: pulseGlow01 8s ease-in-out infinite alternate !important;
    width: 100% !important;
    max-width: 100vw !important;
}

@keyframes pulseGlow01 {
    0% { background-position: center; background-size: 100% 100%; }
    100% { background-position: center; background-size: 150% 150%; }
}

/* Enhanced Wave Effect */
.footer-wave01 {
    position: absolute !important;
    top: -100px !important;
    left: 0 !important;
    width: 100% !important;
    height: 100px !important;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%230a2333" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,218.7C672,203,768,149,864,128C960,107,1056,117,1152,133.3C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat !important;
    background-size: cover !important;
    filter: drop-shadow(0 -10px 10px rgba(0,0,0,0.2)) !important;
    animation: waveFlow01 20s linear infinite !important;
}

@keyframes waveFlow01 {
    0% { transform: translateX(0%); }
    50% { transform: translateX(-5%); }
    100% { transform: translateX(0%); }
}

/* Holographic Grid Container */
.footer-container01 {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
    position: relative !important;
    z-index: 3 !important;
    transform-style: preserve-3d !important;
    width: 100% !important;
}

/* Advanced Grid Layout */
.footer-grid01 {
    display: grid !important;
    grid-template-columns: 1.5fr repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-bottom: 80px !important;
    width: 100% !important;
}

/* Holographic Section Cards */
.footer-section01 {
    position: relative !important;
    padding: 30px !important;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%) !important;
    border-radius: 25px !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    transform: translateZ(20px) !important;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) !important;
    cursor: pointer !important;
    /* Add border gradient effect directly */
    border: double 1px transparent !important;
    background-image: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%), linear-gradient(45deg, var(--secondary) 0%, transparent 50%) !important;
    background-origin: border-box !important;
    background-clip: padding-box, border-box !important;
    animation: borderAnim01 4s linear infinite !important;
}

.footer-section01:hover {
    transform: translateY(-10px) translateZ(30px) !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3) !important;
}

/* Remove the ::after pseudo-element */

@keyframes borderAnim01 {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

/* Dynamic Logo */
.footer-logo01 {
    margin-bottom: 40px !important;
    position: relative !important;
    transform-style: preserve-3d !important;
}

.footer-logo01 img {
    max-width: 200px !important;
    height: auto !important;
    filter: drop-shadow(0 10px 20px rgba(219,168,88,0.2)) !important;
    transition: transform 0.6s ease !important;
}

.footer-logo01:hover img {
    transform: rotateY(20deg) scale(1.05) !important;
}

/* Interactive Headings */
.footer-heading01 {
    color: var(--white) !important;
    font-size: 1.6rem !important;
    margin-bottom: 30px !important;
    font-weight: 700 !important;
    position: relative !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
}

.footer-heading01::before {
    content: '';
    position: absolute !important;
    bottom: -15px !important;
    left: 0 !important;
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--secondary), transparent) !important;
    transform-origin: left !important;
    transition: transform 0.6s ease !important;
}

.footer-section01:hover .footer-heading01::before {
    transform: scaleX(2) !important;
}

/* Holographic Links */
.footer-link01 {
    color: rgba(255,255,255,0.9) !important;
    padding: 12px 0 !important;
    position: relative !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.footer-link01::before {
    content: '';
    width: 8px !important;
    height: 8px !important;
    background: var(--secondary) !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.footer-link01:hover {
    color: var(--secondary) !important;
    transform: translateX(15px) !important;
    text-shadow: 0 0 15px rgba(219,168,88,0.4) !important;
}

.footer-link01:hover::before {
    opacity: 1 !important;
}

/* Quantum Social Icons */
.social-links01 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
    margin-top: 30px !important;
}

.social-icon01 {
    width: 50px !important;
    height: 50px !important;
    border-radius: 15px !important;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.social-icon01 i {
    position: relative !important;
    z-index: 1 !important;
    transition: transform 0.4s ease !important;
}

.social-icon01::before {
    content: '';
    position: absolute !important;
    width: 150%;
    height: 150%;
    background: conic-gradient(var(--secondary) 0%, transparent 70%) !important;
    animation: rotate01 3s linear infinite !important;
}

@keyframes rotate01 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.social-icon01:hover {
    transform: translateY(-5px) scale(1.1) !important;
    box-shadow: 0 10px 30px rgba(219,168,88,0.3) !important;
}

.social-icon01:hover i {
    transform: rotateY(360deg) !important;
}

/* Holographic Map Container */
.map-container01 {
    width: 100% !important;
    height: 300px !important;
    border-radius: 25px !important;
    overflow: hidden !important;
    position: relative !important;
    margin-top: 30px !important;
    transform: translateZ(30px) !important;
    border: 2px solid rgba(219,168,88,0.2) !important;
}

.map-container01 iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    filter: sepia(0.2) contrast(1.1) saturate(1.2) !important;
    transition: filter 0.6s ease !important;
}

.map-container01:hover iframe {
    filter: sepia(0) contrast(1) saturate(1) !important;
}

/* Enhanced Footer Bottom */
.footer-bottom01 {
    position: relative !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    padding-top: 40px !important;
    margin-top: 60px !important;
    background: linear-gradient(90deg, transparent, rgba(219,168,88,0.05), transparent) !important;
}

.footer-bottom01::before {
    content: '' !important;
    position: absolute !important;
    top: -1px !important;
    left: 50% !important;
    width: 200px !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent) !important;
    transform: translateX(-50%) !important;
    filter: drop-shadow(0 0 10px rgba(219,168,88,0.5)) !important;
}

/* Enhanced Copyright Section */
.copyright01 {
    text-align: center !important;
    font-size: 0.95rem !important;
    color: rgba(255,255,255,0.8) !important;
    letter-spacing: 1px !important;
    line-height: 1.8 !important;
}

/* New Developer Credit */
.developer-credit01 {
    text-align: center !important;
    margin-top: 20px !important;
    padding: 15px !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent) !important;
    border-radius: 30px !important;
    position: relative !important;
    overflow: hidden !important;
}

.developer-credit01::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent) !important;
    animation: shimmer01 3s infinite !important;
}

@keyframes shimmer01 {
    0% { transform: translateX(0); }
    100% { transform: translateX(200%); }
}

.developer-credit01 a {
    color: var(--secondary) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    position: relative !important;
    padding: 5px 15px !important;
    border-radius: 15px !important;
    transition: all 0.3s ease !important;
    text-shadow: 0 0 10px rgba(219,168,88,0.3) !important;
}

.developer-credit01 a:hover {
    background: rgba(219,168,88,0.1) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(219,168,88,0.2) !important;
}

.developer-credit01 a::before {
    content: '⚡' !important;
    margin-right: 5px !important;
    font-size: 1.1em !important;
    vertical-align: middle !important;
}

/* Enhanced Legal Links */
.legal-links01 {
    margin: 25px 0 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
    position: relative !important;
}

.legal-links01 a {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none !important;
    padding: 5px 15px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    z-index: 1 !important;
}

.legal-links01 a::before {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 1px !important;
    background: var(--secondary) !important;
    transform: scaleX(0) !important;
    transform-origin: right !important;
    transition: transform 0.3s ease !important;
}

.legal-links01 a:hover {
    color: var(--secondary) !important;
    transform: translateY(-2px) !important;
}

.legal-links01 a:hover   {
    transform: scaleX(1) !important;
    transform-origin: left !important;
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 1200px) {
    .footer-grid01 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (max-width: 992px) {
    .luxury-footer01 {
        padding-top: 60px !important;
    }
    
    .footer-grid01 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    
    .footer-section01 {
        padding: 20px !important;
    }
    
    .map-container01 {
        height: 250px !important;
    }

    .footer-logo01 img {
        max-width: 150px !important;
    }
}

@media (max-width: 768px) {
    .luxury-footer01 {
        padding-top: 40px !important;
        margin-top: 40px !important;
    }
    
    .footer-grid01 {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .footer-section01 {
        text-align: center !important;
        padding: 20px 15px !important;
    }
    
    .footer-heading01::before {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .footer-link01 {
        justify-content: center !important;
    }
    
    .social-links01 {
        grid-template-columns: repeat(4, 40px) !important;
        justify-content: center !important;
        gap: 10px !important;
    }
    
    .map-container01 {
        height: 200px !important;
        border-radius: 15px !important;
        margin: 0 -15px !important;
    }
    
    .footer-logo01 img {
        margin: 0 auto !important;
        max-width: 120px !important;
    }

    .footer-bottom01 {
        padding: 20px 15px !important;
    }

    .developer-credit01 {
        margin: 15px 0 !important;
    }
}

@media (max-width: 576px) {
    .footer-section01 {
        padding: 15px !important;
        margin: 0 !important;
    }

    .footer-heading01 {
        font-size: 1.2rem !important;
    }

    .footer-link01 {
        font-size: 0.9rem !important;
    }

    .social-links01 {
        grid-template-columns: repeat(4, 35px) !important;
        gap: 8px !important;
    }

    .social-icon01 {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }

    .footer-text01 {
        font-size: 0.9rem !important;
    }

    .map-container01 {
        height: 180px !important;
    }
}

/* 3D Parallax Effect */
@media (hover: hover) {
    .luxury-footer01 {
        transition: transform 0.3s ease !important;
    }
    
    .luxury-footer01:hover {
        transform: rotate3d(0.5, 0, 0, 1deg) !important;
    }
}

/* Mobile Touch Effects */
@media (hover: none) {
    .footer-section01 {
        transition: transform 0.3s ease !important;
    }
    
    .footer-section01:active {
        transform: scale(0.98) !important;
    }
    
    .social-icon01:active {
        transform: scale(0.9) !important;
    }
}

/* Loading Animation */
@keyframes hologramLoad01 {
    0% { opacity: 0; transform: translateY(50px) rotateX(45deg); }
    100% { opacity: 1; transform: translateY(0) rotateX(0); }
}

.footer-section01 {
    animation: hologramLoad01 1s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

/* Mobile Header Language Switcher */
.mobile-header-lang-switcher {
    display: none !important;
}

@media (max-width: 992px) {
    .mobile-header-lang-switcher {
        display: flex !important;
        align-items: center !important;
        margin-right: 15px !important;
    }

    .mobile-header-lang-switcher .language-switcher {
        position: relative !important;
    }

    .mobile-header-lang-switcher .lang-btn {
        background: transparent !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        padding: 5px 10px !important;
        border-radius: 5px !important;
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
        color: var(--white) !important;
        font-size: 14px !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }

    .mobile-header-lang-switcher .lang-btn:hover {
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .mobile-header-lang-switcher .lang-dropdown {
        position: absolute !important;
        top: 100% !important;
        right: 0 !important;
        background: var(--primary-dark) !important;
        border-radius: 5px !important;
        padding: 5px 0 !important;
        min-width: 120px !important;
        display: none !important;
        z-index: 1000 !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    }

    .mobile-header-lang-switcher .language-switcher.active .lang-dropdown {
        display: block !important;
    }

    .mobile-header-lang-switcher .lang-dropdown a {
        padding: 8px 15px !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        color: var(--white) !important;
        text-decoration: none !important;
        transition: background 0.3s ease !important;
    }

    .mobile-header-lang-switcher .lang-dropdown a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .mobile-header-lang-switcher .flag-icon {
        width: 20px !important;
        height: 20px !important;
        border-radius: 3px !important;
        object-fit: cover !important;
    }

    /* Adjust the nav container to accommodate both buttons */
    nav .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .nav-buttons {
        display: flex !important;
        align-items: center !important;
    }

    /* Hide desktop language switcher in mobile */
    .desktop-only {
        display: none !important;
    }
}
