/* Quantum CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --quantum-primary: #00f3ff;
    --quantum-secondary: #0099ff;
    --quantum-accent: #ff00aa;
    --quantum-matrix: #00ff4c;
    --quantum-dark: #0a0a12;
    --quantum-darker: #050508;
    --quantum-light: #e6f7ff;
    --quantum-glow: rgba(0, 243, 255, 0.6);
    --quantum-pulse: rgba(0, 153, 255, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', 'Exo 2', sans-serif;
    background: var(--quantum-darker);
    color: var(--quantum-light);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    font-size: 16px; /* Base font size for mobile */
}

/* Matrix Background */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--quantum-darker) 0%, var(--quantum-dark) 100%);
    z-index: -3;
    overflow: hidden;
}

.matrix-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 153, 255, 0.05) 0%, transparent 50%);
    animation: matrixPulse 8s ease-in-out infinite;
}

@keyframes matrixPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Holographic Navigation */
.holographic-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    background: rgba(10, 10, 18, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.hologram-logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--quantum-light);
    position: relative;
    z-index: 1001;
}

.hologram-logo i {
    color: var(--quantum-primary);
    margin-right: 0.5rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--quantum-glow);
}

.logo-highlight {
    color: var(--quantum-primary);
    text-shadow: 0 0 5px var(--quantum-glow);
}

.nav-pulse {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: var(--quantum-primary);
    filter: blur(1px);
    opacity: 0;
    animation: navPulse 3s ease-in-out infinite;
}

@keyframes navPulse {
    0%, 100% { opacity: 0; transform: translateY(-50%) scaleX(0); }
    50% { opacity: 0.6; transform: translateY(-50%) scaleX(1); }
}

.nav-hologram {
    display: flex;
}

.hologram-menu {
    display: flex;
    gap: 1.5rem;
}

.holo-link {
    position: relative;
    color: var(--quantum-light);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0.8rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.holo-text {
    position: relative;
    z-index: 2;
}

.holo-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--quantum-primary);
    border-radius: 4px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    filter: blur(8px);
}

.holo-link:hover .holo-glow,
.holo-link.active .holo-glow {
    opacity: 0.3;
    transform: scale(1);
}

.holo-link:hover,
.holo-link.active {
    color: var(--quantum-primary);
    text-shadow: 0 0 5px var(--quantum-glow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--quantum-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-orb {
    position: relative;
    width: 35px;
    height: 35px;
    cursor: pointer;
    z-index: 1001;
}

.orb-core {
    width: 100%;
    height: 100%;
    background: var(--quantum-primary);
    border-radius: 50%;
    animation: orbRotate 4s linear infinite;
    box-shadow: 0 0 10px var(--quantum-glow);
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border: 2px solid var(--quantum-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: orbPulse 2s ease-in-out infinite;
}

@keyframes orbRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

/* Quantum Hero Section */
.quantum-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 0 2rem;
}

.quantum-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.matrix-grid {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 49%, rgba(0, 243, 255, 0.03) 50%, transparent 51%),
        linear-gradient(transparent 49%, rgba(0, 243, 255, 0.03) 50%, transparent 51%);
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    from { transform: translate(0, 0); }
    to { transform: translate(30px, 30px); }
}

.title-hologram {
    position: relative;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.title-glitch {
    display: block;
    position: relative;
    color: var(--quantum-light);
    text-shadow: 
        1px 1px 0px var(--quantum-accent),
        -1px -1px 0px var(--quantum-primary);
    animation: glitchSkew 5s infinite;
}

.title-glitch:nth-child(1) { animation-delay: 0.1s; }
.title-glitch:nth-child(2) { animation-delay: 0.2s; }
.title-glitch:nth-child(3) { animation-delay: 0.3s; }

@keyframes glitchSkew {
    0%, 40%, 44%, 58%, 61%, 65%, 69%, 73%, 100% {
        transform: skew(0deg);
    }
    41% { transform: skew(5deg); }
    42% { transform: skew(-5deg); }
    59% { transform: skew(20deg) skewY(5deg); }
    60% { transform: skew(-20deg) skewY(-5deg); }
    63% { transform: skew(5deg) skewY(2deg); }
    70% { transform: skew(-25deg) skewY(-10deg); }
    71% { transform: skew(5deg) skewY(-5deg); }
}

.hologram-beam {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--quantum-primary), transparent);
    filter: blur(1px);
    animation: beamScan 3s ease-in-out infinite;
}

