:root {
    --bg-color: #000000;
    /* Pure Black */
    --text-color: #e0e0e0;
    --accent-red: #ff0000;
    /* Neon Red */
    --accent-dark-red: #8a0000;
    /* Dark Red */
    --glass-bg: rgba(255, 0, 0, 0.05);
    --glass-border: rgba(255, 0, 0, 0.2);
    --card-hover-bg: rgba(255, 0, 0, 0.1);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --text-3d: 2px 2px 0px #8a0000, 0 0 20px rgba(255, 0, 0, 0.5);
}

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

body {
    background-color: transparent;
    /* Allow seeing fixed-bg and canvas interaction */
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- BACKGROUNDS --- */
.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a0000 0%, #000000 100%);
    z-index: -3;
    /* Move behind canvas */
}

#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    /* Deepest background */
    opacity: 0.3;
    /* Increased visibility */
    pointer-events: none;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind content but above matrix */
    pointer-events: all;
    /* Allow interaction if clicked on empty space */
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://assets.codepen.io/13471/noise.png');
    opacity: 0.03;
    z-index: 999;
    pointer-events: none;
}

.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 60%, #000 100%);
    z-index: 998;
    pointer-events: none;
}

/* --- NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background: rgba(2, 2, 5, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.instagram-link {
    display: block;
    margin-top: 0.5rem;
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.instagram-link:hover {
    color: var(--accent-red);
    text-shadow: 0 0 5px var(--accent-red);
}

.testimonials-footer {
    margin-top: 3rem;
    text-align: center;
    padding: 1rem;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
}

.testimonials-footer p {
    color: #aaa;
    font-size: 1rem;
    font-style: italic;
}

/* 3D Floating Icons */
.glass-card-3d {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #ff0000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6), inset 0 0 10px rgba(255, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.glass-card-3d i {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    transition: color 0.3s ease;
}

/* Brand Hover Effects */
.glass-card-3d.instagram:hover {
    border-color: #e1306c;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.6), inset 0 0 10px rgba(225, 48, 108, 0.3);
    background: rgba(225, 48, 108, 0.1);
}

.glass-card-3d.instagram:hover i {
    color: #e1306c;
}

.glass-card-3d.whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6), inset 0 0 10px rgba(37, 211, 102, 0.3);
    background: rgba(37, 211, 102, 0.1);
}

.glass-card-3d.whatsapp:hover i {
    color: #25d366;
}

.glass-card-3d.x-twitter:hover {
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.glass-card-3d.x-twitter:hover i {
    color: #ffffff;
}

.glass-card-3d.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6), inset 0 0 10px rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.1);
}

.glass-card-3d.youtube:hover i {
    color: #ff0000;
}

.glass-card-3d.tiktok:hover {
    border-color: #00f2ea;
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.6), inset 0 0 10px rgba(255, 0, 80, 0.3);
    /* Mix of cyan and pink */
    background: rgba(0, 242, 234, 0.1);
}

.glass-card-3d.tiktok:hover i {
    color: #00f2ea;
}

.glass-card-3d.google:hover {
    border-color: #4285f4;
    box-shadow: 0 0 20px rgba(66, 133, 244, 0.6), inset 0 0 10px rgba(66, 133, 244, 0.3);
    background: rgba(66, 133, 244, 0.1);
}

.glass-card-3d.google:hover i {
    color: #4285f4;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    /* Establish stacking context */
    z-index: 10;
    /* Ensure above fixed background */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

.neon-red {
    color: var(--accent-red);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Language Selector */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #888;
}

.lang-btn {
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--accent-red);
    text-shadow: 0 0 8px var(--accent-red);
}

.lang-separator {
    color: #444;
}

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

.nav-link {
    color: #aaa;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--accent-red);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-family: var(--font-heading);
}

