/* ============================================
   CAMP-US V2 STYLES - CRO OPTIMIZED
   ============================================ */

/* ============================================
   GLOBAL STYLES & UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: #2B2823; /* Changed from #1a1a1a to match standard text-primary */
}

.section-intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4B5563; /* Changed from #444 to match standard text-secondary */
}

.section-header-center {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header-center .section-title {
  margin-bottom: 20px;
}

.section-header-center .section-intro {
  color: #4B5563; /* Changed from #666 to match standard text-secondary */
}

.section-intro-center {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4B5563; /* Changed from #666 to match standard text-secondary */
  margin: 0 0 60px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* FIX #23: Increased margin-bottom from 50px to 60px for better breathing room */
.section-intro-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

/* Z-Pattern Components */
.z-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}

.z-top-bar .z-top-left {
  flex: 1;
}

.z-top-bar .z-top-right {
  flex: 0 0 400px;
  text-align: right;
}

/* FIX #19: Changed from right to center for consistency across all sections */
.z-bottom-cta {
  text-align: center;
  margin-top: 80px;
}

/* =============================================================================
   MODERN BUTTON SYSTEM (Bootstrap-Inspired)
   ============================================================================= */

/* Base Button Styles */
.btn {
  /* Layout */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  /* Sizing */
  padding: 16px 32px;
  min-height: 48px; /* WCAG 2.1 touch target */

  /* Typography */
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;

  /* Visual */
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;

  /* Transitions - separated for performance */
  transition: background-color 0.2s ease-in-out,
              border-color 0.2s ease-in-out,
              transform 0.2s ease-in-out,
              box-shadow 0.2s ease-in-out;

  /* Prevent text wrapping issues */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Legacy class aliases - inherit base .btn styles */
.btn-hero-primary,
.btn-stage-2,
.btn-stage-3-primary,
.btn-stage-3-secondary,
.btn-stage-4-booking,
.btn-follow-social,
.btn-accommodation-cta,
.btn-download-itinerary,
.btn-package,
.btn-option-primary,
.btn-option-secondary,
.btn-preview-cta,
.contact-method-btn {
  /* Inherit all base button styles from .btn */
}

/* Primary Button (Heritage Foundation: Dark Slate with Gold Hover) */
.btn-primary,
.btn-hero-primary,
.btn-stage-3-primary,
.btn-stage-4-booking,
.btn-follow-social,
.btn-accommodation-cta,
.btn-option-primary,
.btn-download-itinerary,
.btn-preview-cta {
  background: #32373C;
  color: #FFFFFF;
  border-color: #32373C;
  box-shadow: 0 4px 12px rgba(50, 55, 60, 0.25);
}

.btn-primary:hover,
.btn-hero-primary:hover,
.btn-stage-3-primary:hover,
.btn-stage-4-booking:hover,
.btn-follow-social:hover,
.btn-accommodation-cta:hover,
.btn-option-primary:hover,
.btn-download-itinerary:hover,
.btn-preview-cta:hover {
  background: #B7780D;
  border-color: #B7780D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(183, 120, 13, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(50, 55, 60, 0.3);
}

/* Secondary Button (Dark) */
.btn-secondary,
.btn-stage-2,
.btn-option-secondary {
  background: #2B2823;
  color: #FFFFFF;
  border-color: #2B2823;
  box-shadow: 0 4px 12px rgba(43, 40, 35, 0.2);
}

.btn-secondary:hover,
.btn-stage-2:hover,
.btn-option-secondary:hover {
  background: #1A1815;
  border-color: #1A1815;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 40, 35, 0.3);
}

/* Outline Button (Heritage Foundation: Warm Gold outline) */
.btn-outline {
  background: transparent;
  color: #B7780D;
  border-color: #B7780D;
  box-shadow: none;
}

.btn-outline:hover {
  background: #B7780D;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(183, 120, 13, 0.25);
}

/* Ghost Button (for dark backgrounds) */
.btn-ghost,
.btn-stage-3-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.btn-ghost:hover,
.btn-stage-3-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

/* Contact Method Button (special case) */
.contact-method-btn {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 18px 25px;
  justify-content: flex-start;
}

.contact-method-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateX(5px);
}

.contact-method-btn .icon {
  font-size: 1.5rem;
}

/* Success Button */
.btn-success {
  background: #28a745;
  color: #FFFFFF;
  border-color: #28a745;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.25);
}

.btn-success:hover {
  background: #218838;
  border-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.35);
}

/* Button Sizes */
.btn-sm {
  padding: 10px 20px;
  min-height: 40px;
  font-size: 0.875rem;
}

.btn-lg,
.btn-hero-primary,
.btn-stage-4-booking {
  padding: 18px 36px;
  min-height: 56px;
  font-size: 1.125rem;
  font-weight: 700;
}

.btn-xl,
.btn-stage-4-booking {
  padding: 22px 44px;
  min-height: 64px;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Full Width Button */
.btn-block {
  width: 100%;
  display: flex;
}

/* Disabled State */
.btn:disabled,
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

/* Focus State (Accessibility - Heritage Foundation: Warm Gold) */
.btn:focus-visible,
.btn-hero-primary:focus-visible,
.btn-stage-2:focus-visible,
.btn-stage-3-primary:focus-visible,
.btn-stage-4-booking:focus-visible {
  outline: 3px solid rgba(183, 120, 13, 0.5);
  outline-offset: 2px;
}

/* Loading State */
.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to { transform: rotate(360deg); }
}