@keyframes beamScan {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(100%); opacity: 1; }
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(230, 247, 255, 0.8);
    line-height: 1.5;
}

.cyber-text {
    color: var(--quantum-primary);
    text-shadow: 0 0 5px var(--quantum-glow);
    font-weight: 600;
}

.launch-hologram {
    margin-bottom: 2rem;
}

.holo-date {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.holo-date i {
    color: var(--quantum-primary);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.holo-date span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--quantum-light);
}

.date-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.4), transparent);
    animation: dateGlow 3s ease-in-out infinite;
}

@keyframes dateGlow {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.cyber-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cyber-btn {
    position: relative;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 200px;
}

.cyber-btn.primary {
    background: linear-gradient(45deg, var(--quantum-primary), var(--quantum-secondary));
    color: var(--quantum-dark);
}

.cyber-btn.secondary {
    background: transparent;
    color: var(--quantum-light);
    border: 2px solid var(--quantum-primary);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-glow {
    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;
}

.cyber-btn:hover .btn-glow {
    left: 100%;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(255, 255, 255, 0.1) 70%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-btn:hover .btn-particles {
    opacity: 1;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.quantum-diamond {
    position: relative;
    width: 200px;
    height: 200px;
}

.diamond-hologram {
    position: relative;
    width: 100%;
    height: 100%;
}

.hologram-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 49%, rgba(0, 243, 255, 0.1) 50%, transparent 51%),
        linear-gradient(transparent 49%, rgba(0, 243, 255, 0.1) 50%, transparent 51%);
    background-size: 15px 15px;
    animation: gridRotate 10s linear infinite;
}

@keyframes gridRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.diamond-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--quantum-primary);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: corePulse 2s ease-in-out infinite;
}

.core-energy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--quantum-primary) 0%, transparent 70%);
    opacity: 0.5;
    animation: energyPulse 3s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

@keyframes energyPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.3; }
}

.diamond-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--quantum-primary);
    border-radius: 50%;
    opacity: 0.6;
}

.ring-1 {
    width: 120px;
    height: 120px;
    animation: ringRotate 20s linear infinite;
}

.ring-2 {
    width: 150px;
    height: 150px;
    animation: ringRotate 15s linear infinite reverse;
}

.ring-3 {
    width: 180px;
    height: 180px;
    animation: ringRotate 25s linear infinite;
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.diamond-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.diamond-particles::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 6px;
    height: 6px;
    background: var(--quantum-primary);
    border-radius: 50%;
    animation: particleFloat 5s ease-in-out infinite;
    box-shadow: 0 0 5px var(--quantum-glow);
}

.diamond-particles::after {
    content: '';
    position: absolute;
    top: 70%;
    left: 60%;
    width: 4px;
    height: 4px;
    background: var(--quantum-accent);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite 1s;
    box-shadow: 0 0 5px rgba(255, 0, 170, 0.6);
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    25% { transform: translate(10px, -10px); opacity: 1; }
    50% { transform: translate(-5px, 5px); opacity: 0.7; }
    75% { transform: translate(8px, 8px); opacity: 0.5; }
}

.quantum-tool {
    display: none; /* Hide on mobile for space */
}

.hero-scanline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--quantum-primary), transparent);
    animation: scanlineMove 4s linear infinite;
}

@keyframes scanlineMove {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

/* Quantum Countdown Section */
.quantum-countdown {
    position: relative;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--quantum-dark) 0%, var(--quantum-darker) 100%);
    overflow: hidden;
}

.quantum-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
    animation: waveMove 10s linear infinite;
}

