/* Creative 3D Morphing Footer */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@300;400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');

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

body {
    font-family: 'Rajdhani', sans-serif;
    background: radial-gradient(circle at center, #0a0a0a, #000000);
    color: #fff;
    overflow-x: hidden;
}

.demo-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: 
        linear-gradient(45deg, rgba(0, 255, 119, 0.1), rgba(0, 255, 255, 0.1)),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.1), transparent);
    position: relative;
    z-index: 1;
}

.demo-section h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #00ff77;
    text-shadow: 
        0 0 20px #00ff77,
        0 0 40px #00ff77,
        0 0 60px #00ff77;
    animation: titlePulse 3s ease-in-out infinite;
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
}

.demo-section p {
    font-size: 1.5rem;
    color: #66ffaa;
    text-shadow: 0 0 15px #66ffaa;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Creative Footer Base */
.creative-footer {
    background: 
        radial-gradient(ellipse at top, rgba(0, 255, 119, 0.1) 0%, transparent 70%),
        linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 5px solid #00ff77;
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    perspective: 1000px;
}

/* Animated Particle Canvas */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

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

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

/* Floating Geometric Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.shape {
    position: absolute;
    border: 2px solid rgba(0, 255, 119, 0.6);
    background: rgba(0, 255, 119, 0.1);
    animation: floatShape 15s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 255, 119, 0.5);
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    border-radius: 50%;
    animation-delay: 3s;
}

.shape-3 {
    width: 70px;
    height: 70px;
    bottom: 30%;
    left: 20%;
    transform: rotate(45deg);
    animation-delay: 6s;
}

.shape-4 {
    width: 90px;
    height: 90px;
    bottom: 20%;
    right: 10%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: 9s;
}

@keyframes floatShape {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.6; 
    }
    33% { 
        transform: translateY(-30px) rotate(120deg); 
        opacity: 1; 
    }
    66% { 
        transform: translateY(30px) rotate(240deg); 
        opacity: 0.8; 
    }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* 3D Morphing Brand Section */
.brand-morph-section {
    text-align: center;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.morph-container {
    perspective: 1000px;
    position: relative;
}

.morph-shape {
    width: 300px;
    height: 300px;
    background: 
        linear-gradient(45deg, rgba(0, 255, 119, 0.2), rgba(0, 255, 255, 0.2)),
        conic-gradient(from 0deg, #00ff77, #66ffaa, #00ffff, #00ff77);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    animation: morphTransform 12s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 50px rgba(0, 255, 119, 0.6),
        inset 0 0 50px rgba(0, 255, 119, 0.2);
}

.morph-shape::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff77, #66ffaa, #00ffff, #ff00ff);
    border-radius: 50%;
    z-index: -1;
    animation: morphGlow 3s ease-in-out infinite;
}

@keyframes morphTransform {
    0%, 100% { 
        border-radius: 50%;
        transform: rotateY(0deg) rotateX(0deg);
    }
    25% { 
        border-radius: 25% 75% 75% 25%;
        transform: rotateY(90deg) rotateX(15deg);
    }
    50% { 
        border-radius: 75% 25% 25% 75%;
        transform: rotateY(180deg) rotateX(30deg);
    }
    75% { 
        border-radius: 25% 75% 25% 75%;
        transform: rotateY(270deg) rotateX(15deg);
    }
}

@keyframes morphGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.brand-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

/* Glitch Text Effect */
.glitch-text {
    font-size: 3rem;
    font-weight: 900;
    color: #00ff77;
    font-family: 'Orbitron', monospace;
    position: relative;
    text-shadow: 
        0 0 10px #00ff77,
        0 0 20px #00ff77,
        0 0 30px #00ff77;
    animation: glitchEffect 4s ease-in-out infinite;
}

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

.glitch-text::before {
    animation: glitchTop 3s linear infinite;
    color: #ff00ff;
    z-index: -1;
}

.glitch-text::after {
    animation: glitchBottom 1.5s linear infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitchEffect {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitchTop {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(2px, -2px); }
    20% { transform: translate(-2px, 2px); }
    30% { transform: translate(2px, 2px); }
    40% { transform: translate(-2px, -2px); }
}

@keyframes glitchBottom {
    0%, 100% { transform: translate(0); }
    25% { transform: translate(-1px, 1px); }
    50% { transform: translate(1px, -1px); }
    75% { transform: translate(-1px, -1px); }
}

/* Tagline Carousel */
.tagline-carousel {
    height: 2rem;
    overflow: hidden;
    position: relative;
    margin-top: 1rem;
}

.tagline {
    position: absolute;
    width: 100%;
    font-size: 1.2rem;
    color: #66ffaa;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.8s ease;
    font-weight: 600;
}

.tagline.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stats Hologram */
.stats-holo {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-orb {
    position: relative;
    width: 120px;
    height: 120px;
}

.orb-content {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 119, 0.2), rgba(0, 255, 119, 0.05));
    border: 3px solid #00ff77;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 255, 119, 0.5);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ff77;
    text-shadow: 0 0 10px #00ff77;
    font-family: 'Orbitron', monospace;
}

.stat-label {
    font-size: 0.9rem;
    color: #66ffaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.orb-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(0, 255, 119, 0.4);
    border-radius: 50%;
    animation: orbRotate 8s linear infinite;
}

@keyframes orbRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 3D Service Cubes */
.service-cube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin: 5rem 0;
    perspective: 1000px;
}

.cube-container {
    perspective: 1000px;
    cursor: pointer;
}

.service-cube {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    margin: 0 auto;
}

.cube-container:hover .service-cube {
    transform: rotateX(-15deg) rotateY(25deg);
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 255, 119, 0.1);
    border: 2px solid rgba(0, 255, 119, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.front { transform: rotateY(0deg) translateZ(100px); }
.back { transform: rotateY(180deg) translateZ(100px); }
.right { transform: rotateY(90deg) translateZ(100px); }
.left { transform: rotateY(-90deg) translateZ(100px); }
.top { transform: rotateX(90deg) translateZ(100px); }
.bottom { transform: rotateX(-90deg) translateZ(100px); }

.cube-face.front {
    background: linear-gradient(135deg, rgba(0, 255, 119, 0.2), rgba(0, 255, 255, 0.1));
    border-color: #00ff77;
}

.cube-face.front i {
    font-size: 3rem;
    color: #00ff77;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px #00ff77;
}

.cube-face.front span {
    font-size: 1.1rem;
    color: #ffffff;
    text-align: center;
    font-family: 'Orbitron', monospace;
}

.cube-info h4 {
    color: #00ff77;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cube-info p {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-list span {
    color: #66ffaa;
    font-size: 0.9rem;
}

.pricing {
    text-align: center;
}

.price {
    font-size: 2rem;
    color: #00ff77;
    font-weight: 900;
}

.period {
    color: #66ffaa;
    font-size: 1rem;
}

/* Holographic Contact Panel */
.holo-contact-panel {
    background: rgba(0, 255, 119, 0.05);
    border: 2px solid rgba(0, 255, 119, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 4rem 0;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 40px rgba(0, 255, 119, 0.2);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.header-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff77, transparent);
    animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.panel-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ff77;
    text-shadow: 0 0 15px #00ff77;
    letter-spacing: 2px;
    white-space: nowrap;
}

.contact-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-node {
    background: rgba(0, 255, 119, 0.1);
    border: 2px solid rgba(0, 255, 119, 0.4);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-node:hover {
    transform: translateY(-10px);
    border-color: #00ff77;
    box-shadow: 0 20px 40px rgba(0, 255, 119, 0.3);
}

.node-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ff77, #66ffaa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 119, 0.6);
}

.contact-node span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.node-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(0, 255, 119, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: nodeWaves 2s ease-in-out infinite;
    opacity: 0;
}

.contact-node:hover .node-waves {
    opacity: 1;
}

@keyframes nodeWaves {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Interactive Newsletter Portal */
.newsletter-portal {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.portal-ring {
    position: relative;
    width: 300px;
    height: 300px;
    border: 3px solid rgba(0, 255, 119, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 255, 119, 0.1), transparent);
    animation: portalPulse 4s ease-in-out infinite;
}

@keyframes portalPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 119, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(0, 255, 119, 0.8);
    }
}

.quantum-newsletter {
    text-align: center;
    width: 250px;
}

.input-field {
    position: relative;
    margin-bottom: 2rem;
}

.input-field input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 255, 119, 0.1);
    border: 2px solid rgba(0, 255, 119, 0.4);
    border-radius: 25px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.input-field input:focus {
    border-color: #00ff77;
    box-shadow: 0 0 20px rgba(0, 255, 119, 0.5);
}