/* Reduced Motion Support (Accessibility) */
@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn-hero-primary,
  .btn-stage-2,
  .btn-stage-3-primary,
  .btn-stage-3-secondary,
  .btn-stage-4-booking,
  .btn-follow-social,
  .btn-accommodation-cta,
  .btn-download-itinerary,
  .btn-package,
  .btn-option-primary,
  .btn-option-secondary,
  .btn-preview-cta,
  .contact-method-btn {
    transition: none;
    animation: none;
  }

  .btn:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-outline:hover,
  .btn-ghost:hover,
  .contact-method-btn:hover {
    transform: none;
  }

  .btn.loading::after {
    animation: none;
  }
}

/* Button Group */
.btn-group {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Icon Support */
.btn .icon {
  font-size: 1.2em;
  line-height: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-experience {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.hero-visual-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(183, 120, 13, 0.75) 0%, rgba(43, 40, 35, 0.85) 100%); /* Updated to use standard gold */
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 60px 40px;
  color: #fff;
}

.z-top-left {
  grid-column: 1 / 2;
  grid-row: 1;
}

.hero-headline {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.z-top-right {
  grid-column: 2 / 3;
  grid-row: 1;
  text-align: right;
  align-self: center;
}

.trust-badges-minimal {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.trust-badges-minimal .badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
  max-width: 220px;
  text-align: center;
  white-space: nowrap;
}

.z-middle-center {
  grid-column: 1 / 3;
  grid-row: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-subheadline {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 40px 0;
  font-weight: 400;
}

.hero-urgency {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.z-bottom-right {
  grid-column: 1 / 3;
  grid-row: 3;
  text-align: center;
  margin-top: 20px;
}

.hero-price-note {
  font-size: 1rem;
  margin: 0;
  opacity: 0.85;
}

/* ============================================
   INSTRUCTORS SECTION
   ============================================ */
/* FIX #14: Changed padding from 100px to 80px for consistency */
/* FIX #17: Added border-top for visual separation */
.instructors-section {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid #E5E7EB;
}

.credential-highlight {
  margin: 0;
  font-size: 1.1rem;
  color: #4B5563;
  line-height: 1.5;
  font-weight: 600;
}

.instructor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

/* Instructor Swiper Container */
/* FIX #18: Changed padding from 60px to 40px to prevent tablet width issues */
.instructor-swiper {
  margin-top: 50px;
  padding: 0 40px 60px;
  position: relative;
}

.instructor-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.instructor-swiper .instructor-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.instructor-swiper .swiper-button-next,
.instructor-swiper .swiper-button-prev {
  color: #B7780D;
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.instructor-swiper .swiper-button-next:after,
.instructor-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

/* FIX #26: Removed transform: scale(1.1) for consistency with trust swiper buttons */
.instructor-swiper .swiper-button-next:hover,
.instructor-swiper .swiper-button-prev:hover {
  background: #B7780D;
  color: white;
}

.instructor-swiper .swiper-pagination {
  bottom: 10px;
}

.instructor-swiper .swiper-pagination-bullet {
  background: #B7780D;
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.instructor-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #B7780D;
}

.instructor-card {
  background: #F4F3F0;
  padding: 35px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* FIX #16: Removed translateY transform to prevent layout shift */
.instructor-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* FIX #22: Added loading state styles for images */
/* FIX #27: Removed min-height and aspect constraints to preserve original aspect ratio */
.instructor-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  background: #F4F3F0;
  display: block;
  transition: opacity 0.3s ease;
}

.instructor-photo[loading="lazy"] {
  opacity: 0.7;
}

.instructor-photo.loaded,
.instructor-photo:not([loading="lazy"]) {
  opacity: 1;
}

.instructor-name {
  margin: 0 0 15px 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2B2823;
}

.instructor-credentials {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #4B5563;
  font-size: 0.95rem;
}

.instructor-role {
  margin: 0;
  line-height: 1.6;
  color: #2B2823;
  font-size: 0.95rem;
}

.authenticity-statement {
  text-align: center;
  max-width: 800px;
  margin: 60px auto 0;
  padding: 30px;
  background: #FFF9E6;
  border-left: 4px solid #B7780D;
  border-radius: 8px;
}

.authenticity-statement p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2B2823;
}

/* ============================================
   PRICING PREVIEW - MOBILE ONLY
   ============================================ */
.pricing-preview-mobile {
  display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
  .pricing-preview-mobile {
    display: block;
    padding: 40px 0;
    background: linear-gradient(135deg, #B7780D 0%, #c49517 100%);
  }

  .preview-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }

  .preview-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2B2823;
    margin-bottom: 10px;
  }

  .preview-subtitle {
    font-size: 1rem;
    color: #4B5563;
    margin-bottom: 25px;
  }

  .preview-price-range {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
  }

  .price-from {
    font-size: 0.9rem;
    color: #4B5563;
  }

  .price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #B7780D;
    line-height: 1;
  }

  .price-period {
    font-size: 0.9rem;
    color: #4B5563;
  }

  .preview-includes {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  /* Preview CTA - uses unified button system */
  .btn-preview-cta {
    margin-bottom: 15px;
  }

  .preview-note {
    font-size: 0.85rem;
    color: #4B5563;
    margin: 0;
  }
}

/* ============================================
   TRUST CREDENTIALS BAR
   ============================================ */
/* FIX #12: Changed from gray (#F4F3F0) to white for visual continuity */
/* FIX #14: Changed padding from 60px to 80px for consistency */
.trust-credentials-bar {
  padding: 80px 0;
  background: #ffffff;
  border-top: none;
  border-bottom: 2px solid #F4F3F0;
}

/* FIX #24: Corrected typo minmin → minmax (CRITICAL) */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Trust Swiper Container */
/* FIX #21: Added min-height and padding-bottom for pagination overlap protection */
.trust-swiper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
  overflow: hidden;
  min-height: 200px;
}

.trust-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.trust-swiper .trust-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.trust-swiper .swiper-pagination {
  bottom: 10px;
}

.trust-swiper .swiper-pagination-bullet {
  background: #B7780D;
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.trust-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #B7780D;
}

/* Trust Swiper Navigation Arrows */
.trust-swiper .swiper-button-next,
.trust-swiper .swiper-button-prev {
  width: 44px;  /* WCAG 2.1 minimum touch target size */
  height: 44px;
  color: #B7780D;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.trust-swiper .swiper-button-next:hover,
.trust-swiper .swiper-button-prev:hover {
  background: #B7780D;
  color: #fff;
  /* FIX #6: Removed transform: scale(1.1) to prevent layout shift */
}

.trust-swiper .swiper-button-next::after,
.trust-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Desktop positioning - no conflict with 20px padding */
.trust-swiper .swiper-button-next {
  right: 15px;
}

.trust-swiper .swiper-button-prev {
  left: 15px;
}

/* FIX #5: Use :focus-visible for modern accessibility (keyboard only) */
.trust-swiper .swiper-button-next:focus-visible,
.trust-swiper .swiper-button-prev:focus-visible,
.instructor-swiper .swiper-button-next:focus-visible,
.instructor-swiper .swiper-button-prev:focus-visible {
  outline: 3px solid #B7780D;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(183, 120, 13, 0.3);
}

/* FIX #5: Remove focus outline on mouse click (only show for keyboard) */
.trust-swiper .swiper-button-next:focus:not(:focus-visible),
.trust-swiper .swiper-button-prev:focus:not(:focus-visible),
.instructor-swiper .swiper-button-next:focus:not(:focus-visible),
.instructor-swiper .swiper-button-prev:focus:not(:focus-visible) {
  outline: none;
}

.trust-swiper .swiper-pagination-bullet:focus-visible,
.instructor-swiper .swiper-pagination-bullet:focus-visible {
  outline: 2px solid #B7780D;
  outline-offset: 2px;
}

.trust-swiper .swiper-pagination-bullet:focus:not(:focus-visible),
.instructor-swiper .swiper-pagination-bullet:focus:not(:focus-visible) {
  outline: none;
}

/* FIX #7: Hide navigation arrows on desktop when all items are visible */
@media (min-width: 1024px) {
  .trust-swiper .swiper-button-next,
  .trust-swiper .swiper-button-prev {
    display: none;
  }

  /* Keep instructor arrows visible (shows 3 of 5 instructors) */
  .instructor-swiper .swiper-button-next,
  .instructor-swiper .swiper-button-prev {
    display: flex;
  }
}

/* FIX #11: Fallback styles when Swiper fails to load (CRITICAL) */
.swiper-init-failed .swiper-wrapper {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  transform: none !important;
}

.swiper-init-failed .swiper-slide {
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
}

.swiper-init-failed .swiper-pagination,
.swiper-init-failed .swiper-button-next,
.swiper-init-failed .swiper-button-prev {
  display: none !important;
}

.trust-item {
  text-align: center;
  padding: 25px;
  background: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* FIX #15: Removed translateY transform, using subtle scale instead */
.trust-item:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: #B7780D;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.trust-item h4 {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2B2823;
  line-height: 1.3;
}

.trust-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4B5563;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-section {
  padding: 100px 0;
  background: #ffffff;
}

.experience-category {
  margin-bottom: 80px;
}

.experience-category.bonus {
  margin-bottom: 0;
}

.z-top-bar-experience {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid #B7780D;
}

.z-top-bar-experience .z-top-left {
  flex: 1;
}

.category-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: #2B2823;
}

.z-top-bar-experience .z-top-right {
  flex: 0 0 350px;
  text-align: right;
}

.category-benefit {
  margin: 0;
  font-size: 1rem;
  color: #B7780D;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.experience-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.experience-cards-grid.two-column {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.experience-card {
  background: #F4F3F0;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #B7780D;
  transition: all 0.3s ease;
  position: relative;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-left-color: #2B2823;
}

.experience-card.highlight {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFEFC1 100%);
  border-left-color: #2B2823;
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #2B2823;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.experience-card h4 {
  margin: 0 0 15px 0;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2B2823;
}

.experience-duration {
  margin: 0 0 15px 0;
  font-size: 0.95rem;
  color: #2B2823;
  font-weight: 600;
}

.experience-card > p {
  margin: 0 0 15px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
}

.experience-card > p:last-of-type {
  margin-bottom: 0;
}

.experience-outcome {
  margin: 20px 0 0 0 !important;
  padding-top: 15px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-weight: 600;
  color: #B7780D !important;
  font-size: 0.95rem !important;
}

.experience-card-image {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.experience-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.authenticity-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.auth-badge {
  background: rgba(43,40,35,0.1);
  color: #2B2823;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.z-bottom-cta-experience {
  margin-top: 100px;
  text-align: center;
}

.stage-3-cta-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, #2B2823 0%, #1A1815 100%);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(43,40,35,0.3);
}

.cta-header {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 40px 0;
  line-height: 1.2;
}

.cta-subtext {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 30px 0;
  line-height: 1.6;
}

/* ============================================
   ITINERARY DOWNLOAD BANNER
   ============================================ */
.itinerary-download-banner {
  background: linear-gradient(135deg, #2B2823 0%, #1A1815 100%);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 8px 30px rgba(43,40,35,0.3);
}

.download-banner-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.download-banner-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin: 0 0 30px 0;
  line-height: 1.6;
}

/* Download itinerary button - uses unified system with icon */
.btn-download-itinerary::before {
  content: "📥";
}

/* ============================================
   ITINERARY SECTION
   ============================================ */
.itinerary-section {
  padding: 100px 0;
  background: #F4F3F0;
}

.month-selector-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.month-tab {
  background: #fff;
  border: 2px solid #E5E7EB;
  padding: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 160px;
}

.month-tab:hover {
  border-color: #B7780D;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.month-tab.active {
  border-color: #B7780D;
}

.month-tab.active .month-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(183,120,13,0.7) 0%, rgba(255,199,39,0.7) 100%);
  z-index: 1;
}

