        /* Footer Styles */
        footer {
            background: linear-gradient(135deg, #010e38 0%, #022051 100%);
            color: white;
            padding: 2rem 0 0;
            position: relative;
            overflow: hidden;
        }
        
        .footer-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
            background-size: cover;
            background-repeat: no-repeat;
            opacity: 0.3;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 3rem;
            position: relative;
            z-index: 1;
        }
        
        .footer-logo-col {
            display: flex;
            flex-direction: column;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            gap: 0.8rem;
            text-decoration: none;
        }
        
        .footer-logo img {
            height: 42px;
        }
        
        .footer-logo-text {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(90deg, white, var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .footer-about {
            margin-bottom: 1.5rem;
            color: var(--gray-light);
            line-height: 1.7;
        }
        
        .footer-about strong {
            color: white;
            font-weight: 500;
        }
        
        .footer-subscribe {
            margin-top: auto;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .social-links a {
            color: white;
            background-color: rgba(255, 255, 255, 0.1);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
        }
        
        .footer-heading {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.8rem;
            color: white;
            position: relative;
            padding-bottom: 0.8rem;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 3px;
        }
        
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        
        .footer-links a {
            color: var(--gray-light);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        
        .footer-links a::before {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.6rem;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-links a:hover::before {
            color: var(--accent);
        }
        
        .footer-contact p {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.2rem;
            color: var(--gray-light);
            line-height: 1.7;
        }
        
        .footer-contact i {
            margin-right: 12px;
            color: white;
            font-size: 1.1rem;
            margin-top: 3px;
        }
        
        .footer-newsletter p {
            color: var(--gray-light);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        
        .newsletter-form {
            display: flex;
            margin-bottom: 1.5rem;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 0.6rem;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }
        
        .newsletter-form:focus-within {
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.3);
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: none;
            background: transparent;
            color: white;
            font-size: 0.95rem;
        }
        
        .newsletter-form input::placeholder {
            color: var(--gray-light);
        }
        
        .newsletter-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .newsletter-form button:hover {
            background-color: var(--primary-dark);
        }
        
        .footer-bottom {
            max-width: 1400px;
            margin: 4rem auto 0;
            padding: 2rem 2rem 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .footer-bottom p {
            color: var(--gray-light);
            font-size: 0.9rem;
        }
        
        .footer-bottom-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        
        .footer-bottom-links a {
            color: var(--gray-light);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        
        .footer-bottom-links a:hover {
            color: white;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: var(--shadow-lg);
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
        }
        

        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .footer-col {
            animation: fadeIn 0.5s ease forwards;
        }
        
        .footer-col:nth-child(1) { animation-delay: 0.1s; }
        .footer-col:nth-child(2) { animation-delay: 0.2s; }
        .footer-col:nth-child(3) { animation-delay: 0.3s; }
        .footer-col:nth-child(4) { animation-delay: 0.4s; }
        .footer-col:nth-child(5) { animation-delay: 0.5s; }
