        :root {
            --primary-blue: #4A90E2;
            --primary-purple: #9B59B6;
            --primary-gold: #F39C12;
            --text-dark: #2C3E50;
            --text-medium: #5D6D7E;
            --text-light: #95A5A6;
            --bg-dark: #1A252F;
            --bg-darker: #0F1821;
        }
        
/*         body { */
/*             font-family: 'Inter', sans-serif; */
/*             min-height: 100vh; */
/*             display: flex; */
/*             flex-direction: column; */
/*         } */
        
/*         .content-wrapper { */
/*             flex: 1; */
/*         } */
        
        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--bg-dark);
/*             background: var(--text-dark); */

            color: white;
            padding-top: 60px;
            margin-top: 80px;
        }
        
        .footer-main {
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Footer brand */
        .footer-brand {
            margin-bottom: 30px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .footer-logo .star-icon {
            color: var(--primary-gold);
            font-size: 2.5rem;
        }
        
        .footer-logo .brand-text {
            font-size: 2rem;
            font-weight: 800;
            color: white;
        }
        
        .footer-description {
            font-size: 1.0625rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 25px;
            max-width: 350px;
        }
        
        /* Social links */
        .social-links {
            display: flex;
            gap: 12px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.125rem;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
            color: white;
            text-decoration: none;
        }
        
        .social-link.facebook:hover {
            background: #1877F2;
        }
        
        .social-link.twitter:hover {
            background: #1DA1F2;
        }
        
        .social-link.instagram:hover {
            background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
        }
        
        .social-link.youtube:hover {
            background: #FF0000;
        }
        
        /* Footer columns */
        .footer-column {
            margin-bottom: 30px;
        }
        
        .footer-column h5 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
            position: relative;
            padding-bottom: 12px;
        }
        
        .footer-column h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-blue);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.0625rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: var(--primary-blue);
            text-decoration: none;
            transform: translateX(5px);
        }
        
        .footer-links a i {
            font-size: 0.875rem;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover i {
            opacity: 1;
        }
        
        /* Newsletter */
        .newsletter-form {
/*             display: flex; */
            gap: 10px;
            margin-top: 20px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 1.0625rem;
            transition: all 0.3s ease;
        }
        
        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary-blue);
            background: rgba(255, 255, 255, 0.1);
        }
        
        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .newsletter-btn {
            margin-top: 4px;
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.0625rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
        }
        
        /* Contact info */
        .contact-info {
            list-style: none;
            padding: 0;
            margin: 20px 0 0 0;
        }
        
        .contact-info li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 18px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.0625rem;
        }
        
        .contact-info i {
            color: var(--primary-blue);
            font-size: 1.25rem;
            width: 25px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        /* Footer bottom */
        .footer-bottom {
            background: var(--bg-darker);
            padding: 25px 0;
        }
        
        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.0625rem;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.0625rem;
            transition: all 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color: var(--primary-blue);
            text-decoration: none;
        }
        
        /* Badges */
        .trust-badges {
            display: flex;
            gap: 20px;
            margin-top: 25px;
            flex-wrap: wrap;
        }
        
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 18px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9375rem;
        }
        
        .trust-badge i {
            color: #27AE60;
            font-size: 1.125rem;
        }
        
        /* Responsive */
        @media (max-width: 767.98px) {
            .footer {
                padding-top: 40px;
                margin-top: 40px;
            }
            
            .footer-description {
                max-width: 100%;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-btn {
                width: 100%;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-bottom-links {
                justify-content: center;
            }
            
            .trust-badges {
                flex-direction: column;
            }
        }
        
/*         Demo content */
/*         .demo-content { */
/*             padding: 80px 0; */
/*             min-height: 60vh; */
/*         } */
        
/*         .demo-content h1 { */
/*             font-size: 3rem; */
/*             font-weight: 800; */
/*             margin-bottom: 20px; */
/*         } */