:root {
            --glow-color-1: rgba(236, 72, 153, 0.6);
            --glow-color-2: rgba(139, 92, 246, 0.6);
        }

        /* Glass Effect */
        .glass-effect {
            background: rgba(28, 25, 23, 0.4);
            backdrop-filter: blur(16px) saturate(1.2);
            -webkit-backdrop-filter: blur(16px) saturate(1.2);
            border: 1px solid rgba(71, 85, 105, 0.2);
            transition: background 0.3s, border-color 0.3s;
        }

        .glass-effect:hover {
            background: rgba(28, 25, 23, 0.6);
            border-color: rgba(71, 85, 105, 0.4);
        }

        .glass-input {
            background: rgba(44, 44, 44, 0.9) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            color: #fff !important;
        }
        .glass-input::placeholder { color: #94a3b8 !important; }
        .glass-input:focus {
            background: rgba(50, 50, 50, 0.95) !important;
            border-color: #8b5cf6 !important;
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.3) !important;
        }

        .platform-tab-active {
            color: white;
            background-image: linear-gradient(to right, #a855f7, #ec4899);
            box-shadow: 0 4px 20px rgba(217, 70, 239, 0.4);
        }

        .service-type-tab-active {
            background-color: #ec4899;
            color: white;
        }

        /* Holographic Hover Effect */
        .holographic-hover {
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .holographic-hover::before {
            content: '';
            position: absolute;
            top: var(--y, 0);
            left: var(--x, 0);
            transform: translate(-50%, -50%);
            width: 250px;
            height: 250px;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
            opacity: 0;
            transition: opacity 0.4s ease-out;
            pointer-events: none;
            z-index: 1;
        }

        .holographic-hover:hover::before {
            opacity: 1;
        }

        /* Animated Gradient Button */
        .animated-gradient-btn {
            background-size: 200% 200%;
            background-image: linear-gradient(45deg, var(--glow-color-2), var(--glow-color-1), var(--glow-color-2));
            animation: gradient-animation 4s ease infinite;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        @keyframes gradient-animation {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .animated-gradient-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px var(--glow-color-1);
        }

        .gsap-reveal {
            opacity: 1;
            visibility: visible;
        }

        body {
            background-color: #050505;
            color: #e2e8f0;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        .glass-panel {
            background: rgba(18, 18, 23, 0.6);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
            background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
        }

        /* Mobile Menu Visibility Fix */
        #mobile-menu.glass-panel {
            background: rgba(10, 10, 15, 0.98);
            backdrop-filter: blur(40px);
            -webkit-backdrop-filter: blur(40px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .text-gradient-red {
            background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #eab308 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .aurora-container {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: -1;
            background: #050505;
        }

        .aurora-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: aurora-float 15s infinite ease-in-out alternate;
        }

        .blob-1 {
            top: -10%;
            left: -10%;
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, #ef4444, transparent 70%);
        }

        .blob-2 {
            bottom: -10%;
            right: -20%;
            width: 70vw;
            height: 70vw;
            background: radial-gradient(circle, #f97316, transparent 70%);
        }

        @keyframes aurora-float {
            0% {
                transform: translate(0, 0);
            }

            100% {
                transform: translate(30px, -50px);
            }
        }

        /* SEO Text Block Styles */
        .seo-text h2 {
            font-size: 2.25rem;
            font-weight: 800;
            color: #f3f4f6;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            letter-spacing: -0.025em;
        }

        .seo-text h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #e5e7eb;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            border-left: 4px solid #ef4444;
            padding-left: 1rem;
        }

        .seo-text h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #d1d5db;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .seo-text p {
            color: #9ca3af;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .seo-text ul {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 1.5rem;
            color: #9ca3af;
        }

        .seo-text li {
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .seo-text li::before {
            content: "•";
            color: #ef4444;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .seo-text strong {
            color: #f3f4f6;
            font-weight: 600;
        }

        #mobile-menu {
            transition: max-height 0.5s ease, opacity 0.4s ease;
            max-height: 0;
            opacity: 0;
            pointer-events: none;
            overflow: hidden;
            background: rgba(5, 5, 5, 0.95);
            backdrop-filter: blur(10px);
        }

        #mobile-menu.open {
            max-height: 500px !important;
            opacity: 1 !important;
            pointer-events: auto !important;
        }

        /* Floating Header Specifics */
        .floating-nav {
            position: fixed;
            top: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            max-width: 1280px;
            border-radius: 1.5rem;
            z-index: 50;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(5, 5, 5, 0.65);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
        }

        @media (max-width: 640px) {
            .floating-nav {
                top: 0.5rem;
                width: 96%;
                border-radius: 1rem;
            }
        }

        /* Button Glows */
        .btn-glow {
            position: relative;
            overflow: hidden;
        }

        .btn-glow::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
            transform: scale(0);
            opacity: 0;
            transition: transform 0.5s, opacity 0.5s;
        }

        .btn-glow:hover::after {
            transform: scale(1);
            opacity: 1;
        }