.cta-btn:hover {
    background: var(--accent-red);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

/* --- HERO ICONS (Now handled by 3D Scene) --- */
.hero-icons {
    display: none;
    /* Hidden, moved to 3D */
}

.label-icon {
    font-size: 24px;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 15px var(--accent-red);
    cursor: pointer;
    transition: all 0.3s ease;
}

.label-icon:hover {
    background: var(--accent-red);
    box-shadow: 0 0 30px var(--accent-red);
    transform: scale(1.2);
}

/* --- HERO SECTION --- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Split text and icons */
    position: relative;
    overflow: hidden;
    padding: 0 5%;
    /* Add side padding */
    text-align: left;
    /* Align text to left */
    pointer-events: none;
    /* Allow clicks to pass through to canvas */
    z-index: 10;
    /* Ensure content is above canvas */
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 50%;
    /* Take half width */
    max-width: 800px;
    pointer-events: auto;
    /* Re-enable clicks for text/buttons */
}

.main-title {
    font-size: 2rem;
    letter-spacing: 5px;
    color: var(--accent-red);
    margin-bottom: 1rem;
    opacity: 1;
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 3rem;
    color: #fff;
    font-family: var(--font-heading);
    text-transform: uppercase;
    text-shadow: 2px 2px 0px var(--accent-red);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    /* Align buttons left */
    margin-top: 2rem;
}

.primary-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: var(--transition);
}

.primary-btn:hover {
    background: var(--accent-red);
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

/* --- ZERO GRAVITY SCENE (ICONS) --- */
.zero-gravity-scene {
    position: relative;
    /* Changed from absolute to relative for flex layout */
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    z-index: 5;
    pointer-events: none;
}

.orbit-container {
    position: relative;
    width: 500px;
    height: 500px;
    transform-style: preserve-3d;
    animation: rotate-orbit 20s linear infinite;
    /* Rotate the whole container slowly */
}

@keyframes rotate-orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.floating-icon {
    position: absolute;
    pointer-events: auto;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    /* Remove individual float animation, use container rotation + counter-rotation */
}

/* Distribute icons in a circle (Radius ~200px) */
/* Center is 50% 50%. We offset by translate. */

.icon-insta {
    transform: translate(-50%, -50%) rotate(0deg) translate(200px) rotate(0deg);
}

.icon-tiktok {
    transform: translate(-50%, -50%) rotate(60deg) translate(200px) rotate(-60deg);
}

.icon-youtube {
    transform: translate(-50%, -50%) rotate(120deg) translate(200px) rotate(-120deg);
}

.icon-x {
    transform: translate(-50%, -50%) rotate(180deg) translate(200px) rotate(-180deg);
}

.icon-whatsapp {
    transform: translate(-50%, -50%) rotate(240deg) translate(200px) rotate(-240deg);
}

.icon-google {
    transform: translate(-50%, -50%) rotate(300deg) translate(200px) rotate(-300deg);
}

/* Keep the glass card look but maybe slightly smaller if crowded */
.glass-card {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    /* Darker background */
    backdrop-filter: blur(5px);
    border: 1px solid var(--accent-red);
    border-radius: 50%;
    /* Circular icons */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    transition: var(--transition);
    animation: counter-rotate 20s linear infinite;
    /* Keep icons upright */
}

@keyframes counter-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.glass-card:hover {
    background: var(--accent-red);
    box-shadow: 0 0 30px var(--accent-red);
    transform: scale(1.1);
}

.glass-card i {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    transition: var(--transition);
}

/* Specific Icon Styles - UNIFIED CYAN THEME (Default) -> BRAND COLORS (Hover) */
.icon-insta .glass-card:hover {
    border-color: #E1306C;
    box-shadow: 0 0 30px rgba(225, 48, 108, 0.4);
}

.icon-insta:hover i {
    color: #E1306C;
    text-shadow: 0 0 15px rgba(225, 48, 108, 0.6);
}

.icon-tiktok .glass-card:hover {
    border-color: #ff0050;
    box-shadow: 0 0 30px rgba(255, 0, 80, 0.4);
}

.icon-tiktok:hover i {
    color: #ff0050;
    text-shadow: 2px 2px 0 #00f2ea;
}

.icon-youtube .glass-card:hover {
    border-color: #FF0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.icon-youtube:hover i {
    color: #FF0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.icon-x .glass-card:hover {
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.icon-x:hover i {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.icon-whatsapp .glass-card:hover {
    border-color: #25D366;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

.icon-whatsapp:hover i {
    color: #25D366;
    text-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

.icon-google .glass-card:hover {
    border-color: #4285F4;
    box-shadow: 0 0 30px rgba(66, 133, 244, 0.4);
}

.icon-google:hover i {
    background: -webkit-linear-gradient(45deg, #4285F4, #DB4437, #F4B400, #0F9D58);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SMM Panel Button */
.smm-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--accent-red);
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-left: 1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

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

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

.smm-btn:hover {
    background: rgba(255, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    text-shadow: 0 0 8px var(--accent-red);
}

@keyframes float-anim {

    0%,
    100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }

    50% {
        transform: translateY(-30px) rotateX(5deg) rotateY(5deg);
    }
}

/* --- SECTIONS COMMON --- */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 0px #8a0000;
}

.dot {
    color: var(--accent-red);
}

/* --- SERVICES --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: var(--transition);
    min-height: 450px;
    /* Taller cards */
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: var(--card-hover-bg);
    border-color: var(--accent-red);
    transform: translateY(-10px);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 2rem;
}

.service-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.service-card p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    margin-top: auto;
    /* Push to bottom if needed, or just flow */
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.service-list li::before {
    content: '>';
    color: var(--accent-red);
    font-weight: bold;
}

/* --- WORK --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    height: 400px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.project-image {
    width: 100%;
    height: 100%;
    background: #111;
    /* Placeholder */
    transition: var(--transition);
}

.project-card:hover .project-image {
    transform: scale(1.1);
    opacity: 0.4;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, #000, transparent);
    transform: translateY(100%);
    transition: var(--transition);
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--accent-red);
    font-weight: 600;
}

/* --- STATS SECTION --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.counter {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.stat-card p {
    color: #aaa;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-red);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #ddd;
    margin-bottom: 2rem;
}

.client-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.client-info span {
    color: var(--accent-red);
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 24px;
}

.contact-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.contact-details {
    list-style: none;
    margin-top: 2rem;
}

.contact-details li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ccc;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-red);
    transform: translateX(10px);
}

.contact-details i {
    color: var(--accent-red);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 0.5rem 0;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.form-group label {
    position: absolute;
    top: 0.5rem;
    left: 0;
    color: #666;
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: var(--accent-red);
}

.form-group .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-red);
    transition: var(--transition);
}

.form-group input:focus~.line,
.form-group textarea:focus~.line {
    width: 100%;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-red);
    color: #fff;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    clip-path: polygon(5% 0, 100% 0, 100% 70%, 95% 100%, 0 100%, 0 30%);
}

.submit-btn:hover {
    background: #fff;
    color: var(--accent-red);
}

/* --- FOOTER --- */
footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #888;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-red);
    transform: translateY(-3px);
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--accent-red);
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--accent-red);
    text-shadow: 0 0 20px var(--accent-red);
}