.month-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.month-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.month-name {
  font-size: 1.3rem;
  font-weight: 700;
}

.month-celebration {
  font-size: 0.95rem;
  font-weight: 600;
}

.month-dates {
  font-size: 0.85rem;
  opacity: 0.8;
}

.duration-toggle {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
}

.duration-btn {
  background: #fff;
  border: 2px solid #2B2823;
  color: #2B2823;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.duration-btn:hover,
.duration-btn.active {
  background: #2B2823;
  color: #fff;
}

.itinerary-content {
  display: none;
}

.itinerary-content.active {
  display: block;
}

.itinerary-duration {
  display: none;
}

.itinerary-duration.active {
  display: block;
}

.itinerary-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #2B2823;
  text-align: center;
}

.itinerary-dates {
  text-align: center;
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  color: #B7780D;
}

.extension-note {
  text-align: center;
  font-size: 1rem;
  margin: 0 0 40px 0;
  color: #4B5563;
  font-style: italic;
}

.day-by-day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.day-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #2B2823;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.day-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.day-card.highlight {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFEFC1 100%);
  border-left-color: #B7780D;
}

.day-number {
  background: #2B2823;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.day-card.highlight .day-number {
  background: #B7780D;
  color: #000;
}

.day-card h4 {
  margin: 0 0 15px 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2B2823;
}

