        .footer-premium-theme {
            background: #0a0e1f;
            color: #f0f2ff;
            padding: 90px 0 50px;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(79, 140, 255, 0.08);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
        }
        
        .footer-premium-theme::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(79, 140, 255, 0.04) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .footer-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 50px;
            position: relative;
            z-index: 2;
        }
        
        .footer-main {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: space-between;
            gap: 80px 50px;
            margin-bottom: 60px;
        }
        
        .footer-brand-column {
            flex: 1;
            min-width: 320px;
            max-width: 380px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.2s;
        }
        
        .footer-logo-container {
            margin-bottom: 30px;
            position: relative;
        }
        
        .footer-logo {
            display: inline-flex;
            align-items: center;
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            position: relative;
        }
        
        .footer-logo-main {
            background: linear-gradient(135deg, #121f3e 0%, #1a2750 100%);
            color: #ffffff;
            padding: 9px 16px;
            border-radius: 8px 0 0 8px;
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .footer-logo:hover .footer-logo-main {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        
        .footer-logo-accent {
            background: linear-gradient(135deg, #4f8cff 0%, #3a7bff 100%);
            color: #ffffff;
            padding: 9px 18px;
            border-radius: 0 8px 8px 0;
            font-size: 1.35rem;
            font-weight: 700;
            text-transform: capitalize;
            display: inline-block;
            box-shadow: 0 5px 20px rgba(79,140,255,0.3);
            transition: all 0.4s ease;
        }
        
        .footer-tagline {
            color: #a3b1d9;
            font-size: 1.1rem;
            line-height: 1.7;
            margin: 25px 0 0 20px;
            font-weight: 400;
            position: relative;
            padding-left: 20px;
            max-width: 320px;
        }
        
        .footer-tagline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            height: 2px;
            width: 12px;
            background: linear-gradient(90deg, #4f8cff 0%, rgba(79,140,255,0) 100%);
        }
        
        .footer-contact-list {
            margin-top: 35px;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            color: #a3b1d9;
            font-size: 1.08rem;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0;
            transform: translateX(-20px);
        }
        
        .footer-contact-item:nth-child(1) {
            animation: fadeInRight 0.6s ease forwards;
            animation-delay: 0.4s;
        }
        
        .footer-contact-item:nth-child(2) {
            animation: fadeInRight 0.6s ease forwards;
            animation-delay: 0.5s;
        }
        
        .footer-contact-item:nth-child(3) {
            animation: fadeInRight 0.6s ease forwards;
            animation-delay: 0.6s;
        }
        
        .footer-contact-item:hover {
            color: #f0f2ff;
        }
        
        .footer-contact-item:hover .footer-contact-icon {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(79,140,255,0.4);
        }
        
        .footer-contact-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 9px;
            color: #ffffff;
            font-size: 1.2rem;
            flex-shrink: 0;
            background: linear-gradient(135deg, #4f8cff 0%, #3a7bff 100%);
            box-shadow: 0 5px 15px rgba(79,140,255,0.3);
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .footer-contact-text {
            display: inline-block;
            color: #a3b1d9;
            font-size: 1.08rem;
            font-weight: 500;
            line-height: 1.7;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .footer-contact-item:hover .footer-contact-text {
            color: #f0f2ff;
        }
        
        .footer-links-container {
            flex: 2;
            min-width: 440px;
            max-width: 820px;
            display: flex;
            flex-wrap: wrap;
            gap: 80px 60px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.3s;
        }
        
        .footer-links-group {
            min-width: 180px;
            max-width: 260px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        
        .footer-links-title {
            font-size: 1.18rem;
            color: #7d8db5;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }
        
        .footer-links-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #4f8cff 0%, rgba(79,140,255,0) 100%);
            transition: width 0.4s ease;
        }
        
        .footer-links-title:hover::after {
            width: 80px;
        }
        
        .footer-link {
            color: #f0f2ff;
            text-decoration: none;
            font-size: 1.08rem;
            font-weight: 400;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0.9;
            position: relative;
            padding-left: 0;
            opacity: 0;
            transform: translateY(10px);
        }
        
        .footer-link:nth-child(1) { animation: fadeInUp 0.5s ease forwards; animation-delay: 0.4s; }
        .footer-link:nth-child(2) { animation: fadeInUp 0.5s ease forwards; animation-delay: 0.45s; }
        .footer-link:nth-child(3) { animation: fadeInUp 0.5s ease forwards; animation-delay: 0.5s; }
        .footer-link:nth-child(4) { animation: fadeInUp 0.5s ease forwards; animation-delay: 0.55s; }
        .footer-link:nth-child(5) { animation: fadeInUp 0.5s ease forwards; animation-delay: 0.6s; }
        .footer-link:nth-child(6) { animation: fadeInUp 0.5s ease forwards; animation-delay: 0.65s; }
        .footer-link:nth-child(7) { animation: fadeInUp 0.5s ease forwards; animation-delay: 0.7s; }
        .footer-link:nth-child(8) { animation: fadeInUp 0.5s ease forwards; animation-delay: 0.75s; }
        .footer-link:nth-child(9) { animation: fadeInUp 0.5s ease forwards; animation-delay: 0.8s; }
        
        .footer-link::before {
            content: '›';
            position: absolute;
            left: -18px;
            top: 50%;
            transform: translateY(-50%);
            color: #4f8cff;
            opacity: 0;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .footer-link:hover {
            color: #4f8cff;
            padding-left: 18px;
            opacity: 1;
        }
        
        .footer-link:hover::before {
            opacity: 1;
            left: 0;
        }
        
        .footer-social-column {
            min-width: 240px;
            max-width: 260px;
            margin-left: auto;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.4s;
        }
        
        .footer-social-title {
            font-weight: 700;
            color: #7d8db5;
            margin-bottom: 22px;
            display: block;
            font-size: 1.18rem;
            letter-spacing: 0.03em;
        }
        
        .footer-social-icons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .footer-social-icon {
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            background: #121a33;
            border-radius: 10px;
            color: #4f8cff;
            font-size: 1.35rem;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: scale(0.8);
        }
        
        .footer-social-icon:nth-child(1) { animation: fadeInScale 0.6s ease forwards; animation-delay: 0.5s; }
        .footer-social-icon:nth-child(2) { animation: fadeInScale 0.6s ease forwards; animation-delay: 0.55s; }
        .footer-social-icon:nth-child(3) { animation: fadeInScale 0.6s ease forwards; animation-delay: 0.6s; }
        .footer-social-icon:nth-child(4) { animation: fadeInScale 0.6s ease forwards; animation-delay: 0.65s; }
        .footer-social-icon:nth-child(5) { animation: fadeInScale 0.6s ease forwards; animation-delay: 0.7s; }
        
        .footer-social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #4f8cff 0%, #3a7bff 100%);
            opacity: 0;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .footer-social-icon i {
            position: relative;
            z-index: 2;
        }
        
        .footer-social-icon:hover {
            transform: translateY(-3px);
            color: #ffffff;
            box-shadow: 0 10px 30px rgba(79,140,255,0.4);
        }
        
        .footer-social-icon:hover::before {
            opacity: 1;
        }
        
        .footer-bottom {
            padding-top: 35px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: #7d8db5;
            border-top: 1px solid rgba(79, 140, 255, 0.1);
            font-size: 1.02rem;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.5s;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 28px;
        }
        
        .footer-bottom-link {
            color: #a3b1d9;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            opacity: 0;
            transform: translateY(10px);
        }
        
        .footer-bottom-link:nth-child(1) { animation: fadeInUp 0.5s ease forwards; animation-delay: 0.6s; }
        .footer-bottom-link:nth-child(2) { animation: fadeInUp 0.5s ease forwards; animation-delay: 0.65s; }
        .footer-bottom-link:nth-child(3) { animation: fadeInUp 0.5s ease forwards; animation-delay: 0.7s; }
        .footer-bottom-link:nth-child(4) { animation: fadeInUp 0.5s ease forwards; animation-delay: 0.75s; }
        
        .footer-bottom-link::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 1px;
            background: #4f8cff;
            transition: width 0.4s ease;
        }
        
        .footer-bottom-link:hover {
            color: #4f8cff;
        }
        
        .footer-bottom-link:hover::after {
            width: 100%;
        }
        
        .footer-copyright {
            color: #7d8db5;
            font-size: 1.02rem;
            font-weight: 400;
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0;
            transform: translateY(10px);
            animation: fadeInUp 0.5s ease forwards;
            animation-delay: 0.8s;
        }
        
        .footer-copyright i {
            font-size: 0.95rem;
            color: #4f8cff;
        }
        
        /* Animation keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        /* Floating elements animation */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-8px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        .floating-element {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(79, 140, 255, 0.15) 0%, transparent 70%);
            filter: blur(5px);
            z-index: 1;
            animation: float 8s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            top: 20%;
            left: 5%;
            width: 120px;
            height: 120px;
            animation-delay: 0s;
            animation-duration: 10s;
        }
        
        .floating-element:nth-child(2) {
            top: 60%;
            right: 10%;
            width: 80px;
            height: 80px;
            animation-delay: 2s;
            animation-duration: 12s;
        }
        
        .floating-element:nth-child(3) {
            bottom: 15%;
            left: 15%;
            width: 60px;
            height: 60px;
            animation-delay: 4s;
            animation-duration: 9s;
        }
        
        /* Responsive styles */
        @media (max-width: 1200px) {
            .footer-container {
                padding: 0 40px;
            }
            
            .footer-main {
                gap: 60px 40px;
            }
            
            .footer-bottom { 
                padding-top: 30px; 
            }
        }
        
        @media (max-width: 992px) {
            .footer-main {
                flex-direction: column;
                gap: 50px;
            }
            
            .footer-social-column {
                margin-left: 0;
            }
            
            .footer-links-container {
                min-width: 0;
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .footer-container {
                padding: 0 30px;
            }
            
            .footer-bottom {
                padding-top: 25px;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .footer-bottom-links {
                flex-direction: column;
                gap: 15px;
            }
            
            .footer-copyright {
                margin-left: 0;
            }
            
            .footer-links-container {
                gap: 40px 30px;
            }
        }
        
        @media (max-width: 576px) {
            .footer-container {
                padding: 0 25px;
            }
            
            .footer-logo {
                font-size: 1.7rem;
            }
            
            .footer-logo-main {
                font-size: 1.5rem;
                padding: 7px 14px;
            }
            
            .footer-logo-accent {
                font-size: 1.2rem;
                padding: 7px 16px;
            }
            
            .footer-links-container {
                flex-direction: column;
                gap: 35px 0;
            }
            
            .footer-social-icons {
                gap: 10px;
            }
            
            .footer-social-icon {
                width: 42px;
                height: 42px;
                font-size: 1.25rem;
            }
        }