/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

/* Layout Components */
.ss-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.ss-center {
  text-align: center;
}

/* Hero Section - Enhanced */
.ss-hero {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin-bottom: 3rem;
  padding: 4rem 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ss-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: #718096;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Decision Guide Section */
.decision-guide {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.guide-subtitle {
  font-size: 1.125rem;
  color: #718096;
  margin-bottom: 2.5rem;
}

.decision-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.flow-step {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.flow-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.flow-step p {
  color: #718096;
  font-size: 0.875rem;
}

.flow-arrow {
  font-size: 2rem;
  color: #667eea;
  font-weight: bold;
}

/* Section Headers */
.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-header p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Experience Grid */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.experience-card {
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}

.experience-card.featured {
  transform: scale(1.05);
  border: 3px solid #667eea;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.experience-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.recommended-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.experience-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.room-image {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.price-range {
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.price-highlight {
  font-size: 1.75rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 1rem;
}

.card-subtitle {
  color: #718096;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.benefits {
  text-align: left;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: #f7fafc;
  border-radius: 12px;
}

.benefit {
  padding: 0.25rem 0;
  color: #4a5568;
  font-size: 0.875rem;
}

.benefit:before {
  color: #48bb78;
  font-weight: 600;
  margin-right: 0.5rem;
}

/* Accommodation Section */
.accommodation-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
}

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

.accommodation-card {
  text-align: center;
}

.accommodation-card.recommended {
  border: 2px solid #4ecdc4;
  box-shadow: 0 12px 40px rgba(78, 205, 196, 0.3);
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.room-note {
  font-size: 0.75rem;
  color: #718096;
  margin-top: 1rem;
  font-style: italic;
}

/* Buttons - Enhanced */
.btn {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-outline {
  background: transparent;
  color: #667eea;
  border-color: #667eea;
}

.btn-outline:hover {
  background: #667eea;
  color: white;
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
}

.btn-main {
  font-weight: 600;
  font-size: 1rem;
}

.btn-sub {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 400;
  margin-top: 0.25rem;
}

/* Actions and Button Rows */
.ss-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.btn-row .btn {
  flex: 1;
  min-width: 140px;
}

/* Cards - Enhanced */
.card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f7fafc;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.75rem;
}

.card p {
  color: #4a5568;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card strong {
  color: #2d3748;
  font-weight: 700;
}

/* FAQ Section - Simplified */
.faq-simple {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
}

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

.faq-item {
  background: #f7fafc;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.faq-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #4a5568;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 4rem 2rem;
  margin-bottom: 2rem;
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.final-cta p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ss-wrap {
    padding: 1rem;
  }
  
  .ss-hero {
    padding: 2.5rem 1.5rem;
  }
  
  .ss-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .decision-flow {
    flex-direction: column;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
  
  .experience-grid,
  .accommodation-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .experience-card.featured {
    transform: none;
  }
  
  .experience-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .ss-actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .payment-options .btn {
    min-height: 4rem;
  }
}

@media (max-width: 480px) {
  .ss-hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

/* Focus States for Accessibility */
.btn:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Animation for smooth interactions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card,
.ss-hero,
.decision-guide,
.accommodation-section,
.faq-simple,
.final-cta {
  animation: fadeInUp 0.6s ease-out;
}