
/* Block 1 */
.hero-banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-background {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-overlay {
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(74, 20, 140, 0.75) 50%, rgba(0, 0, 0, 0.65) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.hero-content {
  z-index: 3;
  color: white;
  text-align: center;
  padding: 2rem;
  backdrop-filter: blur(1px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-action {
  margin-top: 2rem;
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.hero-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 90vh;
  }
  
  .hero-background {
    height: 90vh;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
  }
}

/* Block 2 */
.neural-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.neural-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.showcase-tag {
    display: inline-block;
    background: linear-gradient(90deg, #00d4ff, #ff00d4);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.showcase-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a8edea 50%, #fed6e3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.showcase-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

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

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

.feature-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

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

.showcase-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff00d4 0%, #00d4ff 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 212, 0.3);
}

.showcase-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 0, 212, 0.4);
    color: white;
}

.showcase-media {
    position: relative;
}

.media-grid {
    position: relative;
    height: 500px;
}

.media-primary {
    position: relative;
    width: 70%;
    height: 60%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.primary-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.media-secondary {
    position: absolute;
    top: 20px;
    right: 0;
    width: 45%;
    height: 35%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.secondary-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-tertiary {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 40%;
    height: 30%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.tertiary-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pulse-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.floating-stats {
    position: absolute;
    bottom: -20px;
    left: 20px;
    display: flex;
    gap: 20px;
}

.stat-item {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    padding: 16px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #00ff88;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .neural-showcase {
        padding: 80px 0;
    }
    
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .showcase-description {
        font-size: 1.1rem;
    }
    
    .media-grid {
        height: 400px;
        margin-top: 40px;
    }
    
    .floating-stats {
        position: static;
        justify-content: center;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    
    .feature-item {
        margin-bottom: 20px;
    }
}

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

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

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

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(45deg, #ffffff, #00ffff, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShimmer 3s ease-in-out infinite alternate;
}

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

.section-subtitle {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

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

.venue-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.venue-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 255, 255, 0.2);
}

.venue-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.venue-tech-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 255, 255, 0.9);
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.venue-tech-overlay i {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.venue-atmosphere-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.bubble-effect {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(0, 255, 255, 0.6);
    border-radius: 50%;
    animation: bubbleFloat 4s ease-in-out infinite;
}

.bubble-effect:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.bubble-effect:nth-child(2) {
    left: 50%;
    animation-delay: 1.5s;
}

.bubble-effect:nth-child(3) {
    left: 80%;
    animation-delay: 3s;
}

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

.altitude-display {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
}

.altitude-number {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #ff00ff;
}

.altitude-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.venue-content {
    padding: 30px;
}

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

.venue-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.venue-specs {
    display: flex;
    gap: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00ffff;
    font-size: 14px;
}

.spec-item i {
    font-size: 16px;
}

.venues-features {
    margin-bottom: 80px;
}

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

.feature-block {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.feature-block:hover {
    background: rgba(255, 255, 255, 0.08);
}

.feature-visual {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
}

.feature-heading {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-text {
    color: #cccccc;
    line-height: 1.6;
}

.venues-cta-section {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cta-description {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.cta-primary {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.4);
    color: #000;
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-secondary:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .future-venues {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .venues-cta-section {
        padding: 40px 20px;
    }
    
    .venue-specs {
        flex-direction: column;
        gap: 10px;
    }
}

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

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

.booking-showcase .quantum-badge {
  display: inline-block;
  background: linear-gradient(45deg, #00d4ff, #5b86e5);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.showcase-heading {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(45deg, #fff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.showcase-features {
  margin-bottom: 40px;
}

.feature-row {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-row:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00d4ff, #5b86e5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

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

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

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

.showcase-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px 15px;
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #00d4ff;
  margin-bottom: 5px;
}

.stat-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.form-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.form-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 0;
}

.quantum-form .form-group {
  margin-bottom: 30px;
}

.form-label {
  display: block;
  color: white;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1rem;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #00d4ff;
  font-size: 18px;
  z-index: 3;
}

.quantum-input {
  width: 100%;
  padding: 18px 20px 18px 55px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.quantum-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.quantum-input:focus {
  outline: none;
  border-color: #00d4ff;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.input-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  background: linear-gradient(45deg, #00d4ff, #5b86e5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(10px);
}

.quantum-input:focus + .input-glow {
  opacity: 0.3;
}

.quantum-submit-btn {
  width: 100%;
  padding: 20px;
  background: linear-gradient(45deg, #00d4ff, #5b86e5);
  border: none;
  border-radius: 15px;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 3s infinite ease-in-out;
}

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

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

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

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

.form-security {
  text-align: center;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #00d4ff;
  font-weight: 600;
  margin-bottom: 15px;
}

.security-badge i {
  font-size: 20px;
}

.security-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.security-item {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.quantum-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #00d4ff;
  border-radius: 50%;
  animation: quantum-float 15s infinite linear;
}

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

.quantum-particle:nth-child(2) {
  left: 80%;
  top: 80%;
  animation-delay: 3s;
  animation-duration: 18s;
}

.quantum-particle:nth-child(3) {
  left: 60%;
  top: 10%;
  animation-delay: 6s;
  animation-duration: 14s;
}

.quantum-particle:nth-child(4) {
  left: 30%;
  top: 70%;
  animation-delay: 9s;
  animation-duration: 16s;
}

.quantum-particle:nth-child(5) {
  left: 90%;
  top: 40%;
  animation-delay: 12s;
  animation-duration: 20s;
}

@keyframes quantum-float {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(-100px, -100px) rotate(360deg);
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .showcase-heading {
    font-size: 2.5rem;
  }
  
  .booking-form-container {
    padding: 30px 25px;
  }
  
  .showcase-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .quantum-booking {
    padding: 60px 0;
  }
  
  .showcase-heading {
    font-size: 2rem;
  }
  
  .booking-form-container {
    padding: 25px 20px;
  }
  
  .form-title {
    font-size: 1.8rem;
  }
  
  .security-features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-row {
    padding: 15px;
  }
  
  .feature-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  
  .feature-icon-wrapper i {
    font-size: 20px;
  }
}