.field-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff77, transparent);
    animation: fieldScan 3s linear infinite;
}

@keyframes fieldScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.portal-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00ff77, #66ffaa);
    border: none;
    border-radius: 25px;
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portal-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 119, 0.6);
}

.btn-particles {
    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.6s ease;
}

.portal-button:hover .btn-particles {
    left: 100%;
}

/* Social Network Constellation */
.social-constellation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem 0;
    position: relative;
    height: 300px;
}

.constellation-center {
    position: absolute;
    z-index: 2;
}

.center-orb {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #00ff77, #66ffaa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 0 40px rgba(0, 255, 119, 0.8);
    animation: centerOrb 6s ease-in-out infinite;
}

@keyframes centerOrb {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.social-satellites {
    position: relative;
    width: 300px;
    height: 300px;
}

.satellite {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 119, 0.2);
    border: 2px solid #00ff77;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff77;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    cursor: pointer;
}

.satellite:nth-child(1) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.satellite:nth-child(2) {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.satellite:nth-child(3) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.satellite:nth-child(4) {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.satellite:nth-child(5) {
    top: 70px;
    right: 70px;
}

.satellite:hover {
    transform: scale(1.2);
    background: rgba(0, 255, 119, 0.4);
    box-shadow: 0 0 25px rgba(0, 255, 119, 0.8);
}

.satellite-orbit {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(0, 255, 119, 0.4);
    border-radius: 50%;
    animation: satelliteOrbit 4s linear infinite;
    opacity: 0;
}

.satellite:hover .satellite-orbit {
    opacity: 1;
}

@keyframes satelliteOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Quantum Payment Vault */
.payment-vault {
    text-align: center;
    margin: 4rem 0;
    background: rgba(0, 255, 119, 0.05);
    border: 2px solid rgba(0, 255, 119, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
}

.vault-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.vault-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ff77, #66ffaa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    animation: vaultLock 3s ease-in-out infinite;
}

@keyframes vaultLock {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.vault-header h4 {
    font-family: 'Orbitron', monospace;
    color: #00ff77;
    font-size: 1.3rem;
    text-shadow: 0 0 10px #00ff77;
}

.payment-crystals {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-crystal {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 119, 0.1);
    border: 2px solid rgba(0, 255, 119, 0.5);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.payment-crystal:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: #00ff77;
    box-shadow: 0 15px 30px rgba(0, 255, 119, 0.5);
}

.crystal-core {
    color: #00ff77;
    font-weight: 700;
    font-size: 0.8rem;
    text-shadow: 0 0 10px #00ff77;
}

.crystal-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff77, #66ffaa);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.payment-crystal:hover .crystal-glow {
    opacity: 0.3;
}

/* Quantum Terminal */
.quantum-terminal {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff77;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 4rem;
    font-family: 'Rajdhani', monospace;
    backdrop-filter: blur(10px);
}
.quantum-terminal {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff77;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 4rem;
    font-family: 'Rajdhani', monospace;
    backdrop-filter: blur(10px);
    position: relative; /* Add this */
    z-index: 20; /* Add this - higher than other elements */
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.prompt {
    color: #66ffaa;
    font-weight: 700;
}

.command {
    color: #ffffff;
    flex: 1;
}

.cursor {
    color: #00ff77;
    animation: cursorBlink 1s infinite;
}




.legal-commands {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cmd-link {
    color: #00ff77;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 255, 119, 0.3);
    border-radius: 8px;
    background: rgba(0, 255, 119, 0.1);
}

.cmd-link:hover {
    background: rgba(0, 255, 119, 0.2);
    border-color: #00ff77;
    text-shadow: 0 0 10px #00ff77;
}

/* 3D Quantum Elevator */
.quantum-elevator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
}

.quantum-elevator.visible {
    opacity: 1;
    visibility: visible;
}

.elevator-chamber {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(0, 255, 119, 0.3), rgba(0, 255, 119, 0.1));
    border: 3px solid #00ff77;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff77;
    font-size: 2rem;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 119, 0.6);
    animation: elevatorHover 3s ease-in-out infinite;
}

@keyframes elevatorHover {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.chamber-energy {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(0, 255, 119, 0.5);
    border-radius: 50%;
    animation: chamberEnergy 2s ease-in-out infinite;
}

@keyframes chamberEnergy {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.elevator-beam {
    position: absolute;
    bottom: -30px;
    left: 50%;
    width: 6px;
    height: 40px;
    background: linear-gradient(to top, transparent, #00ff77);
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quantum-elevator:hover .elevator-beam {
    opacity: 1;
    animation: beamPulse 1s ease-in-out infinite;
}

@keyframes beamPulse {
    0%, 100% { height: 30px; opacity: 0.8; }
    50% { height: 50px; opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-cube-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-holo {
        gap: 2rem;
    }
    
    .contact-matrix {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .demo-section h1 {
        font-size: 2.5rem;
    }
    
    .morph-shape {
        width: 250px;
        height: 250px;
    }
    
    .glitch-text {
        font-size: 2rem;
    }
    
    .service-cube-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-holo {
        gap: 1.5rem;
    }
    
    .contact-matrix {
        grid-template-columns: 1fr;
    }
    
    .social-satellites {
        width: 250px;
        height: 250px;
    }
    
    .payment-crystals {
        gap: 1rem;
    }
    
    .legal-commands {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .creative-footer {
        padding: 3rem 0 2rem;
    }
    
    .demo-section h1 {
        font-size: 2rem;
    }
    
    .morph-shape {
        width: 200px;
        height: 200px;
    }
    
    .glitch-text {
        font-size: 1.5rem;
    }
    
    .panel-title {
        font-size: 1.2rem;
    }
    
    .portal-ring {
        width: 250px;
        height: 250px;
    }
    
    .quantum-elevator {
        bottom: 20px;
        right: 20px;
    }
    
    .elevator-chamber {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Loading Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-morph-section {
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.service-cube-grid {
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.holo-contact-panel {
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}



.hero::before {
    pointer-events: none; /* allow clicks to pass through */
}