/* --- SMM PANEL SECTION --- */
.smm-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.05), transparent);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.smm-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-red);
    box-shadow: 0 0 20px var(--accent-red);
}

.smm-text {
    flex: 1;
}

.smm-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
}

.smm-features {
    list-style: none;
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.smm-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    font-weight: 500;
}

.smm-features i {
    color: var(--accent-red);
}

.smm-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.server-rack {
    width: 200px;
    height: 300px;
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid var(--accent-red);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 1rem;
}

.server-rack::before {
    content: '';
    width: 90%;
    height: 2px;
    background: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
    animation: blink 0.5s infinite alternate;
}

.server-rack::after {
    content: '';
    width: 90%;
    height: 2px;
    background: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
    animation: blink 0.5s infinite alternate-reverse;
}

@keyframes blink {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

/* Tablet & Small Desktop (max 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        width: 100%;
        padding: 0 2rem;
        margin-bottom: 4rem;
        z-index: 20;
    }

    .zero-gravity-scene {
        position: relative;
        width: 100%;
        height: 400px;
        opacity: 0.8;
        z-index: 1;
    }

    .orbit-container {
        width: 100%;
        height: 100%;
        /* Scale down orbit for smaller screens */
        transform: scale(0.8);
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .cta-btn {
        display: none;
    }

    .hero-actions {
        justify-content: center;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .glass-card {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .orbit-container {
        transform: scale(0.6);
        /* Smaller orbit for mobile */
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    /* Glitch Effect */
    .glitch-effect {
        position: relative;
        color: white;
    }

    .glitch-effect::before,
    .glitch-effect::after {
        content: attr(data-text);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
    }

    .glitch-effect::before {
        left: 2px;
        text-shadow: -1px 0 #ff0000;
        clip: rect(44px, 450px, 56px, 0);
        animation: glitch-anim-1 5s infinite linear alternate-reverse;
    }

    .glitch-effect::after {
        left: -2px;
        text-shadow: -1px 0 #00ffff;
        clip: rect(44px, 450px, 56px, 0);
        animation: glitch-anim-2 5s infinite linear alternate-reverse;
    }

    @keyframes glitch-anim-1 {
        0% {
            clip: rect(30px, 9999px, 10px, 0);
        }

        5% {
            clip: rect(80px, 9999px, 90px, 0);
        }

        10% {
            clip: rect(50px, 9999px, 30px, 0);
        }

        15% {
            clip: rect(10px, 9999px, 60px, 0);
        }

        20% {
            clip: rect(90px, 9999px, 20px, 0);
        }

        25% {
            clip: rect(20px, 9999px, 80px, 0);
        }

        30% {
            clip: rect(60px, 9999px, 40px, 0);
        }

        35% {
            clip: rect(40px, 9999px, 70px, 0);
        }

        40% {
            clip: rect(70px, 9999px, 10px, 0);
        }

        45% {
            clip: rect(10px, 9999px, 50px, 0);
        }

        50% {
            clip: rect(50px, 9999px, 90px, 0);
        }

        55% {
            clip: rect(90px, 9999px, 30px, 0);
        }

        60% {
            clip: rect(30px, 9999px, 60px, 0);
        }

        65% {
            clip: rect(60px, 9999px, 20px, 0);
        }

        70% {
            clip: rect(20px, 9999px, 70px, 0);
        }

        75% {
            clip: rect(70px, 9999px, 40px, 0);
        }

        80% {
            clip: rect(40px, 9999px, 10px, 0);
        }

        85% {
            clip: rect(10px, 9999px, 50px, 0);
        }

        90% {
            clip: rect(50px, 9999px, 80px, 0);
        }

        95% {
            clip: rect(80px, 9999px, 20px, 0);
        }

        100% {
            clip: rect(20px, 9999px, 60px, 0);
        }
    }

    @keyframes glitch-anim-2 {
        0% {
            clip: rect(60px, 9999px, 30px, 0);
        }

        5% {
            clip: rect(20px, 9999px, 80px, 0);
        }

        10% {
            clip: rect(90px, 9999px, 10px, 0);
        }

        15% {
            clip: rect(40px, 9999px, 50px, 0);
        }

        20% {
            clip: rect(10px, 9999px, 90px, 0);
        }

        25% {
            clip: rect(50px, 9999px, 20px, 0);
        }

        30% {
            clip: rect(80px, 9999px, 60px, 0);
        }

        35% {
            clip: rect(30px, 9999px, 40px, 0);
        }

        40% {
            clip: rect(70px, 9999px, 10px, 0);
        }

        45% {
            clip: rect(10px, 9999px, 80px, 0);
        }

        50% {
            clip: rect(50px, 9999px, 30px, 0);
        }

        55% {
            clip: rect(90px, 9999px, 60px, 0);
        }

        60% {
            clip: rect(20px, 9999px, 10px, 0);
        }

        65% {
            clip: rect(60px, 9999px, 50px, 0);
        }

        70% {
            clip: rect(30px, 9999px, 90px, 0);
        }

        75% {
            clip: rect(80px, 9999px, 20px, 0);
        }

        80% {
            clip: rect(40px, 9999px, 70px, 0);
        }

        85% {
            clip: rect(10px, 9999px, 40px, 0);
        }

        90% {
            clip: rect(70px, 9999px, 10px, 0);
        }

        95% {
            clip: rect(20px, 9999px, 50px, 0);
        }

        100% {
            clip: rect(50px, 9999px, 80px, 0);
        }
    }