        .footer-container {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
            position: relative;
            overflow: hidden;
        }
        
        /* Glowing Gradient Background */
        .footer-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: radial-gradient(circle at 70% 20%, rgba(106, 17, 203, 0.15) 0%, rgba(37, 117, 252, 0.1) 50%, transparent 100%);
            z-index: -1;
            opacity: 0.8;
        }
        

        
        /* Main Footer */
        .footer-container .main-footer {
            background-color: rgba(15, 12, 41, 0.95);
            color: #ffffff;
            padding: 60px 0 30px;
            position: relative;
        }
        
        .footer-container .main-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(0, 219, 222, 0.5) 50%, transparent 100%);
        }
        
        .footer-container .footer-logo {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            display: inline-block;
            color: white;
            position: relative;
            text-shadow: 0 0 10px rgba(0, 219, 222, 0.5);
        }
        
        .footer-container .footer-logo::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%);
            transition: all 0.5s ease;
        }
        
        .footer-container .footer-logo:hover::after {
            width: 80px;
            background: linear-gradient(90deg, #fc00ff 0%, #00dbde 100%);
        }
        
        .footer-container .footer-heading {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            color: white;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
        }
        

        
        .footer-container .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-container .footer-links li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-container .footer-links li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: #00dbde;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .footer-container .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 15px;
            display: inline-block;
        }
        
        .footer-container .footer-links a:hover {
            color: white;
            transform: translateX(5px);
            text-shadow: 0 0 5px rgba(0, 219, 222, 0.5);
        }
        
        .footer-container .footer-links li:hover::before {
            background: #fc00ff;
            box-shadow: 0 0 5px #fc00ff;
        }
        
        .footer-container .contact-info {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-container .contact-info i {
            margin-right: 15px;
            color: #00dbde;
            font-size: 18px;
            margin-top: 3px;
            text-shadow: 0 0 5px rgba(0, 219, 222, 0.5);
        }
        
        .footer-container .contact-info div {
            font-size: 14px;
            line-height: 1.6;
        }
        
        .footer-container .contact-info strong {
            display: block;
            color: white;
            margin-bottom: 3px;
        }
        
        .footer-container .contact-info p {
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }
        
        .footer-container .social-links {
            display: flex;
            margin-top: 25px;
        }
        
        .footer-container .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .footer-container .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #00dbde, #fc00ff);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .footer-container .social-links a:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 219, 222, 0.4);
        }
        
        .footer-container .social-links a:hover::before {
            opacity: 1;
        }
        
        .footer-container .social-links a i {
            position: relative;
            z-index: 1;
        }
        
        /* Newsletter Section */
        .footer-container .newsletter-section {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
        }
        
        .footer-container .newsletter-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(255, 255, 255, 0) 45%,
                rgba(255, 255, 255, 0.05) 50%,
                rgba(255, 255, 255, 0) 55%
            );
            transform: rotate(30deg);
            animation: shine 6s infinite;
        }
        
        .footer-container .newsletter-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: white;
        }
        
        .footer-container .newsletter-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }
        
        .footer-container .newsletter-form {
            display: flex;
        }
        
        .footer-container .newsletter-form input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px 0 0 6px;
            padding: 12px 20px;
            width: 70%;
            font-size: 14px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .footer-container .newsletter-form input:focus {
            border-color: #00dbde;
            box-shadow: 0 0 0 3px rgba(0, 219, 222, 0.2);
            outline: none;
        }
        
        .footer-container .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .footer-container .newsletter-form button {
            background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%);
            color: white;
            border: none;
            border-radius: 0 6px 6px 0;
            padding: 12px 25px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            white-space: nowrap;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-container .newsletter-form button:hover {
            background: linear-gradient(90deg, #fc00ff 0%, #00dbde 100%);
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(252, 0, 255, 0.4);
        }
        
        /* Policy Links */
        .footer-container .policy-links {
            display: flex;
            flex-wrap: wrap;
            margin: 30px 0;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-container .policy-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-right: 25px;
            font-size: 13px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer-container .policy-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: #00dbde;
            transition: width 0.3s ease;
        }
        
        .footer-container .policy-links a:hover {
            color: white;
        }
        
        .footer-container .policy-links a:hover::after {
            width: 100%;
        }
        
        /* Footer Bottom */
        .footer-container .footer-bottom {
            background: rgba(0, 0, 0, 0.9);
            padding: 20px 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            position: relative;
        }
        
        .footer-container .footer-bottom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(0, 219, 222, 0.3) 50%, transparent 100%);
        }
        
        .footer-container .footer-bottom a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-container .footer-bottom a:hover {
            color: #00dbde;
            text-shadow: 0 0 5px rgba(0, 219, 222, 0.5);
        }
        
        .footer-container .payment-methods img {
            height: 26px;
            margin-left: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-container .payment-methods img:hover {
            transform: translateY(-2px);
        }
        
        /* Cookie Consent */
        .footer-container .cookie-consent {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(150%);
            max-width: 90%;
            width: 100%;
            max-width: 1000px;
            background: rgba(15, 12, 41, 0.95);
            color: white;
            padding: 25px;
            z-index: 9999;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .footer-container .cookie-consent.show {
            transform: translateX(-50%) translateY(0);
        }
        
        .footer-container .cookie-consent p {
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-container .cookie-consent a {
            color: #00dbde;
            text-decoration: none;
        }
        
        .footer-container .cookie-consent .btn {
            margin-right: 10px;
            min-width: 100px;
            font-size: 13px;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 6px;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }
        
        .footer-container .cookie-consent .btn-accept {
            background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%);
            color: white;
            border: none;
        }
        
        .footer-container .cookie-consent .btn-accept:hover {
            background: linear-gradient(90deg, #fc00ff 0%, #00dbde 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(252, 0, 255, 0.4);
        }
        
        .footer-container .cookie-consent .btn-decline {
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .footer-container .cookie-consent .btn-decline:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .footer-container .cookie-consent .btn-settings {
            background: transparent;
            color: #00dbde;
            border: 1px solid rgba(0, 219, 222, 0.3);
        }
        
        .footer-container .cookie-consent .btn-settings:hover {
            background: rgba(0, 219, 222, 0.1);
            border-color: rgba(0, 219, 222, 0.5);
        }
        
        /* Animations */
        @keyframes gradientBG {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        @keyframes shine {
            to {
                transform: translateX(100%) rotate(30deg);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        .footer-container .animated {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .footer-container .delay-1 {
            animation-delay: 0.1s;
        }
        
        .footer-container .delay-2 {
            animation-delay: 0.2s;
        }
        
        .footer-container .delay-3 {
            animation-delay: 0.3s;
        }
        
        .footer-container .delay-4 {
            animation-delay: 0.4s;
        }
        
        /* Floating Elements */
        .footer-container .floating {
            position: absolute;
            opacity: 0.1;
            z-index: -1;
        }
        
        .footer-container .floating-1 {
            top: 10%;
            left: 5%;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #00dbde, #fc00ff);
            border-radius: 50%;
            filter: blur(10px);
            animation: float 6s ease-in-out infinite;
        }
        
        .footer-container .floating-2 {
            bottom: 15%;
            right: 8%;
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #fc00ff, #00dbde);
            border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
            filter: blur(15px);
            animation: float 8s ease-in-out infinite;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .footer-container .footer-col {
                margin-bottom: 40px;
            }
            
            .footer-container .footer-heading {
                cursor: pointer;
                position: relative;
                padding-right: 30px;
            }
            
            .footer-container .footer-heading::after {
                content: '+';
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                font-size: 20px;
                color: #00dbde;
                transition: all 0.3s ease;
            }
            
            .footer-container .footer-heading.active::after {
                content: '-';
            }
            
            .footer-container .footer-links {

                transition: max-height 0.5s ease;
            }
            
            .footer-container .footer-heading.active + .footer-links {
                max-height: 1000px;
            }
            
            .footer-container .newsletter-form {
                flex-direction: column;
            }
            
            .footer-container .newsletter-form input,
            .footer-container .newsletter-form button {
                width: 100%;
                border-radius: 6px;
            }
            
            .footer-container .newsletter-form input {
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 767.98px) {
            .footer-container .discount-title {
                font-size: 22px;
            }
            
            .footer-container .discount-code {
                padding: 8px 20px;
                font-size: 14px;
            }
            
            .footer-container .policy-links a {
                margin-right: 15px;
                margin-bottom: 10px;
            }
            
            .footer-container .footer-bottom .text-right {
                text-align: left !important;
                margin-top: 15px;
            }
            
            .footer-container .cookie-consent {
                bottom: 15px;
                padding: 20px;
            }
            
            .footer-container .cookie-consent .btn {
                display: block;
                width: 100%;
                margin-bottom: 10px;
                margin-right: 0;
            }
            
            .footer-container .cookie-consent .btn:last-child {
                margin-bottom: 0;
            }
        }