        html, body {
            width: 100%;
            height: 100%;
            overflow-x: hidden;
            background: #000000;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
        }

        /* ── Gradient Text override ─────────────────────── */
        .gradient-text {
            text-shadow: none !important;
        }

        /* ── CSS Animated Background ────────────────────── */
        .contact-bg {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background: transparent;
        }

        #ghost-cursor-container {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
        }

        /* ── Main Content ───────────────────────────────── */
        main {
            padding-top: 0;
            min-height: 100vh;
            position: relative;
            z-index: 10;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ── Glow Keyframes ─────────────────────────────── */
        @keyframes glow {
            0%, 100% { text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.7), 0 0 20px rgba(20, 184, 166, 0.12), 0 0 40px rgba(20, 184, 166, 0.06); }
            50%       { text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.7), 0 0 30px rgba(20, 184, 166, 0.22), 0 0 60px rgba(20, 184, 166, 0.10); }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ── Hero Section ───────────────────────────────── */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 84px 2rem 2rem;
            position: relative;
            opacity: 0;
            animation: fadeInDown 0.8s ease forwards;
        }

        .hero::before {
            display: none;
        }

        .hero h1,
        .hero p {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 1.2rem;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0,0,0,1), 0 4px 20px rgba(0,0,0,0.9), 0 8px 40px rgba(0,0,0,0.8);
            animation: glow 3s ease-in-out infinite;
        }

        .hero p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.85);
            text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.7);
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ── Section Title ──────────────────────────────── */
        .section-title {
            text-align: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 4rem;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0,0,0,1), 0 4px 20px rgba(0,0,0,0.9), 0 8px 40px rgba(0,0,0,0.8);
            position: relative;
            z-index: 2;
            animation: glow 3s ease-in-out infinite;
        }

        .section-title::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 200%;
            background: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 40%, transparent 70%);
            z-index: -1;
            pointer-events: none;
        }

        /* ── Contact Section ────────────────────────────── */
        .contact-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 10rem;
            align-items: start;
            padding: 0 2rem;
        }

        .gc-glow::before {
            content: "";
            position: absolute;
            inset: 25px;
            border-radius: inherit;
            box-shadow:
                inset 0 0 0 1px var(--glow-color),
                inset 0 0 4px 1px var(--glow-color),
                0 0 4px 1px var(--glow-color),
                0 0 12px 2px var(--glow-color);
        }

        /* ── Form Card ──────────────────────────────────── */
        .form-card {
            --pointer-x: 50%;
            --pointer-y: 50%;
            --pointer-deg: 45deg;
            --proximity: 0;
            --glow-color: #00ffff;
            position: relative;
            cursor: pointer;
            border-radius: 12px;
        }

        .form-card-inner {
            position: relative;
            z-index: 2;
            background: #000000;
            border: 0.5px solid rgba(255, 255, 255, 0.08);
            border-radius: inherit;
            padding: 2.5rem;
            margin: 1px;
        }

        .card-heading {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        /* ── Info Card ──────────────────────────────────── */
        .info-card {
            --pointer-x: 50%;
            --pointer-y: 50%;
            --pointer-deg: 45deg;
            --proximity: 0;
            --glow-color: #ff00aa;
            position: relative;
            cursor: pointer;
            border-radius: 12px;
        }

        .info-card-inner {
            position: relative;
            z-index: 2;
            background: #000000;
            border: 0.5px solid rgba(255, 255, 255, 0.08);
            border-radius: inherit;
            padding: 2.5rem;
            margin: 1px;
        }

        /* ── Form Styling ───────────────────────────────── */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'Orbitron', sans-serif;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.85rem 1rem;
            background: rgba(255, 255, 255, 0.03);
            border: 0.5px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.25);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: rgba(0, 255, 255, 0.4);
            background: rgba(0, 255, 255, 0.03);
            box-shadow: 0 0 8px rgba(0, 255, 255, 0.15);
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
            padding-right: 2rem;
        }

        .form-group select {
            display: none;
        }

        .custom-select {
            position: relative;
            width: 100%;
        }

        .custom-select-trigger {
            width: 100%;
            padding: 0.85rem 2rem 0.85rem 1rem;
            background: rgba(255, 255, 255, 0.03);
            border: 0.5px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.25);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
        }

        .custom-select-trigger.has-value {
            color: #ffffff;
        }

        .custom-select-trigger:hover,
        .custom-select.open .custom-select-trigger {
            border-color: rgba(0, 255, 255, 0.4);
            background-color: rgba(0, 255, 255, 0.03);
            box-shadow: 0 0 8px rgba(0, 255, 255, 0.15);
        }

        .custom-select-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            right: 0;
            background: #1a1a1a;
            border: 0.5px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            overflow: hidden;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .custom-select.open .custom-select-dropdown {
            display: block;
        }

        .custom-select-option {
            padding: 0.7rem 1rem;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.15s ease;
        }

        .custom-select-option:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .custom-select-option.selected {
            background: rgba(0, 255, 255, 0.1);
        }

        .custom-select-option.placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
            font-family: 'Inter', sans-serif;
        }

        /* ── Submit Button ──────────────────────────────── */
        .submit-btn {
            width: 100%;
            padding: 1.1rem 3rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #FFFF00, #00FFFF);
            color: #000000;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
            margin-top: 0.5rem;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.5), 0 0 50px rgba(255, 255, 0, 0.2);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* ── Info Items ─────────────────────────────────── */
        .info-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }

        .info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .info-item:hover {
            transform: translateX(5px);
        }

        .info-label {
            color: rgba(255, 255, 255, 0.65);
            font-family: 'Orbitron', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .info-value {
            color: #ffffff;
            font-size: 1.05rem;
            font-family: 'Inter', sans-serif;
        }

        .info-value a {
            color: #00FFFF;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .info-value a:hover {
            text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
        }

        /* ── Scroll Animation ───────────────────────────── */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── Mobile Responsive ──────────────────────────── */
        @media (max-width: 768px) {
            section {
                padding: 2.5rem 0;
            }

            .contact-section {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .form-card-inner,
            .info-card-inner {
                padding: 1.5rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.6rem;
                margin-bottom: 2rem;
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .hero {
                min-height: auto;
                justify-content: flex-start;
                padding: 100px 1rem 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero p {
                font-size: 0.9rem;
            }

            .form-card-inner,
            .info-card-inner {
                padding: 1rem;
                border-radius: 10px;
            }

            .form-group {
                margin-bottom: 1rem;
            }

            .submit-btn {
                padding: 0.8rem;
                font-size: 0.8rem;
            }
        }
