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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-background-image:hover {
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.7), rgba(102, 126, 234, 0.6));
    backdrop-filter: blur(1px);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 2rem 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    color: white;
    text-decoration: none;
}

.hero-cta-button i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.hero-cta-button:hover i {
    transform: translateX(3px);
}

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

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

/* Block 2 */
.immersive-experiences {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
  overflow: hidden;
}

.experience-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.experience-description {
  font-size: 1.1rem;
  color: #5a6c7d;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.experience-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.8);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-text h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

.experience-gallery {
  display: grid;
  grid-template-rows: 2fr 1fr;
  gap: 1.5rem;
  height: 100%;
}

.gallery-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.main-gallery-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-main:hover .main-gallery-image {
  transform: scale(1.05);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.grid-gallery-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease, filter 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.grid-gallery-image:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

@media (max-width: 991px) {
  .immersive-experiences {
    padding: 4rem 0;
  }
  
  .experience-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .experience-description {
    text-align: center;
  }
  
  .experience-gallery {
    margin-top: 3rem;
  }
  
  .main-gallery-image {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .experience-features {
    gap: 1.5rem;
  }
  
  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .grid-gallery-image {
    height: 140px;
  }
}

@media (max-width: 576px) {
  .experience-title {
    font-size: 1.8rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.25rem;
  }
}

/* Block 3 */
.neural-entertainment-hub {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.neural-entertainment-hub::before {
    content: '';
    background: radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.neural-entertainment-hub .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.neural-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    margin-bottom: 4rem;
}

.primary-card {
    grid-row: span 2;
}

.neural-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

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

.neural-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.primary-card .neural-image-container {
    height: 400px;
}

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

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

.neural-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 255, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.neural-card:hover .neural-overlay {
    opacity: 1;
}

.pulse-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid #00d4ff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

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

.quantum-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(2px 2px at 20px 30px, #00ff88, transparent),
                      radial-gradient(2px 2px at 40px 70px, #ff00ff, transparent),
                      radial-gradient(1px 1px at 90px 40px, #00d4ff, transparent);
    animation: float 4s ease-in-out infinite;
}

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

.data-streams {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, 
        transparent,
        rgba(0, 212, 255, 0.1) 2px,
        transparent 4px
    );
    animation: stream 3s linear infinite;
}

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

.neural-content {
    padding: 2rem;
}

.neural-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.neural-card-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.neural-metrics {
    display: flex;
    gap: 2rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00d4ff;
}

.metric-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ff88;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.status-text {
    color: #00ff88;
    font-weight: 600;
}

.neural-stats-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-block:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: #00d4ff;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 1200px) {
    .neural-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .primary-card {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .neural-title {
        font-size: 2.5rem;
    }
    
    .neural-grid {
        grid-template-columns: 1fr;
    }
    
    .primary-card {
        grid-column: span 1;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .neural-metrics {
        justify-content: center;
    }
}

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

.quantum-booking-system::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(72, 61, 139, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.booking-wrapper {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

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

.quantum-orb {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-core {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #8a2be2, #4169e1);
  border-radius: 50%;
  animation: orbPulse 3s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
}

.orb-ring {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(138, 43, 226, 0.4);
  border-radius: 50%;
  border-top-color: #8a2be2;
  animation: orbRotate 4s linear infinite;
}

.orb-particles {
  position: absolute;
  width: 120px;
  height: 120px;
}

.orb-particles::before,
.orb-particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #8a2be2;
  border-radius: 50%;
  animation: particleOrbit 6s linear infinite;
}

.orb-particles::before {
  top: 10px;
  left: 50%;
}

.orb-particles::after {
  bottom: 10px;
  right: 50%;
  animation-delay: -3s;
}

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

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

@keyframes particleOrbit {
  0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

.booking-title {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

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

.form-container {
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 50px;
}

.input-group {
  position: relative;
}

.input-wrapper {
  position: relative;
}

.quantum-input {
  width: 100%;
  padding: 20px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 1.1rem;
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
}

.quantum-input:focus {
  border-bottom-color: #8a2be2;
}

.quantum-input:focus + .quantum-label,
.quantum-input:valid + .quantum-label {
  transform: translateY(-25px) scale(0.8);
  color: #8a2be2;
}

.quantum-label {
  position: absolute;
  top: 20px;
  left: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.input-underline {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8a2be2, #4169e1);
  transition: all 0.3s ease;
}

.quantum-input:focus ~ .input-underline {
  width: 100%;
  left: 0;
}

.input-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quantum-input:focus ~ .input-particles {
  opacity: 1;
}

.input-particles::before,
.input-particles::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: #8a2be2;
  border-radius: 50%;
  animation: inputParticles 2s ease-in-out infinite;
}

.input-particles::before {
  top: 10px;
  left: 20%;
  animation-delay: 0s;
}

.input-particles::after {
  bottom: 10px;
  right: 30%;
  animation-delay: 1s;
}

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

.quantum-submit-btn {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #8a2be2, #4169e1);
  border: none;
  border-radius: 15px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.quantum-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
}

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

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

.quantum-submit-btn:hover .btn-energy {
  left: 100%;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.quantum-submit-btn:active .btn-ripple {
  width: 300px;
  height: 300px;
}

.booking-visualization {
  padding: 20px;
}

.neural-display {
  position: relative;
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
}

.neural-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.2);
}

.data-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(138, 43, 226, 0.3), rgba(65, 105, 225, 0.3));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.connection-lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.line {
  position: absolute;
  background: linear-gradient(90deg, transparent, #8a2be2, transparent);
  height: 2px;
  animation: lineMove 3s ease-in-out infinite;
}

.line-1 {
  top: 30%;
  width: 60%;
  left: 20%;
  animation-delay: 0s;
}

.line-2 {
  top: 50%;
  width: 40%;
  right: 20%;
  animation-delay: 1s;
}

.line-3 {
  top: 70%;
  width: 70%;
  left: 15%;
  animation-delay: 2s;
}

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

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

.indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8a2be2;
  animation: dotPulse 2s ease-in-out infinite;
}

.indicator-dot.pending {
  background: #ffa500;
  animation: dotBlink 1s ease-in-out infinite;
}

.indicator-text {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

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

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.experience-preview {
  margin-top: 30px;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.preview-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.preview-card:hover .preview-image {
  filter: brightness(1.1);
}

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

.preview-overlay h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.quantum-metrics {
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics-display {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.metric-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8a2be2, #4169e1);
  border-radius: 50%;
  color: #ffffff;
}

.metric-icon i {
  font-size: 1.5rem;
}

.metric-data {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.metric-unit {
  font-size: 0.9rem;
  color: #8a2be2;
  font-weight: 500;
}

.metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

@media (max-width: 992px) {
  .booking-wrapper {
    padding: 40px 30px;
  }
  
  .booking-title {
    font-size: 2.2rem;
  }
  
  .metrics-display {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .quantum-booking-system {
    padding: 60px 0;
  }
  
  .booking-wrapper {
    padding: 30px 20px;
  }
  
  .booking-title {
    font-size: 1.8rem;
  }
  
  .form-container {
    padding: 30px 20px;
  }
  
  .neural-display {
    height: 200px;
  }
  
  .preview-grid {
    gap: 10px;
  }
  
  .metric-box {
    padding: 15px;
    gap: 10px;
  }
  
  .metric-icon {
    width: 40px;
    height: 40px;
  }
  
  .metric-icon i {
    font-size: 1.2rem;
  }
}