.day-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
}

.itinerary-note {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 25px;
  background: #fff;
  border-left: 4px solid #B7780D;
  border-radius: 8px;
}

.itinerary-note p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-section {
  padding: 100px 0;
  background: #ffffff;
}

.z-top-bar-packages {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 40px;
}

.value-highlight {
  text-align: right;
  font-size: 1.2rem;
  color: #B7780D;
  font-weight: 700;
  margin: 0;
}

/* Month-Aware Pricing Notice */
.pricing-month-notice {
  background: #FFF9E6;
  border: 2px solid #B7780D;
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
  text-align: center;
}

.pricing-month-notice .notice-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2B2823;
  margin-bottom: 25px;
}

.month-quick-selector {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.month-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border: 2px solid #B7780D;
  border-radius: 8px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  color: #2B2823;
}

.month-btn:hover {
  background: #B7780D;
  color: white;
  transform: translateY(-2px);
}

.month-btn.active {
  background: #B7780D;
  color: white;
  box-shadow: 0 4px 12px rgba(183, 120, 13, 0.3);
}

.month-btn .month-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.month-btn .month-label {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
}

.pricing-disclaimer {
  font-size: 0.95rem;
  color: #4B5563;
  margin: 0;
  line-height: 1.6;
}

.pricing-link {
  color: #B7780D;
  font-weight: 600;
  text-decoration: underline;
}

.pricing-link:hover {
  color: #2B2823;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: #4B5563;
  margin-bottom: 8px;
  font-weight: 600;
}

.value-breakdown-section {
  margin-bottom: 80px;
  background: #F4F3F0;
  padding: 40px;
  border-radius: 12px;
}