.wave-1 { animation-duration: 15s; opacity: 0.3; }
.wave-2 { animation-duration: 10s; opacity: 0.2; animation-delay: 2s; }
.wave-3 { animation-duration: 8s; opacity: 0.1; animation-delay: 4s; }

@keyframes waveMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cyber-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--quantum-light);
    text-shadow: 0 0 5px var(--quantum-glow);
    letter-spacing: 1px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.countdown-hologram {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.holo-display {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.holo-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
    animation: holoScan 3s ease-in-out infinite;
}

@keyframes holoScan {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.countdown-unit {
    text-align: center;
    position: relative;
    min-width: 0px; /* Added to ensure consistent width */
}

.unit-display {
    display: flex;
    justify-content: center;
    gap: 0rem;
    margin-bottom: 0.5rem;
    width: 100%; /* Added to ensure full width */
}

.digit {
    display: inline-block;
    width: 40px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--quantum-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem; /* Slightly reduced to ensure fit */
    font-weight: 700;
    color: var(--quantum-primary);
    text-shadow: 0 0 5px var(--quantum-glow);
    position: relative;
    overflow: hidden;
    flex-shrink: 0; /* Added to prevent shrinking */
}

.digit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.3), transparent);
    animation: digitGlow 2s ease-in-out infinite;
}

