:root {
            --neon-blue: #00f7ff;
            --neon-purple: #a100ff;
            --neon-pink: #ff00e6;
            --dark-bg: #0a0a15;
            --accent-green: #00ffaa;
            --glow-blue: rgba(0, 247, 255, 0.5);
            --glow-purple: rgba(161, 0, 255, 0.5);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--dark-bg);
            color: #e5e7eb;
            margin: 0;
            overflow-x: hidden;
            touch-action: manipulation;
        }

        .gradient-text {
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 16px;
        }

        .glass-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 32px rgba(0, 247, 255, 0.2);
        }

        .cta-button {
            position: relative;
            overflow: hidden;
            transform: translateZ(0);
            transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
            border-radius: 12px;
            padding: 14px 28px;
            color: #fff;
            font-weight: 700;
            /* font-family: 'Orbitron', sans-serif; */
            text-transform: uppercase;
            box-shadow: 0 4px 15px var(--glow-blue);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: scale(1.08);
            background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
            box-shadow: 0 6px 20px var(--glow-purple);
        }

        #particle-canvas {
            pointer-events: none;
            z-index: 0;
        }

        .contact-form {
            padding: 1.5rem;
        }

        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #e5e7eb;
            padding: 10px;
            border-radius: 8px;
            width: 100%;
            transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus,
        .contact-form select:focus {
            outline: none;
            border-color: var(--neon-blue);
            background: rgba(255, 255, 255, 0.12);
            transform: scale(1.02);
        }

        .contact-form select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23e5e7eb'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0.8rem center;
            background-size: 1.2em;
        }

        .contact-form select option {
            background: var(--dark-bg);
            color: #e5e7eb;
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form .mb-5,
        .contact-form .mb-6 {
            margin-bottom: 1rem;
        }

        .contact-form label {
            margin-bottom: 0.5rem;
        }

        .contact-info i,
        .hours i {
            color: var(--neon-blue);
            margin-right: 14px;
            font-size: 1.5rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .contact-info a {
            color: var(--neon-blue);
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .contact-info a:hover,
        .contact-info a:hover i {
            color: var(--neon-pink);
            transform: scale(1.1);
        }

        .social-links a {
            font-size: 1.75rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-links a:hover {
            color: var(--neon-pink);
            transform: scale(1.2);
        }

        .map-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            max-width: 100%;
            margin: 2rem auto 0; /* Added margin for spacing */
        }

        .map-container:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(0, 247, 255, 0.2);
        }

        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .cta-banner {
            background: linear-gradient(90deg, rgba(0, 247, 255, 0.15), rgba(161, 0, 255, 0.15));
            border-radius: 16px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-banner:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 32px rgba(0, 247, 255, 0.2);
        }

        .testimonial-slider {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid var(--neon-blue);
        }

        .testimonial-slide {
            display: none;
            padding: 1.5rem;
        }

        .testimonial-slide.active {
            display: block;
        }

        .section-header {
            position: relative;
            padding: 1rem 0;
        }

        .section-header::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .section-header h2 {
                font-size: 2.8rem;
            }

            .section-header p {
                font-size: 1.1rem;
                max-width: 80%;
            }

            .contact-form input,
            .contact-form textarea,
            .contact-form select {
                padding: 8px;
            }

            .map-container {
                padding-bottom: 75%;
            }
        }

        @media (max-width: 768px) {
            .contact-content,
            .additional-content {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 2.4rem;
            }

            .section-header p {
                font-size: 1rem;
                max-width: 90%;
            }

            .contact-form,
            .contact-info,
            .hours,
            .map-container,
            .cta-banner,
            .testimonial-slider {
                margin: 0 auto;
                max-width: 500px;
            }

            .cta-button {
                padding: 12px 24px;
                font-size: 0.95rem;
            }

            .social-links {
                justify-content: flex-start;
            }

            .map-container {
                margin: 1.5rem auto 0;
            }
        }

        @media (max-width: 640px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 0.9rem;
            }

            .contact-form input,
            .contact-form textarea,
            .contact-form select {
                font-size: 0.85rem;
                padding: 8px;
            }

            .contact-info i,
            .hours i {
                font-size: 1.2rem;
                margin-right: 10px;
            }

            .contact-info p,
            .contact-info a,
            .hours p {
                font-size: 0.9rem;
            }

            .social-links a {
                font-size: 1.5rem;
            }

            .map-container {
                padding-bottom: 100%;
                margin: 1rem auto 0;
            }
        }