.value-breakdown-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 30px 0;
  text-align: center;
  color: #2B2823;
}

.value-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.value-table thead {
  background: #2B2823;
  color: #fff;
}

.value-table th,
.value-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #E5E7EB;
}

.value-table th {
  font-weight: 700;
  font-size: 1rem;
}

.value-table td {
  font-size: 0.95rem;
  line-height: 1.6;
}

.value-table tbody tr:hover {
  background: #F4F3F0;
}

.value-table tfoot {
  background: #FFF9E6;
  font-weight: 700;
}

.value-table tfoot td {
  font-size: 1.1rem;
  color: #2B2823;
  border-bottom: none;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.package-card {
  background: #fff;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 35px;
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-color: #B7780D;
}

.package-card.featured {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFEFC1 100%);
  border-color: #B7780D;
  border-width: 3px;
}

.package-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #2B2823;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.package-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #2B2823;
  line-height: 1.2;
}

.package-accommodation {
  font-size: 0.95rem;
  color: #4B5563;
  margin: 0 0 25px 0;
}

.package-price {
  text-align: center;
  padding: 25px 0;
  margin: 0 0 25px 0;
  border-top: 2px solid rgba(0,0,0,0.1);
  border-bottom: 2px solid rgba(0,0,0,0.1);
}

.price-main {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2B2823;
  line-height: 1;
  margin-bottom: 10px;
}

.price-early-bird {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #B7780D;
  line-height: 1;
  margin-bottom: 5px;
}

.price-note {
  display: block;
  font-size: 0.85rem;
  color: #4B5563;
}

.package-includes {
  margin-bottom: 25px;
}

.package-includes h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #2B2823;
}

.package-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-includes li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4B5563;
  margin-bottom: 8px;
}

/* Package button - uses unified button system */
.btn-package {
  width: 100%;
  margin-bottom: 15px;
}

.btn-package.btn-featured {
  background: #B7780D;
  border-color: #B7780D;
}

.btn-package.btn-featured:hover {
  background: #c49517;
  border-color: #c49517;
}

.btn-package:hover {
  background: #1A1815;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43,40,35,0.3);
}

.btn-package.btn-featured {
  background: #B7780D;
  color: #000;
}

.btn-package.btn-featured:hover {
  background: #c49517;
}

.package-upgrade,
.package-savings {
  text-align: center;
  font-size: 0.9rem;
  color: #4B5563;
  margin: 0;
  font-style: italic;
}

.package-savings {
  color: #B7780D;
  font-weight: 600;
}

.universal-inclusions {
  background: #F4F3F0;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.universal-inclusions h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 30px 0;
  text-align: center;
  color: #2B2823;
}

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

.inclusion-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.inclusion-item .icon {
  background: #B7780D;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.inclusion-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4B5563;
}

.exclusions-note {
  background: #fff;
  border-left: 4px solid #B7780D;
  padding: 20px 30px;
  border-radius: 8px;
  margin-bottom: 60px;
}

.exclusions-note h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #2B2823;
}

.exclusions-note p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
}

.z-bottom-cta-packages {
  text-align: center;
  margin-top: 80px;
}

.cta-guarantees {
  font-size: 1rem;
  color: #4B5563;
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   CAPACITY TRANSPARENCY SECTION
   ============================================ */
.capacity-transparency-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #F4F3F0 0%, #ffffff 100%);
}

.capacity-number {
  text-align: right;
  font-size: 1.2rem;
  color: #B7780D;
  font-weight: 700;
  margin: 0;
}

.capacity-explanation {
  margin-bottom: 80px;
}

.intro-text {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #2B2823;
  margin: 0 0 50px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.reason-card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.reason-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.reason-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #2B2823;
  line-height: 1.3;
}

.reason-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
}

.current-availability-section {
  background: #fff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.availability-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 50px 0;
  color: #2B2823;
}

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

.availability-card {
  background: #F4F3F0;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #B7780D;
  transition: all 0.3s ease;
}

.availability-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.month-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #2B2823;
  text-align: center;
}

.spots-visual-bar {
  width: 100%;
  height: 12px;
  background: #E5E7EB;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;
}

.spots-filled {
  height: 100%;
  background: linear-gradient(90deg, #B7780D 0%, #c49517 100%);
  transition: width 0.5s ease;
}

.spots-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2B2823;
  text-align: center;
  margin: 0 0 20px 0;
}

.deadline-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
  text-align: center;
  margin: 0;
}

.deadline-reason {
  font-size: 0.85rem;
  color: #6B7280;
  font-style: italic;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 100px 0;
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: #F4F3F0;
  padding: 0;
  border-radius: 12px;
  border-left: 4px solid #B7780D;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 30px;
  color: #2B2823;
  line-height: 1.4;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(183, 120, 13, 0.05);
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: #B7780D;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

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

.faq-answer.open {
  max-height: 1000px;
  padding: 0 30px 30px 30px;
}

.faq-answer p {
  margin: 0 0 15px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 15px 0;
  padding-left: 25px;
}

.faq-answer li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4B5563;
}

/* ============================================
   CONTACT & FINAL CTA SECTION
   ============================================ */