@keyframes digitGlow {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.unit-label {
    font-size: 0.8rem;
    color: var(--quantum-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.unit-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 1px solid var(--quantum-primary);
    border-radius: 10px;
    opacity: 0;
    animation: unitPulse 2s ease-in-out infinite;
}

@keyframes unitPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

.quantum-progress {
    max-width: 500px;
    margin: 0 auto;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: var(--quantum-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.progress-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 2px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.progress-track {
    position: relative;
    height: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    overflow: hidden;
}

.progress-energy {
    height: 100%;
    background: linear-gradient(90deg, var(--quantum-primary), var(--quantum-accent));
    border-radius: 6px;
    width: 0%;
    transition: width 1s ease;
    position: relative;
}

.progress-energy::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background: var(--quantum-light);
    border-radius: 50%;
    animation: nodePulse 1.5s ease-in-out infinite;
    animation-delay: var(--delay);
}

.node:nth-child(1) { left: 10%; }
.node:nth-child(2) { left: 30%; }
.node:nth-child(3) { left: 50%; }
.node:nth-child(4) { left: 70%; }
.node:nth-child(5) { left: 90%; }

@keyframes nodePulse {
    0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.5); }
}

/* System Status Section */
.system-status {
    padding: 4rem 1rem;
    position: relative;
    background: var(--quantum-darker);
}

.status-grid {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    background: rgba(0, 243, 255, 0.05);
}

.line.vertical {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
}

.line.horizontal {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
}

.status-hologram {
    display: flex;
    justify-content: center;
}

.holo-terminal {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.terminal-header {
    background: rgba(0, 0, 0, 0.8);
    padding: 0.8rem;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-controls {
    display: flex;
    gap: 0.4rem;
}

.control {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.terminal-title {
    color: var(--quantum-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.terminal-content {
    padding: 1.5rem;
}

.status-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-item:last-child {
    border-bottom: none;
}

.status-indicator {
    margin-right: 1rem;
    position: relative;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-item.online .pulse-dot {
    background: #28ca42;
    box-shadow: 0 0 5px rgba(40, 202, 66, 0.5);
}

.status-item.warning .pulse-dot {
    background: #ffbd2e;
    box-shadow: 0 0 5px rgba(255, 189, 46, 0.5);
}

.status-item.offline .pulse-dot {
    background: #ff5f57;
    box-shadow: 0 0 5px rgba(255, 95, 87, 0.5);
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.status-info {
    flex: 1;
}

.status-info h3 {
    color: var(--quantum-light);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.status-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
}

.status-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.status-progress {
    height: 100%;
    border-radius: 2px;
    transition: width 1s ease;
}

.status-item.online .status-progress {
    background: linear-gradient(90deg, #28ca42, #86e29b);
}

.status-item.warning .status-progress {
    background: linear-gradient(90deg, #ffbd2e, #ffd98c);
}

.status-item.offline .status-progress {
    background: linear-gradient(90deg, #ff5f57, #ff9d97);
}

.status-percent {
    color: var(--quantum-light);
    font-weight: 600;
    margin-left: 0.8rem;
    font-size: 0.9rem;
}

/* Quantum Contact Section */
.quantum-contact {
    padding: 4rem 1rem;
    position: relative;
    background: linear-gradient(135deg, var(--quantum-dark) 0%, var(--quantum-darker) 100%);
    overflow: hidden;
}

.contact-matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.matrix-fall {
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 90%, rgba(0, 243, 255, 0.05) 100%);
    animation: matrixFall 10s linear infinite;
}

@keyframes matrixFall {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

.contact-hologram {
    max-width: 800px;
    margin: 0 auto;
}

.holo-panel {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 15px;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.panel-header {
    background: rgba(0, 243, 255, 0.1);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.panel-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--quantum-light);
    text-shadow: 0 0 5px var(--quantum-glow);
}

.panel-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--quantum-primary), transparent);
    animation: panelScan 3s ease-in-out infinite;
}

@keyframes panelScan {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
}

.info-card {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    height: fit-content;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--quantum-primary), var(--quantum-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--quantum-dark);
}

.info-card h3 {
    color: var(--quantum-light);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.channel {
    display: flex;
    align-items: center;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.channel:hover {
    background: rgba(0, 243, 255, 0.1);
    transform: translateX(3px);
}

.channel i {
    color: var(--quantum-primary);
    margin-right: 0.8rem;
    width: 16px;
    font-size: 0.9rem;
}

.channel span {
    flex: 1;
    color: var(--quantum-light);
    font-size: 0.9rem;
}

.channel-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #28ca42;
    box-shadow: 0 0 3px #28ca42;
}

.social-matrix {
    margin-top: 1.5rem;
}

.social-matrix h4 {
    color: var(--quantum-light);
    margin-bottom: 0.8rem;
    text-align: center;
    font-size: 1rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.social-node {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--quantum-light);
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 auto;
    font-size: 0.9rem;
}

.social-node:hover {
    background: var(--quantum-primary);
    color: var(--quantum-dark);
    transform: scale(1.1);
}

.node-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--quantum-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-node:hover .node-glow {
    opacity: 0.3;
    animation: socialPulse 1s ease-in-out infinite;
}

@keyframes socialPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0; }
}

.contact-form {
    display: flex;
    align-items: center;
}

.form-hologram {
    width: 100%;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.form-header {
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.form-header h3 {
    color: var(--quantum-light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.form-pulse {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--quantum-primary);
    animation: formPulse 2s ease-in-out infinite;
}

@keyframes formPulse {
    0%, 100% { width: 80px; opacity: 0.7; }
    50% { width: 120px; opacity: 1; }
}

.input-field {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-field input,
.input-field textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 6px;
    color: var(--quantum-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-field textarea {
    resize: vertical;
    min-height: 100px;
}

.input-field label {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.input-field input:focus,
.input-field textarea:focus {
    border-color: var(--quantum-primary);
    box-shadow: 0 0 5px rgba(0, 243, 255, 0.3);
    outline: none;
}

.input-field input:focus + label,
.input-field textarea:focus + label,
.input-field input:valid + label,
.input-field textarea:valid + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.7rem;
    color: var(--quantum-primary);
    background: var(--quantum-dark);
    padding: 0 0.3rem;
}

.field-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--quantum-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.input-field input:focus ~ .field-glow,
.input-field textarea:focus ~ .field-glow {
    transform: scaleX(1);
}

.quantum-submit {
    position: relative;
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--quantum-primary), var(--quantum-secondary));
    border: none;
    border-radius: 6px;
    color: var(--quantum-dark);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: inherit;
}

.quantum-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 243, 255, 0.3);
}

.submit-glow {
    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;
}

.quantum-submit:hover .submit-glow {
    left: 100%;
}

.submit-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(255, 255, 255, 0.2) 70%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quantum-submit:hover .submit-particles {
    opacity: 1;
}

/* Team Matrix Section */
.team-matrix {
    padding: 4rem 1rem;
    background: var(--quantum-darker);
    position: relative;
}

.matrix-container {
    max-width: 800px;
    margin: 0 auto;
}

.operator-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.operator-card {
    perspective: 1000px;
}

.operator-hologram {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.operator-card:hover .operator-hologram {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 10px 20px rgba(0, 243, 255, 0.2);
}

.holo-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--quantum-primary), var(--quantum-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--quantum-dark);
    position: relative;
}

.avatar-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--quantum-primary);
    border-radius: 50%;
    animation: avatarPulse 2s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 0; }
}

.operator-info h3 {
    color: var(--quantum-light);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.operator-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.neural-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 20px;
    color: var(--quantum-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.neural-link:hover {
    background: var(--quantum-primary);
    color: var(--quantum-dark);
    transform: translateY(-2px);
}

.operator-status {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #28ca42;
    box-shadow: 0 0 5px #28ca42;
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Quantum Footer */
.quantum-footer {
    position: relative;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, var(--quantum-dark) 0%, var(--quantum-darker) 100%);
    overflow: hidden;
}

.footer-matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.matrix-stream {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 49%, rgba(0, 243, 255, 0.02) 50%, transparent 51%);
    background-size: 80px 80px;
    animation: matrixStream 20s linear infinite;
}

@keyframes matrixStream {
    0% { transform: translateY(0); }
    100% { transform: translateY(80px); }
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-hologram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--quantum-light);
}

.footer-logo i {
    color: var(--quantum-primary);
    margin-right: 0.5rem;
    font-size: 1.8rem;
    text-shadow: 0 0 10px var(--quantum-glow);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.quantum-text {
    color: var(--quantum-primary);
    text-shadow: 0 0 5px var(--quantum-glow);
}

.footer-status {
    color: var(--quantum-primary) !important;
    font-weight: 600;
}

.footer-energy {
    position: relative;
    width: 50px;
    height: 50px;
}

.energy-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: var(--quantum-primary);
    border-radius: 50%;
    animation: energyCore 2s ease-in-out infinite;
}

.energy-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.e-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--quantum-primary);
    border-radius: 50%;
    opacity: 0.6;
}

.e-ring:nth-child(1) {
    width: 30px;
    height: 30px;
    animation: eRingPulse 3s ease-in-out infinite;
}

.e-ring:nth-child(2) {
    width: 45px;
    height: 45px;
    animation: eRingPulse 4s ease-in-out infinite 0.5s;
}

.e-ring:nth-child(3) {
    width: 60px;
    height: 60px;
    animation: eRingPulse 5s ease-in-out infinite 1s;
}

@keyframes energyCore {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

@keyframes eRingPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 3px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

.pulse-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
    z-index: 1;
}

@keyframes pulse-ring {
    0% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.5); }
}

