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

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

    .hero-background-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(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 50%, rgba(123, 47, 247, 0.3) 100%);
        z-index: 2;
    }

    .hero-content-wrapper {
        position: relative;
        z-index: 3;
        width: 100%;
        padding: 80px 0;
    }

    .hero-text-container {
        text-align: center;
        color: white;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 2rem;
        background: linear-gradient(45deg, #ffffff, #00d4ff, #7b2ff7);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 4s ease-in-out infinite;
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    }

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

    .hero-description {
        font-size: 1.25rem;
        line-height: 1.6;
        margin-bottom: 3rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 400;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .hero-action-container {
        margin-top: 2.5rem;
    }

    .hero-cta-button {
        display: inline-block;
        background: linear-gradient(45deg, #00d4ff, #7b2ff7);
        color: white;
        padding: 18px 40px;
        font-size: 1.1rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.4s ease;
        box-shadow: 0 8px 25px rgba(123, 47, 247, 0.3);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(123, 47, 247, 0.5);
        background: linear-gradient(45deg, #7b2ff7, #00d4ff);
        color: white;
        text-decoration: none;
    }

    @media (max-width: 1200px) {
        .hero-title {
            font-size: 3rem;
        }
        
        .hero-description {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 768px) {
        .hero-banner-section {
            min-height: 80vh;
        }
        
        .hero-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .hero-description {
            font-size: 1rem;
            margin-bottom: 2rem;
        }
        
        .hero-cta-button {
            padding: 16px 35px;
            font-size: 1rem;
        }
        
        .hero-content-wrapper {
            padding: 60px 0;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-cta-button {
            padding: 14px 30px;
            width: 100%;
            max-width: 280px;
        }
    }

/* Block 2 */
.neural-features-showcase {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #00d4ff, #7b2ff7, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 100px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 25px;
  padding: 35px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.6s;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.3);
}

.feature-image-container {
  position: relative;
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
}

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

.feature-card:hover .feature-image {
  transform: scale(1.05);
}

.feature-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #00d4ff, #7b2ff7);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

.feature-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
}

.feature-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-benefits li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.feature-benefits li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #7b2ff7;
  font-weight: bold;
}

.stats-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
  animation: countUp 2s ease forwards;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(45deg, #00d4ff, #7b2ff7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .neural-features-showcase {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .feature-card {
    padding: 25px;
  }
  
  .feature-image {
    height: 180px;
  }
  
  .feature-title {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stats-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }
  
  .stats-showcase {
    grid-template-columns: 1fr;
  }
}

/* Block 3 */
.metaverse-experiences {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.metaverse-experiences::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.experiences-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.experiences-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00d4ff, #7b2ff7, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

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

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.experience-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.experience-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

.experience-visual {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.experience-card:hover .experience-image {
    transform: scale(1.1);
}

.experience-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.experience-badge:nth-child(2n) {
    background: linear-gradient(45deg, #00d4ff, #0984e3);
}

.experience-badge:nth-child(3n) {
    background: linear-gradient(45deg, #7b2ff7, #5f3dc4);
}

.experience-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.experience-details {
    padding: 30px;
}

.experience-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.experience-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.experience-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #ffd700;
}

.rating-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.experiences-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.explore-all-btn {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #7b2ff7);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(123, 47, 247, 0.3);
    margin-bottom: 40px;
}

.explore-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(123, 47, 247, 0.5);
    color: white;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00d4ff, #7b2ff7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .metaverse-experiences {
        padding: 60px 0;
    }
    
    .experiences-title {
        font-size: 2.5rem;
    }
    
    .experiences-subtitle {
        font-size: 1.1rem;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .cta-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .experience-details {
        padding: 20px;
    }
    
    .experiences-header {
        margin-bottom: 50px;
    }
    
    .explore-all-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

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

.quantum-booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(123, 47, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.booking-wrapper {
    position: relative;
    z-index: 2;
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.header-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #00d4ff, #7b2ff7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
        transform: scale(1.05);
    }
}

.booking-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-align: center;
    background: linear-gradient(45deg, #00d4ff, #7b2ff7, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

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

.booking-visual:hover .booking-image {
    transform: scale(1.05);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 47, 247, 0.1) 100%);
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.quantum-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #00d4ff, #ffffff);
    border-radius: 50%;
    animation: quantum-float 4s infinite;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

.quantum-particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.quantum-particle:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.quantum-particle:nth-child(3) {
    bottom: 30%;
    left: 25%;
    animation-delay: 2s;
}

.quantum-particle:nth-child(4) {
    top: 40%;
    right: 35%;
    animation-delay: 3s;
}

@keyframes quantum-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

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

.neural-booking-form {
    width: 100%;
}

.form-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-label i {
    font-size: 0.8rem;
}

.neural-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.neural-input:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.neural-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-effect {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00d4ff, #7b2ff7);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.neural-input:focus + .input-effect {
    width: 100%;
}

.booking-features {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

.feature-highlight i {
    color: #00d4ff;
    font-size: 0.9rem;
}

.neural-submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(45deg, #00d4ff, #7b2ff7);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

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

.neural-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

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

.neural-submit-btn:active {
    transform: translateY(-1px);
}

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

@media (max-width: 768px) {
    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-title {
        font-size: 2rem;
    }
    
    .booking-form-container {
        padding: 30px 20px;
    }
    
    .booking-features {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .booking-image {
        height: 300px;
    }
}