.contact-final-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2B2823 0%, #1A1815 100%);
  color: #fff;
}

.contact-final-cta-section .section-title,
.contact-final-cta-section .section-intro {
  color: #fff;
}

.peter-contact-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 80px;
  border: 1px solid rgba(255,255,255,0.2);
}

.peter-photo-wrapper {
  text-align: center;
}

.peter-photo {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.peter-name {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #fff;
}

.peter-title {
  font-size: 1.2rem;
  color: #B7780D;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.peter-response-time {
  font-size: 1rem;
  margin: 0 0 30px 0;
  color: rgba(255,255,255,0.8);
}

.contact-methods-grid {
  display: grid;
  gap: 15px;
  margin-bottom: 40px;
}

/* Contact method button - uses unified system (defined above) */
.contact-method-btn .text {
  font-size: 1rem;
  font-weight: 600;
}

.consultation-benefits {
  background: rgba(0,0,0,0.2);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #B7780D;
}

.benefits-intro {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #fff;
}

.benefits-list {
  margin: 0 0 20px 0;
  padding-left: 25px;
}

.benefits-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.no-pressure-note {
  margin: 0;
  font-size: 0.95rem;
  color: #B7780D;
  font-style: italic;
}

.final-cta-options {
  margin-bottom: 80px;
}

.cta-options-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 50px 0;
  color: #fff;
}

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

.cta-option {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.cta-option:hover {
  transform: translateY(-5px);
  border-color: #B7780D;
  box-shadow: 0 10px 30px rgba(183,120,13,0.3);
}

.cta-option.primary {
  background: rgba(183,120,13,0.2);
  border-color: #B7780D;
}

.cta-option h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #fff;
}

.btn-option-primary,
.btn-option-secondary,
.btn-option-tertiary {
  display: block;
  width: 100%;
  padding: 18px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.btn-option-primary {
  background: #B7780D;
  color: #000;
}

.btn-option-primary:hover {
  background: #c49517;
  transform: scale(1.05);
}

.btn-option-secondary {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-option-secondary:hover {
  background: rgba(255,255,255,0.3);
}

.btn-option-tertiary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-option-tertiary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.option-details {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
  line-height: 1.6;
}

.payment-security-display {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}

.security-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #fff;
}

.security-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 40px 0;
}

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

.payment-method-group h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #B7780D;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.payment-badge {
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ============================================
   SOCIAL PREVIEW SECTION
   ============================================ */
.social-preview-section {
  padding: 100px 0;
  background: #F4F3F0;
}

.social-link {
  color: #B7780D;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #c49517;
}

.social-feed-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.social-post-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.social-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.social-post-placeholder {
  text-align: center;
  padding: 40px 20px;
  background: #F4F3F0;
  border-radius: 12px;
  border: 2px dashed #B7780D;
}

.placeholder-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2B2823;
  margin: 0 0 15px 0;
  line-height: 1.6;
}

.placeholder-note {
  font-size: 0.85rem;
  color: #6B7280;
  margin: 0;
  font-style: italic;
}

.social-follow-cta {
  text-align: center;
}

.social-note {
  font-size: 0.9rem;
  color: #4B5563;
  margin: 0;
  font-style: italic;
}

/* ============================================
   STICKY CTA CONTAINER (Research-Backed)
   ============================================ */

/* Sticky Button Container - Hidden by default, shows on scroll */
.sticky-cta-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #FFFFFF;
  box-shadow: 0 -4px 12px rgba(43, 40, 35, 0.15);
}

.sticky-cta-container.visible {
  transform: translateY(0);
}

/* Drawer-style mobile implementation (research: 5.2% order increase, 11.8% engagement increase) */
@media (max-width: 767.98px) {
  .sticky-cta-container {
    padding: 16px 20px 20px;
    border-radius: 20px 20px 0 0;
  }

  /* Drawer handle indicator */
  .sticky-cta-container::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background-color: #2B2823;
    opacity: 0.3;
    border-radius: 2px;
  }
}

@media (min-width: 768px) {
  .sticky-cta-container {
    padding: 20px 0;
  }
}

/* Sticky CTA Close Button */
.sticky-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #4B5563;
  transition: all 0.2s ease;
  z-index: 1051;
  padding: 0;
  touch-action: manipulation;
}

.sticky-close-btn:hover,
.sticky-close-btn:focus {
  background-color: rgba(0, 0, 0, 0.1);
  color: #2B2823;
}

.sticky-close-btn:focus-visible {
  outline: 2px solid #B7780D;
  outline-offset: 2px;
}

.sticky-close-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 767.98px) {
  .sticky-close-btn {
    top: 16px;
    right: 16px;
  }
}

/* Primary CTA Button - Single button (research: 371% more clicks than multiple CTAs) */
.cta-primary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  background-color: #2B2823;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 18px 32px;
  width: 100%;
  min-height: 60px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(50, 55, 60, 0.2);
}

/* Hover state with warm gold (research-backed for cultural/educational contexts) */
.cta-primary:hover,
.cta-primary:focus {
  background-color: #B7780D;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(183, 120, 13, 0.3);
  text-decoration: none;
}

