/* ============================================
   VIRTUAL TOUR PAGE STYLES
   ============================================ */

.section-padding {
  padding: var(--section-padding) 0;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 15, 26, 0.6), rgba(15, 15, 26, 0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid var(--accent);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   TOUR STATS
   ============================================ */
.tour-stats {
  background: var(--primary);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
}

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

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: var(--accent);
  border: 2px solid rgba(201, 162, 39, 0.3);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   TOUR SECTIONS (PARALLAX)
   ============================================ */
.tour-sections {
  position: relative;
}

.tour-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.section-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 0;
}

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

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 15, 26, 0.95) 0%, rgba(15, 15, 26, 0.7) 50%, transparent 100%);
  z-index: 1;
}

.section-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.content-wrapper {
  max-width: 550px;
  padding: 40px;
  background: rgba(30, 30, 58, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
}

.section-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 10px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid var(--accent);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.content-wrapper h2 {
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.content-wrapper > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.section-features {
  list-style: none;
  margin-bottom: 30px;
}

.section-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.section-features li i {
  width: 24px;
  height: 24px;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.7rem;
}

.section-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ============================================
   TOUR FEATURES
   ============================================ */
.tour-features {
  background: var(--bg-dark);
}

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

.feature-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition-medium);
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.8rem;
  color: var(--accent);
  border: 2px solid rgba(201, 162, 39, 0.3);
  transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   TOUR CTA
   ============================================ */
.tour-cta {
  background: var(--primary);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2.5rem;
  color: var(--primary);
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

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

/* ============================================
   PREVIEW MODAL
   ============================================ */
.preview-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 26, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
}

.preview-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: var(--accent);
  color: var(--primary);
}

.modal-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  max-width: 1000px;
  width: 90%;
  background: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
}

.preview-image {
  height: 500px;
}

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

.preview-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.preview-info h3 {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.preview-info p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* ============================================
   NOTIFICATION
   ============================================ */
.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 0.95rem;
  transform: translateX(150%);
  transition: transform var(--transition-medium);
  z-index: 9999;
}

.notification.show {
  transform: translateX(0);
}

.notification i {
  color: var(--accent);
  font-size: 1.2rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .tour-section {
    min-height: 600px;
  }
  
  .section-overlay {
    background: linear-gradient(to right, rgba(15, 15, 26, 0.95) 0%, rgba(15, 15, 26, 0.85) 100%);
  }
  
  .content-wrapper {
    max-width: 100%;
  }
  
  .modal-content {
    grid-template-columns: 1fr;
  }
  
  .preview-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 500px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .tour-section {
    min-height: 500px;
  }
  
  .content-wrapper {
    padding: 25px;
  }
  
  .content-wrapper h2 {
    font-size: 1.8rem;
  }
  
  .section-number {
    font-size: 3rem;
  }
  
  .section-actions {
    flex-direction: column;
  }
  
  .section-actions .btn {
    width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .preview-info {
    padding: 25px;
  }
}