/* Quantum Interface Elements */
.quantum-interface {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 1000;
}

.interface-orb {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.orb-core {
    width: 100%;
    height: 100%;
    background: var(--quantum-primary);
    border-radius: 50%;
    animation: interfaceOrb 3s ease-in-out infinite;
    box-shadow: 0 0 10px var(--quantum-glow);
}

.orb-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.o-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--quantum-primary);
    border-radius: 50%;
    opacity: 0.6;
}

.o-ring:nth-child(1) {
    width: 65px;
    height: 65px;
    animation: oRingPulse 2s ease-in-out infinite;
}

.o-ring:nth-child(2) {
    width: 80px;
    height: 80px;
    animation: oRingPulse 3s ease-in-out infinite 0.3s;
}

.o-ring:nth-child(3) {
    width: 95px;
    height: 95px;
    animation: oRingPulse 4s ease-in-out infinite 0.6s;
}

@keyframes interfaceOrb {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes oRingPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.quantum-console {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 8px;
    padding: 0.8rem;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--quantum-primary);
    max-width: 250px;
    display: none;
}

.console-display {
    display: flex;
    align-items: center;
}

.console-text {
    margin-right: 0.4rem;
}

.console-cursor {
    width: 6px;
    height: 12px;
    background: var(--quantum-primary);
    animation: consoleBlink 1s step-end infinite;
}

