
/* Block 1 */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 8s ease-in-out;
}

.hero-banner:hover .hero-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.8) 0%, rgba(42, 82, 152, 0.7) 50%, rgba(102, 126, 234, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.btn-primary-hero,
.btn-secondary-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border: 2px solid transparent;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    color: white;
}

.btn-secondary-hero {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

@media (max-width: 768px) {
    .hero-banner {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}

/* Block 2 */
.ai-integration-showcase {
            padding: 120px 0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #e94560 100%);
            position: relative;
            overflow: hidden;
        }

        .ai-integration-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .ai-visual-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(233, 69, 96, 0.3);
        }

        .ai-showcase-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            filter: brightness(1.1) contrast(1.2);
        }

        .tech-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(233, 69, 96, 0.1) 0%, rgba(15, 52, 96, 0.2) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
        }

        .neural-pulse {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 20px;
            height: 20px;
            background: #00ff88;
            border-radius: 50%;
            box-shadow: 0 0 20px #00ff88;
            animation: neuralPulse 2s infinite;
        }

        @keyframes neuralPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.5);
                opacity: 0.7;
            }
        }

        .data-stream {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .stream-item {
            background: rgba(0, 0, 0, 0.8);
            color: #00ff88;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-family: 'Courier New', monospace;
            border: 1px solid rgba(0, 255, 136, 0.3);
            backdrop-filter: blur(10px);
            width: fit-content;
        }

        .ai-content-area {
            padding-left: 40px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #e94560, #ff6b9d);
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
        }

        .ai-title {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff, #e94560);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .ai-description {
            font-size: 1.2rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
        }

        .ai-features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 40px;
        }

        .feature-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(233, 69, 96, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateX(10px);
            border-color: rgba(233, 69, 96, 0.5);
            box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #e94560, #ff6b9d);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            flex-shrink: 0;
        }

        .feature-content h4 {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .feature-content p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .ai-cta-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .btn-neural-demo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #e94560, #ff6b9d);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(233, 69, 96, 0.4);
        }

        .btn-neural-demo:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(233, 69, 96, 0.6);
            color: white;
        }

        .ai-stats {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .stat-item {
            color: white;
            font-size: 0.9rem;
        }

        .stat-item strong {
            color: #00ff88;
            font-size: 1.1rem;
            display: block;
        }

        .stat-divider {
            color: rgba(255, 255, 255, 0.3);
            font-size: 1.2rem;
        }

        @media (max-width: 991px) {
            .ai-content-area {
                padding-left: 0;
                margin-top: 50px;
            }
            
            .ai-title {
                font-size: 2.5rem;
            }
            
            .ai-cta-section {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 768px) {
            .ai-integration-showcase {
                padding: 80px 0;
            }
            
            .ai-title {
                font-size: 2rem;
            }
            
            .ai-showcase-image {
                height: 350px;
            }
            
            .tech-overlay {
                padding: 20px;
            }
        }

/* Block 3 */
.quantum-gaming-lab {
    padding: 120px 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.quantum-gaming-lab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(119, 255, 198, 0.2) 0%, transparent 50%);
    animation: quantumPulse 8s ease-in-out infinite;
}

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

.lab-header {
    margin-bottom: 80px;
}

.quantum-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.quantum-badge i {
    font-size: 16px;
    animation: atomSpin 3s linear infinite;
}

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

.lab-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.1;
}

.lab-subtitle {
    font-size: 1.2rem;
    color: #b8c5d6;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.biolab-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.biolab-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.molecular-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.dna-helix {
    position: relative;
    width: 60px;
    height: 120px;
    align-self: flex-end;
}

.helix-strand {
    position: absolute;
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg, #00ff88, #00aaff);
    border-radius: 2px;
    animation: helixRotate 4s linear infinite;
}

.helix-strand:nth-child(2) {
    animation-delay: -2s;
    transform: translateX(20px);
}

@keyframes helixRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.bio-indicators {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.indicator-label {
    font-size: 12px;
    color: #b8c5d6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.indicator-value {
    font-size: 14px;
    font-weight: 700;
    color: #00ff88;
}

.biotech-content {
    padding-left: 40px;
}

.biotech-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.biotech-description {
    font-size: 1.1rem;
    color: #b8c5d6;
    line-height: 1.7;
    margin-bottom: 40px;
}

.biotech-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bio-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.bio-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.bio-icon i {
    font-size: 20px;
    color: white;
}

.bio-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.bio-content p {
    font-size: 0.95rem;
    color: #b8c5d6;
    margin: 0;
    line-height: 1.5;
}

.quantum-pod-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border-radius: 24px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.quantum-pod-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.quantum-pod-card.featured {
    border: 2px solid #667eea;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pod-image-wrapper {
    position: relative;
}

.pod-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
}