/* Accessibility: Focus states for keyboard navigation */
.cta-primary:focus-visible {
  outline: 2px solid #B7780D;
  outline-offset: 3px;
}

/* Icon styling */
.cta-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Transparency microcopy (research: reduces transaction anxiety, increases conversions) */
.cta-transparency {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: #2B2823;
  opacity: 0.75;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}

/* Urgency indicator */
.cta-urgency {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #B7780D;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Desktop centering and max-width */
@media (min-width: 768px) {
  .cta-content-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

  .cta-primary {
    font-size: 19px;
    padding: 20px 40px;
  }
}

/* Animation for entrance */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sticky-cta-container.visible {
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESPONSIVE - TABLET (769px - 1024px)
   ============================================ */
/* FIX #18: Reduce instructor swiper padding on tablets */
@media (max-width: 1024px) and (min-width: 769px) {
  .instructor-swiper {
    padding: 0 20px 60px;
  }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }

  .z-top-left,
  .z-top-right,
  .z-middle-center,
  .z-bottom-right {
    grid-column: 1;
    text-align: center;
  }

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

  .trust-badges-minimal {
    align-items: center;
  }

  .trust-badges-minimal .badge {
    max-width: 100%;
    white-space: normal;
    min-width: 180px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero-subheadline {
    font-size: 1.1rem;
  }

  /* Sections */
  /* FIX #14: Standardized all section padding to 60px on mobile */
  .instructors-section,
  .experience-section,
  .itinerary-section,
  .packages-section,
  .capacity-transparency-section,
  .faq-section,
  .contact-final-cta-section,
  .social-preview-section,
  .trust-credentials-bar {
    padding: 60px 0;
  }

  /* Z-Pattern Top Bars */
  .z-top-bar,
  .z-top-bar-experience,
  .z-top-bar-packages {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    margin-bottom: 40px;
  }

  .z-top-bar .z-top-right,
  .z-top-bar-experience .z-top-right,
  .z-top-bar-packages .z-top-right {
    flex: 1;
    text-align: center;
    max-width: 100%;
  }

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

  .category-title {
    font-size: 1.6rem;
  }

  /* Grids */
  .instructor-grid,
  .trust-grid,
  .experience-cards-grid,
  .experience-cards-grid.two-column,
  .day-by-day-grid,
  .package-grid,
  .inclusion-grid,
  .reasons-grid,
  .availability-grid,
  .faq-grid,
  .cta-options-grid,
  .payment-methods-display,
  .social-feed-preview {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Swiper Mobile Optimizations */
  .trust-swiper {
    padding: 0 10px 50px;
  }

  .trust-swiper .swiper-button-next,
  .trust-swiper .swiper-button-prev {
    width: 44px;  /* Fix: WCAG 2.1 minimum touch target size */
    height: 44px; /* Fix: WCAG 2.1 minimum touch target size */
  }

  .trust-swiper .swiper-button-next:after,
  .trust-swiper .swiper-button-prev:after {
    font-size: 18px; /* Increased for better visibility with larger buttons */
  }

  .trust-swiper .swiper-button-next {
    right: 10px; /* Fix: Increased from 5px for better touch spacing */
  }

  .trust-swiper .swiper-button-prev {
    left: 10px; /* Fix: Increased from 5px for better touch spacing */
  }

  .instructor-swiper {
    padding: 0 10px 60px;
  }

  .instructor-swiper .swiper-button-next,
  .instructor-swiper .swiper-button-prev {
    width: 44px;  /* Fix: WCAG 2.1 minimum touch target size */
    height: 44px; /* Fix: WCAG 2.1 minimum touch target size */
  }

  .instructor-swiper .swiper-button-next:after,
  .instructor-swiper .swiper-button-prev:after {
    font-size: 18px; /* Increased for better visibility with larger buttons */
  }

  .instructor-swiper .swiper-button-next {
    right: 10px; /* Fix: Increased from 5px for easier thumb access */
  }

  .instructor-swiper .swiper-button-prev {
    left: 10px; /* Fix: Increased from 5px for easier thumb access */
  }

  /* Section Header */
  .section-header-center {
    margin-bottom: 50px;
  }

  /* Experience Category */
  .experience-category {
    margin-bottom: 60px;
  }

  /* Bottom CTAs */
  .z-bottom-cta,
  .z-bottom-cta-experience,
  .z-bottom-cta-packages {
    text-align: center;
    margin-top: 60px;
  }

  .stage-3-cta-wrapper {
    padding: 40px 20px;
  }

  .cta-header {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .btn-stage-3-primary {
    padding: 18px 40px;
    font-size: 1.1rem;
  }

  .btn-stage-4-booking {
    padding: 20px 40px;
    font-size: 1.1rem;
  }

  /* Value Breakdown */
  .value-breakdown-section {
    padding: 25px 20px;
  }

  .value-table {
    font-size: 0.85rem;
  }

  .value-table th,
  .value-table td {
    padding: 12px 15px;
  }

  /* Month Selector */
  .month-selector-tabs {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Duration Toggle */
  .duration-toggle {
    flex-direction: column;
    align-items: stretch;
  }

  /* Current Availability */
  .current-availability-section {
    padding: 40px 20px;
  }

  /* Peter Contact Card */
  .peter-contact-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }

  .peter-photo {
    max-width: 200px;
  }

  /* Payment Security */
  .payment-security-display {
    padding: 30px 20px;
  }
}

/* ============================================
   HERO INFO BOX STYLES
   ============================================ */
.hero-info-box {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 20px 30px;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-info-box p {
  color: #2B2823;
  margin-bottom: 10px;
  line-height: 1.6;
}

.hero-info-box p:first-child {
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-info-box p:nth-child(2) {
  font-size: 1rem;
}

.hero-info-box p:last-child {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================
   SECURITY BADGES STYLES
   ============================================ */
.security-badges {
  text-align: center;
  margin-top: 30px;
}

#norton-seal {
  display: inline-block;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
  .hero-info-box {
    padding: 15px 20px;
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-info-box p:first-child {
    font-size: 1rem;
  }

  .hero-info-box p:nth-child(2) {
    font-size: 0.9rem;
  }

  .hero-info-box p:last-child {
    font-size: 0.85rem;
  }

  .security-badges {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero-info-box {
    padding: 12px 15px;
    max-width: 95%;
  }

  .hero-info-box p:first-child {
    font-size: 0.95rem;
  }

  .hero-info-box p:nth-child(2) {
    font-size: 0.85rem;
  }

  .hero-info-box p:last-child {
    font-size: 0.8rem;
  }
}

/* ============================================
   CRO OPTIMIZATION UPDATES - November 2025
   ============================================ */

/* Hero headline responsive sizing */
.hero-headline {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 1.8rem;
  }
}

/* Trust bar - 4 items layout (already handled by auto-fit grid) */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* Payment option note in packages */
.payment-option-note {
  background: #F4F3F0;
  border-left: 3px solid #B7780D;
  padding: 12px 15px;
  margin: 15px 0;
  font-size: 0.95rem;
}

.payment-option-note strong {
  color: #2B2823;
}

.payment-option-note p {
  margin: 0;
}

/* Experience category updates */
.category-benefit {
  font-size: 1.1rem;
  color: #4B5563;
  font-weight: 400;
}

/* Three-column layout for bonus section */
.experience-category.bonus .experience-cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ============================================
   MOBILE OPTIMIZATION - THUMBNAIL STYLES
   Research-backed mobile image optimization
   ============================================ */

/* Mobile: Reduce visual dominance through sizing, not removal */
@media (max-width: 640px) {
  .experience-card-image img {
    max-height: 160px;
  }

  .experience-card-content {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .experience-card-content p,
  .experience-card > p {
    margin-bottom: 16px;
  }

  .month-tab {
    min-height: 140px;
  }

  .month-content {
    padding: 15px;
  }
}

/* ============================================
   CRO OPTIMIZATION - NEW CTA STYLES
   Added: November 2025
   Purpose: Research-backed button styles for improved conversion
   ============================================ */

/* Hero secondary CTA - Outline style for high-intent users */
.btn-hero-secondary {
  display: inline-block;
  background: transparent;
  border: 2px solid #B7780D;
  color: #B7780D;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 15px;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-hero-secondary:hover {
  background: #B7780D;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(183, 120, 13, 0.3);
}

/* Text link for skip-ahead options */
.text-link {
  color: #B7780D;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.text-link:hover {
  color: #c49517;
  text-decoration: underline;
}

/* Social proof styling */
.cta-social-proof {
  text-align: center;
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #4B5563;
}

/* Accommodation summary CTA container */
.accommodation-cta-summary {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #B7780D 0%, #FFC727 100%);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(183, 120, 13, 0.3);
}

.accommodation-cta-summary h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #000;
  font-weight: 700;
}

.accommodation-cta-summary p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #2B2823;
  line-height: 1.6;
}

/* Primary accommodation CTA button */
.btn-accommodation-primary {
  display: inline-block;
  background: #2B2823;
  color: white;
  padding: 20px 50px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-accommodation-primary:hover {
  background: #1A1815;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Button microcopy - Trust-building text below CTAs */
.btn-microcopy {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #4B5563;
  font-style: italic;
  text-align: center;
}

/* ============================================
   MOBILE RESPONSIVE OPTIMIZATIONS (768px and below)
   ============================================ */
@media (max-width: 768px) {
  /* Hero secondary CTA - Full width on mobile for easier tapping */
  .btn-hero-secondary {
    width: 100%;
    margin-top: 12px;
    padding: 16px 24px;
  }

  /* Accommodation CTA summary - Reduced padding for mobile */
  .accommodation-cta-summary {
    padding: 30px 15px;
    margin-top: 40px;
  }

  .accommodation-cta-summary h3 {
    font-size: 1.5rem;
  }

  .accommodation-cta-summary p {
    font-size: 1rem;
  }

  /* Accommodation primary button - Full width with larger touch target */
  .btn-accommodation-primary {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
  }

  /* Social proof - Slightly smaller on mobile */
  .cta-social-proof {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  /* Text link - Slightly larger for easier tapping */
  .text-link {
    font-size: 0.95rem;
    display: inline-block;
    padding: 5px 10px;
  }
}
