        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
            background: radial-gradient(ellipse at top, #0f0f23 0%, #0a0a0a 50%, #000000 100%);
            color: #ffffff;
            overflow-x: hidden;
            min-height: 100vh;
            font-weight: 300;
            letter-spacing: -0.01em;
        }

        /* Technical grid background */
        .bg-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            opacity: 0.03;
            background-image: 
                linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Animated circuit lines */
        .circuit-lines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .circuit-line {
            position: absolute;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), rgba(147, 51, 234, 0.4), transparent);
            height: 1px;
            animation: circuitFlow 8s linear infinite;
            box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
        }

        .circuit-line.vertical {
            width: 1px;
            height: 100px;
            background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.4), rgba(147, 51, 234, 0.4), transparent);
            animation: circuitFlowVertical 10s linear infinite;
            box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
        }

        @keyframes circuitFlow {
            0% { left: -200px; width: 0; }
            50% { width: 200px; }
            100% { left: 100%; width: 0; }
        }

        @keyframes circuitFlowVertical {
            0% { top: -100px; height: 0; }
            50% { height: 100px; }
            100% { top: 100%; height: 0; }
        }

        /* Navigation */
        .navbar {
            position: sticky;
            top: 0;
            width: 100%;
            padding: 1.5rem 2rem;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(40px);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 700;
            /* background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #a855f7 100%); */
            background-color: #ffffff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            transition: all 0.3s ease;
            letter-spacing: -0.02em;
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, #60a5fa, #a855f7);
            transition: width 0.3s ease;
        }

        .logo:hover::after {
            width: 100%;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 400;
            font-size: 0.95rem;
            position: relative;
            padding: 0.8rem 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 0.01em;
        }

        .nav-links a:hover, .nav-links a.active {
            color: #ffffff;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: #ffffff;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover::before, .nav-links a.active::before {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .map-responsive {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%; /* Default: 16:9 aspect ratio */
        overflow: hidden;
        border-radius: 12px;
        margin-top: 1.5rem;
        }

        /* Embed itself takes full space */
        .map-responsive iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        }

        /* Contact Section */
        .contact-section {
            padding: 4rem 2rem 8rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 6rem;
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .contact-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.8rem;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 50px;
            color: #60a5fa;
            font-size: 0.85rem;
            font-weight: 400;
            margin-bottom: 2rem;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
            position: relative;
            overflow: hidden;
        }

        .contact-badge::after {
            content: '';
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
            transform: skewX(-30deg);
            animation: shimmer 2.5s infinite;
        }

        @keyframes shimmer {
            0% { left: -75%; }
            100% { left: 125%; }
        }

        .contact-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            margin-bottom: 2rem;
            color: #ffffff;
            line-height: 1.1;
            letter-spacing: -0.03em;
        }

        .contact-title .accent {
            background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { 
                background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
            50% { 
                background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #60a5fa 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
        }

        .contact-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info {
            animation: fadeInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
        }

        .contact-form {
            animation: fadeInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
        }

        .info-card {
            background: rgba(15, 15, 25, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(40px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.6), rgba(168, 85, 247, 0.6), transparent);
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .info-card:hover::before {
            transform: scaleX(1);
        }

        .info-card:hover {
            background: rgba(20, 20, 35, 0.9);
            border-color: rgba(96, 165, 250, 0.2);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(96, 165, 250, 0.15);
        }

        .contact-methods {
            display: grid;
            gap: 1.5rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .contact-method:hover {
            background: rgba(96, 165, 250, 0.05);
            border-color: rgba(96, 165, 250, 0.2);
            transform: translateX(8px);
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(168, 85, 247, 0.1));
            border: 1px solid rgba(96, 165, 250, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .contact-method:hover .contact-icon {
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(168, 85, 247, 0.2));
            border-color: rgba(96, 165, 250, 0.4);
            transform: scale(1.1);
        }

        .contact-details h4 {
            color: #ffffff;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .contact-details a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: #ffffff;
        }

        .form-container {
            background: rgba(15, 15, 25, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 2.5rem;
            backdrop-filter: blur(40px);
            position: relative;
            overflow: hidden;
        }

        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.6), rgba(96, 165, 250, 0.6), transparent);
            transform: scaleX(0);
            transition: transform 0.6s ease;
        }

        .form-container:hover::before {
            transform: scaleX(1);
        }

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

        .form-group label {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 0.8rem;
            letter-spacing: 0.01em;
        }

        .form-control {
            width: 100%;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            color: #ffffff;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(20px);
        }

        .form-control:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(96, 165, 250, 0.4);
            box-shadow: 0 0 20px rgba(96, 165, 250, 0.1);
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .btn-submit {
            width: 100%;
            background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
            color: #ffffff;
            padding: 1.2rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            letter-spacing: -0.01em;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
            position: relative;
            overflow: hidden;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .btn-submit:hover::before {
            left: 100%;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
            background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
        }

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

        /* Floating particles */
        .floating-glow-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }

        .glow-particle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: radial-gradient(circle, rgba(147, 51, 234, 0.3), transparent 70%);
            border-radius: 50%;
            animation: floatParticle 12s infinite ease-in-out;
        }

        .glow-particle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .glow-particle:nth-child(2) {
            top: 60%;
            left: 80%;
            animation-delay: 3s;
        }

        .glow-particle:nth-child(3) {
            top: 80%;
            left: 30%;
            animation-delay: 6s;
        }

        .glow-particle:nth-child(4) {
            top: 40%;
            left: 70%;
            animation-delay: 9s;
        }

        @keyframes floatParticle {
            0% { transform: translateY(0) scale(1); opacity: 0.2; }
            50% { transform: translateY(-30px) scale(1.3); opacity: 0.5; }
            100% { transform: translateY(0) scale(1); opacity: 0.2; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem 1.5rem;
            }

            .nav-links {
                display: none;
            }

            .contact-section {
                padding: 2rem 1.5rem 6rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .contact-header {
                margin-bottom: 4rem;
            }

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

            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .contact-method {
                padding: 1.2rem;
            }

            .contact-icon {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .contact-title {
                font-size: 2.5rem;
            }

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

        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, rgba(5, 5, 15, 0.95) 0%, rgba(10, 10, 25, 0.98) 100%);
            border-top: 1px solid rgba(96, 165, 250, 0.1);
            position: relative;
            overflow: hidden;
            margin-top: 6rem;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at 20% 50%, rgba(96, 165, 250, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
            z-index: -1;
        }

        .footer-grid-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: -1;
            opacity: 0.3;
        }

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

        .footer-main {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand {
            grid-column: span 1;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #a855f7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(168, 85, 247, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .social-link:hover::before {
            opacity: 1;
        }

        .social-link:hover {
            color: #ffffff;
            border-color: rgba(96, 165, 250, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(96, 165, 250, 0.2);
        }

        .social-link svg {
            width: 20px;
            height: 20px;
            z-index: 1;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 2rem;
            letter-spacing: -0.01em;
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 1px;
            background: linear-gradient(90deg, #60a5fa, #a855f7);
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 1px;
            background: #60a5fa;
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
            padding-left: 8px;
        }

        .footer-links a:hover::before {
            width: 20px;
        }

        .footer-newsletter {
            grid-column: span 1;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .newsletter-input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 1rem;
            color: #ffffff;
            font-size: 0.9rem;
            font-family: inherit;
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .newsletter-input:focus {
            outline: none;
            border-color: rgba(96, 165, 250, 0.5);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 20px rgba(96, 165, 250, 0.1);
        }

        .newsletter-btn {
            background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
            color: #ffffff;
            border: none;
            border-radius: 8px;
            padding: 1rem 1.5rem;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(96, 165, 250, 0.2);
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(96, 165, 250, 0.3);
            background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 2rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            font-weight: 400;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 400;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: #60a5fa;
        }

        .footer-glow {
            position: absolute;
            top: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(96, 165, 250, 0.4) 25%, 
                rgba(168, 85, 247, 0.4) 50%, 
                rgba(236, 72, 153, 0.4) 75%, 
                transparent 100%);
            animation: footerGlow 4s ease-in-out infinite;
        }

        @keyframes footerGlow {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }

        /* Floating particles */
        .footer-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: radial-gradient(circle, rgba(96, 165, 250, 0.6), transparent 70%);
            border-radius: 50%;
            animation: floatUp 8s infinite ease-in-out;
        }

        .particle:nth-child(1) {
            left: 20%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            left: 50%;
            animation-delay: 2s;
        }

        .particle:nth-child(3) {
            left: 80%;
            animation-delay: 4s;
        }

        @keyframes floatUp {
            0% {
                transform: translateY(100px) scale(0);
                opacity: 0;
            }
            50% {
                transform: translateY(-50px) scale(1);
                opacity: 1;
            }
            100% {
                transform: translateY(-200px) scale(0);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }

            .footer-brand {
                grid-column: span 2;
            }

            .footer-newsletter {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 1rem 1.5rem;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(40px);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                border-top: 1px solid rgba(255, 255, 255, 0.05);
            }

            .nav-links.active {
                display: flex;
            }
            .footer-container {
                padding: 4rem 1.5rem 2rem;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-brand,
            .footer-newsletter {
                grid-column: span 1;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .footer-legal {
                justify-content: center;
            }
            .mobile-menu-btn {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .footer-social {
                justify-content: center;
            }

            .footer-legal {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Demo styles to show the footer */
        .demo-content {
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #000000 0%, #0f0f23 100%);
        }

        .demo-text {
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
        }