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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.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.6) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    color: white;
    background: linear-gradient(135deg, #ff7849 0%, #f8a332 100%);
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .hero-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-button {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* Block 2 */
.future-tech-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.future-tech-section::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, 198, 255, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.tech-content {
    position: relative;
    z-index: 2;
}

.tech-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00f5ff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.tech-description {
    font-size: 1.25rem;
    color: #e0e6ed;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 245, 255, 0.5);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-text h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #b8c5d3;
    margin: 0;
    font-size: 1rem;
}

.tech-visual {
    position: relative;
    z-index: 2;
}

.tech-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.floating-elements {
    position: relative;
    margin-top: -100px;
    display: flex;
    justify-content: space-around;
    z-index: 3;
}

.floating-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    animation-delay: -1s;
}

.floating-card:nth-child(3) {
    animation-delay: -2s;
}

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

.card-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.card-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
}

.innovation-showcase {
    margin-top: 5rem;
}

.showcase-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.innovation-item {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.innovation-item:hover {
    transform: scale(1.05);
}

.innovation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.innovation-item:hover .innovation-image {
    transform: scale(1.1);
}

.innovation-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(50%);
    transition: transform 0.3s ease;
}

.innovation-item:hover .innovation-overlay {
    transform: translateY(0);
}

.innovation-overlay h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #00f5ff;
}

.innovation-overlay p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .tech-title {
        font-size: 2.5rem;
    }
    
    .floating-elements {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        margin-top: -50px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 575px) {
    .tech-title {
        font-size: 2rem;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        padding: 0.75rem 1rem;
    }
}

/* Block 3 */
.quantum-entertainment-hub {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 25%, #16213e 50%, #0f3460 75%, #533a71 100%);
    color: #ffffff;
    overflow: hidden;
}

.section-header {
    margin-bottom: 60px;
}

.quantum-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00d4ff, #ff006e, #8338ec, #3a86ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
    margin-bottom: 20px;
}

.quantum-subtitle {
    font-size: 1.3rem;
    color: #b8c6db;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.neural-interface-showcase {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.neural-content {
    flex: 1;
}

.neural-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
}

.neural-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 30px;
}

.neural-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ff006e;
    display: block;
}

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

.neural-visual {
    flex: 1;
    position: relative;
}

.neural-headset {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    filter: drop-shadow(0 20px 40px rgba(0, 212, 255, 0.3));
}

.brainwave-animation {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 120px;
    height: 80px;
}

.wave-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    margin-bottom: 15px;
    animation: brainwave 2s ease-in-out infinite;
}

.wave-line:nth-child(2) {
    top: 30px;
    animation-delay: 0.3s;
}

.wave-line:nth-child(3) {
    top: 60px;
    animation-delay: 0.6s;
}

.dimension-portal {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.portal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.portal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.8), rgba(255, 0, 110, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    backdrop-filter: blur(5px);
}

.portal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.portal-text {
    font-size: 1.1rem;
    color: #e2e8f0;
}

.portal-energy {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: energyPulse 3s ease-in-out infinite;
}

.consciousness-grid {
    text-align: center;
}

.grid-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8338ec;
    margin-bottom: 50px;
}

.experience-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.module-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.module-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.module-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    margin-bottom: 15px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.module-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #00d4ff;
    text-align: center;
}

.module-body {
    text-align: center;
}

.module-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.module-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes brainwave {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

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

@media (max-width: 768px) {
    .quantum-title {
        font-size: 2.5rem;
    }
    
    .neural-interface-showcase {
        flex-direction: column;
        text-align: center;
    }
    
    .neural-stats {
        justify-content: center;
    }
    
    .experience-modules {
        grid-template-columns: 1fr;
    }
    
    .dimension-portal {
        height: 300px;
        margin-top: 30px;
    }
}

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.form-title {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #64ffda, #7c4dff, #ff4081);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.form-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.booking-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.quantum-booking-form {
    color: white;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.input-group {
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #64ffda;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #64ffda, #7c4dff);
    transition: width 0.3s ease;
}

.form-input:focus + .input-highlight {
    width: 100%;
}

.experience-selector {
    margin-bottom: 50px;
}

.selector-title {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.experience-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.experience-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    border-color: #64ffda;
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.2);
}

.experience-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.experience-info {
    padding: 20px;
    text-align: center;
}

.experience-name {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
}

.experience-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #64ffda;
    margin: 0;
}

.experience-radio {
    display: none;
}

.experience-radio:checked + .experience-label::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #64ffda;
    color: #0f0f23;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

.experience-radio:checked ~ .experience-card {
    border-color: #64ffda;
    background: rgba(100, 255, 218, 0.1);
}

.experience-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

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

.submit-button {
    position: relative;
    background: linear-gradient(135deg, #64ffda, #7c4dff);
    border: none;
    padding: 20px 60px;
    border-radius: 50px;
    color: #0f0f23;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.4);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-button:hover .button-effect {
    left: 100%;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.security-badge {
    height: 40px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.security-badge:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .booking-form-container {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experience-options {
        grid-template-columns: 1fr;
    }
    
    .submit-button {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}