@keyframes consoleBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Form Success/Error Messages */
.form-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem;
    border-radius: 5px;
    z-index: 10000;
    animation: slideIn 0.3s ease;
    max-width: 300px;
    font-size: 0.9rem;
}

.form-success {
    background: linear-gradient(45deg, #00ff4c, #00a2ff);
    color: #0a0e17;
}

.form-error {
    background: linear-gradient(45deg, #ff2d75, #ff5e00);
    color: white;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.form-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    body {
        font-size: 17px;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .hologram-logo {
        font-size: 1.5rem;
    }
    
    .hologram-logo i {
        font-size: 1.8rem;
    }
    
    .holo-link {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .quantum-container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cyber-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .quantum-diamond {
        width: 250px;
        height: 250px;
    }
    
    .diamond-core {
        width: 80px;
        height: 80px;
    }
    
    .ring-1 {
        width: 150px;
        height: 150px;
    }
    
    .ring-2 {
        width: 200px;
        height: 200px;
    }
    
    .ring-3 {
        width: 250px;
        height: 250px;
    }
    
    .quantum-tool {
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 150px;
        height: 150px;
    }
    
    .quantum-countdown {
        padding: 6rem 2rem;
    }
    
    .cyber-title {
        font-size: 2.2rem;
    }
    
    .countdown-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .digit {
        width: 50px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .system-status {
        padding: 6rem 2rem;
    }
    
    .quantum-contact {
        padding: 6rem 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        padding: 2rem;
    }
    
    .team-matrix {
        padding: 6rem 2rem;
    }
    
    .operator-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .quantum-footer {
        padding: 4rem 2rem;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    body {
        font-size: 18px;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .hologram-logo {
        font-size: 1.8rem;
    }
    
    .hologram-logo i {
        font-size: 2rem;
    }
    
    .holo-link {
        font-size: 1.1rem;
        padding: 0.5rem 1.2rem;
    }
    
    .quantum-container {
        gap: 4rem;
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .quantum-diamond {
        width: 300px;
        height: 300px;
    }
    
    .diamond-core {
        width: 100px;
        height: 100px;
    }
    
    .ring-1 {
        width: 200px;
        height: 200px;
    }
    
    .ring-2 {
        width: 250px;
        height: 250px;
    }
    
    .ring-3 {
        width: 300px;
        height: 300px;
    }
    
    .quantum-tool {
        width: 200px;
        height: 200px;
    }
    
    .quantum-countdown {
        padding: 8rem 2rem;
    }
    
    .cyber-title {
        font-size: 2.5rem;
    }
    
    .holo-display {
        padding: 3rem;
    }
    
    .digit {
        width: 60px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .system-status {
        padding: 8rem 2rem;
    }
    
    .quantum-contact {
        padding: 8rem 2rem;
    }
    
    .contact-grid {
        padding: 3rem;
    }
    
    .team-matrix {
        padding: 8rem 2rem;
    }
    
    .quantum-footer {
        padding: 6rem 2rem;
    }
}

/* Mobile Menu Styles */
@media (max-width: 767px) {
    .hologram-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 2rem;
    }
    
    .hologram-menu.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-orb {
        display: none;
    }
}

/* Enhanced Contact Functionality Styles */
.channel, .neural-link {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.channel:hover, .neural-link:hover {
    transform: translateX(5px);
    background: rgba(0, 243, 255, 0.1);
}

.channel::after, .neural-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.channel:hover::after, .neural-link:hover::after {
    left: 100%;
}

.cyber-btn.primary {
    cursor: pointer;
}

/* Navigation Orb Fix */
.nav-orb {
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-orb:hover .orb-core {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--quantum-glow);
}