.pod-status {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.available {
    background: #00ff88;
}

.status-dot.premium {
    background: #ffd700;
}

.status-dot.maintenance {
    background: #ff6b6b;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.status-text {
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pod-details {
    padding: 30px;
}

.pod-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.pod-specs {
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #b8c5d6;
}

.spec-item i {
    color: #667eea;
    width: 16px;
}

.pod-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.capability-tag {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: #667eea;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quantum-cta-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border-radius: 30px;
    padding: 60px 40px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    margin-top: 80px;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: #b8c5d6;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-quantum-book, .btn-quantum-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-quantum-book {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
}

.btn-quantum-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    color: white;
}

.btn-quantum-info {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-quantum-info:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.quantum-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-column {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

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

@media (max-width: 992px) {
    .lab-title {
        font-size: 2.5rem;
    }
    
    .biotech-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .quantum-stats {
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-quantum-book, .btn-quantum-info {
        width: 280px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .quantum-gaming-lab {
        padding: 80px 0;
    }
    
    .lab-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .quantum-cta-section {
        padding: 40px 20px;
        margin-top: 60px;
    }
    
    .biolab-image {
        height: 300px;
    }
    
    .molecular-overlay {
        padding: 20px;
    }
}

/* Block 4 */
.contact-booking-form {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.booking-form-wrapper {
    background: rgba(30, 30, 60, 0.9);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.quantum-pulse-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #8a2be2, #00ffff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: quantumPulse 2s infinite;
}

@keyframes quantumPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(138, 43, 226, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 40px rgba(0, 255, 255, 0.8); }
}

.quantum-pulse-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #8a2be2, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #b8b8ff;
    line-height: 1.6;
}

.neural-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.input-quantum-group {
    position: relative;
}

.input-neural-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-neural-icon {
    position: absolute;
    left: 15px;
    z-index: 2;
    color: #8a2be2;
    font-size: 1.1rem;
}

.input-neural {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background: rgba(40, 40, 80, 0.8);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-neural:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    background: rgba(40, 40, 80, 1);
}

.neural-label {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: #9999ff;
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
}

.input-neural:focus + .neural-label,
.input-neural:not(:placeholder-shown) + .neural-label {
    top: -8px;
    left: 45px;
    font-size: 0.8rem;
    color: #00ffff;
    background: rgba(30, 30, 60, 0.9);
    padding: 0 8px;
    border-radius: 4px;
}

.neural-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #00ffff);
    transition: width 0.3s ease;
}

.input-neural:focus ~ .neural-underline {
    width: 100%;
}

.bio-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.85rem;
}

.indicator-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    animation: bioIndicatorPulse 2s infinite;
}

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

.indicator-text {
    color: #99ff99;
}

.quantum-preferences {
    margin-bottom: 40px;
}

.preferences-title {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 600;
}

.experience-selector {
    display: grid;
    gap: 15px;
}

.experience-option {
    position: relative;
}

.experience-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.experience-label {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(40, 40, 80, 0.6);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 15px;
}

.experience-label:hover {
    border-color: #00ffff;
    background: rgba(40, 40, 80, 0.8);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.experience-radio:checked + .experience-label {
    border-color: #8a2be2;
    background: rgba(138, 43, 226, 0.2);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.4);
}

.experience-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(45deg, #8a2be2, #00ffff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.experience-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.experience-content {
    flex: 1;
    position: relative;
}

.experience-content h5 {
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 600;
}

.experience-content p {
    color: #b8b8ff;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.premium-badge {
    position: absolute;
    top: -5px;
    right: 0;
    background: linear-gradient(45deg, #ffd700, #ffaa00);
    color: #000;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 3px;
}

.experience-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ffff;
    flex-shrink: 0;
}

.featured-experience .experience-label {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 170, 0, 0.1));
}

.quantum-submit-section {
    text-align: center;
}

.btn-quantum-submit {
    position: relative;
    background: linear-gradient(45deg, #8a2be2, #00ffff);
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.btn-quantum-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.5);
}

.submit-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.submit-icon {
    font-size: 1.5rem;
}

.submit-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.submit-main {
    font-size: 1.1rem;
    font-weight: 700;
}

.submit-sub {
    font-size: 0.8rem;
    opacity: 0.8;
}

.quantum-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    animation: quantumFloat 3s infinite linear;
}

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

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

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

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

@keyframes quantumFloat {
    0% {
        transform: translateY(100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.security-notice {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.security-icon {
    color: #00ff00;
    font-size: 1.5rem;
}

.security-text strong {
    color: #00ff00;
    display: block;
    margin-bottom: 5px;
}

.security-text p {
    color: #99ff99;
    margin: 0;
    font-size: 0.9rem;
}

.booking-info-panel {
    background: rgba(20, 20, 40, 0.9);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.panel-header {
    text-align: center;
    margin-bottom: 25px;
}

.panel-header h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
}

.facility-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ff00;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 0, 0.8); }
}

.status-text {
    color: #00ff00;
    font-weight: 500;
}

.facility-image-wrapper {
    position: relative;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
}

.facility-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: #ffffff;
}

.operating-hours h5 {
    margin-bottom: 15px;
    color: #00ffff;
}

.hours-grid {
    display: grid;
    gap: 5px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.day {
    font-weight: 500;
}

.time {
    color: #99ff99;
}

.facility-features h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.tech-list {
    display: grid;
    gap: 12px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #b8b8ff;
    font-size: 0.9rem;
}

.tech-item i {
    color: #8a2be2;
    width: 20px;
}

.emergency-contact {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
}

.emergency-contact h5 {
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-methods {
    display: grid;
    gap: 10px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(138, 43, 226, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-method:hover {
    background: rgba(138, 43, 226, 0.4);
    color: #ffffff;
    transform: translateX(5px);
}

.contact-method i {
    color: #00ffff;
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2rem;
    }
    
    .booking-form-wrapper {
        padding: 25px;
    }
    
    .submit-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .submit-text {
        align-items: center;
    }
    
    .experience-label {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .booking-info-panel {
        margin-top: 40px;
        position: relative;
        top: auto;
    }
}
