/* ===== ANTI-FLICKER & STABILITY FIX ===== */

/* 1. FORCE ICON SIZE: Keeps layout rigid before icons load */
[data-lucide] {
    display: inline-block;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    vertical-align: text-bottom;
}

/* 2. Specific sizing for hero icons */
.hero-icon [data-lucide] { width: 28px; height: 28px; }
.why-icon [data-lucide] { width: 28px; height: 28px; }
.process-icon [data-lucide] { width: 24px; height: 24px; }


/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1e293b;
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
}

.font-heading {
    font-family: 'Lexend', 'Inter', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: #3b82f6;
}

.btn-book {
  background: #3b82f6;
  color: white !important;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-book:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #0f172a;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 1.5rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 0;
  color: #64748b;
  font-weight: 500;
  border-bottom: 1px solid #f1f5f9;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: #3b82f6;
}

.btn-book-mobile {
  margin-top: 1rem;
  background: #3b82f6;
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 600;
  border: none !important;
}

.btn-book-mobile:hover {
  background: #2563eb;
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  padding: 5rem 0 7rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e40af 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-glow-1 {
  top: -10rem;
  left: -10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(59, 130, 246, 0.2);
}

.hero-glow-2 {
  bottom: -10rem;
  right: -10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(37, 99, 235, 0.2);
}

.hero-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #93c5fd;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: #bfdbfe;
}

.hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.hero-icon [data-lucide] {
  color: white;
}

.offer-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 9999px;
  color: #93c5fd;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  font-family: 'Lexend', sans-serif;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 40rem;
  margin: 0 auto;
}

/* ===== Pricing Card ===== */
.pricing-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-align: center;
  max-width: 24rem;
  width: 100%;
}

.value-label,
.your-price-label {
  font-size: 0.875rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.original-price {
  position: relative;
  display: inline-block;
  margin: 0.5rem 0 1rem;
}

.original-price span {
  font-size: 2.5rem;
  font-weight: 700;
  color: #94a3b8;
  font-family: 'Lexend', sans-serif;
}

.strikethrough {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #ef4444;
  transform: rotate(-6deg);
  border-radius: 2px;
}

.current-price {
  font-size: 3.5rem;
  font-weight: 700;
  color: #3b82f6;
  font-family: 'Lexend', sans-serif;
  margin: 0.5rem 0;
}

.savings-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: block;
  width: 100%;
  background: #3b82f6;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.disclaimer {
  color: #94a3b8;
  font-size: 0.75rem;
  margin-top: 1rem;
}

/* ===== Section Styles ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  font-family: 'Lexend', sans-serif;
  margin-bottom: 1rem;
}

.section-title-light {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  font-family: 'Lexend', sans-serif;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 40rem;
  margin: 0 auto;
}

.section-description-light {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 40rem;
  margin: 0 auto;
}

/* ===== What's Included Section ===== */
.included-section {
  padding: 5rem 0;
  background: #f8fafc;
}

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

.included-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  /* Removed opacity/transform for stability */
}

.included-item:hover {
  border-color: #93c5fd;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.included-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.included-icon [data-lucide] {
  color: white;
}

.included-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-family: 'Lexend', sans-serif;
}

.included-content p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

/* ===== Why Choose Us Section ===== */
.why-section {
  padding: 5rem 0;
  background: white;
}

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

.why-card {
  position: relative;
  padding: 2rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  transition: all 0.3s ease;
  /* Removed opacity/transform for stability */
}

.why-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.why-card-featured {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  color: white;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.why-card-featured:hover {
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

.featured-badge {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  padding: 0.25rem 0.75rem;
  background: #fbbf24;
  color: #78350f;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
}

.why-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.why-card:not(.why-card-featured) .why-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.why-card-featured .why-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.why-icon [data-lucide] {
  color: white;
}

.why-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Lexend', sans-serif;
}

.why-card:not(.why-card-featured) .why-content h3 {
  color: #0f172a;
}

.why-card:not(.why-card-featured) .why-content p {
  color: #64748b;
  line-height: 1.7;
}

.why-card-featured .why-content p {
  color: #bfdbfe;
  line-height: 1.7;
}

/* ===== Process Section ===== */
.process-section {
  padding: 5rem 0;
  background: #0f172a;
}

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

.process-card {
  position: relative;
  padding: 1.5rem;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid #334155;
  border-radius: 1rem;
  transition: all 0.3s ease;
  /* Removed opacity/transform for stability */
}

.process-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-4px);
}

.process-step {
  font-size: 0.875rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 1rem;
  font-family: 'Lexend', sans-serif;
}

.process-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.process-icon [data-lucide] {
  color: white;
}

.process-icon-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.process-icon-emerald {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.process-icon-orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.process-icon-violet {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.process-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  font-family: 'Lexend', sans-serif;
}

.process-card p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
}

.process-line {
  display: none;
  position: absolute;
  top: 50%;
  right: -0.75rem;
  width: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.5) 0%, transparent 100%);
}

@media (min-width: 1024px) {
  .process-line {
    display: block;
  }
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 5rem 0;
  background: white;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-item.active {
  border-color: #93c5fd;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
}

.faq-question:hover {
  color: #3b82f6;
}

.faq-question [data-lucide] {
  color: #64748b;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question [data-lucide] {
  transform: rotate(180deg);
  color: #3b82f6;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: #64748b;
  line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.cta-content {
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #bfdbfe;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  font-family: 'Lexend', sans-serif;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: #bfdbfe;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.btn-cta {
  display: inline-block;
  background: white;
  color: #3b82f6;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
  .logo-text-full {
    display: none;
  }
  
  .logo-text-short {
    display: block;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav-desktop {
    gap: 1rem;
  }
  
  .nav-desktop a {
    font-size: 0.8125rem;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }

  .hero-section {
    padding: 3rem 0 5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }
  
  .pricing-card {
    padding: 2rem;
  }
  
  .current-price {
    font-size: 3rem;
  }

  .included-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .process-line {
    display: none;
  }

  .section-title,
  .section-title-light {
    font-size: 1.75rem;
  }
  
  .section-description,
  .section-description-light {
    font-size: 1rem;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .btn-cta {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  
  .faq-question {
    font-size: 0.9375rem;
    padding: 1rem 1.25rem;
  }
  
  .faq-answer p {
    padding: 0 1.25rem 1rem;
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .container,
  .container-narrow {
    padding: 0 1rem;
  }
  
  .header-container {
    padding: 0.875rem 1rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .original-price span {
    font-size: 2rem;
  }
  
  .current-price {
    font-size: 2.5rem;
  }
  
  .included-item,
  .why-card {
    padding: 1.25rem;
  }
  
  .process-card {
    padding: 1.25rem;
  }
}