* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #172033;
  background: #f6f1e8;
}

.hero {
  min-height: 100vh;
  color: white;
  background:
    linear-gradient(135deg, rgba(5,8,20,.97) 0%, rgba(8,13,25,.82) 55%, rgba(8,13,25,.55) 100%),
    url("images/hero.webp");
  background-size: cover;
  background-position: center;
  padding: 24px;
}

.nav {
  max-width: 1180px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  padding: 4px;
  flex-shrink: 0;
}

.logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fbbf24;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.brand strong {
  display: block;
  font-size: 20px;
}

.brand span {
  display: block;
  color: #d1d5db;
  font-size: 13px;
}

.logo-contact {
  margin-top: 4px;
}

.logo-contact a {
  color: #34d399;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.logo-contact a:hover {
  text-decoration: underline;
}

.nav-btn,
.primary-btn,
.secondary-btn,
button,
.sticky-cta a,
.success-close-btn,
.success-whatsapp-btn {
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.nav-btn,
.primary-btn,
button,
.sticky-cta a {
  background: #f59e0b;
  color: #111827;
}

.nav-btn {
  padding: 11px 20px;
  white-space: nowrap;
}

.hero-inner {
  max-width: 1180px;
  margin: 90px auto 0;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 38px;
  align-items: center;
}

.hero-inner-single {
  grid-template-columns: 1fr;
  max-width: 1180px;
}

.hero-inner-single .hero-copy {
  max-width: 820px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fbbf24;
}

.eyebrow.dark {
  color: #b45309;
}

h1 {
  font-size: 62px;
  line-height: 1.02;
  margin: 14px 0 18px;
}

h2 {
  font-size: 38px;
  line-height: 1.15;
  margin: 8px 0 16px;
}

.subtitle {
  font-size: 20px;
  line-height: 1.65;
  max-width: 760px;
  color: #f3f4f6;
}

.hero-price {
  margin: 24px 0;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 22px;
  padding: 18px 20px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  backdrop-filter: blur(8px);
}

.hero-price span {
  color: #fde68a;
  font-weight: 800;
}

.hero-price strong {
  font-size: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.trust-row span {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.22);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: #f3f4f6;
  letter-spacing: .01em;
  backdrop-filter: blur(8px);
}

.primary-btn,
.secondary-btn {
  display: inline-block;
  padding: 16px 24px;
}

.secondary-btn {
  margin-left: 10px;
  background: rgba(255,255,255,.14);
  color: white;
  border: 1px solid rgba(255,255,255,.35);
}

/* Enhanced hero CTA button */
.hero-primary-btn {
  display: block;
  text-align: center;
  font-size: 18px;
  padding: 18px 32px;
  letter-spacing: .01em;
  box-shadow: 0 8px 32px rgba(245,158,11,.55), 0 2px 8px rgba(0,0,0,.25);
  transition: transform .18s ease, box-shadow .18s ease;
}

.hero-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(245,158,11,.65), 0 4px 12px rgba(0,0,0,.3);
}

/* WhatsApp secondary CTA */
.hero-wa-btn {
  margin-left: 10px;
  background: rgba(34,197,94,.18);
  color: #bbf7d0;
  border: 1px solid rgba(34,197,94,.4);
  transition: background .18s;
}

.hero-wa-btn:hover {
  background: rgba(34,197,94,.28);
}

/* No-prepayment badge — high visibility green badge */
.hero-no-prepay {
  display: inline-block;
  background: rgba(34,197,94,.16);
  border: 1px solid rgba(34,197,94,.38);
  color: #86efac;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  margin: 14px 0 18px;
  letter-spacing: .01em;
}

/* Glassmorphism card — desktop: invisible wrapper, mobile: glass card */
.hero-glass-card {
  /* No extra styles on desktop — layout unchanged */
}

/* Urgency row */
.hero-urgency-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 20px;
}

.hero-urgency-static {
  font-size: 13px;
  font-weight: 800;
  color: #fde68a;
  letter-spacing: .01em;
}

.hero-urgency-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
}

/* ── Experience photo strip ── */
.experience-strip {
  background: #0d1117;
  overflow: hidden;
  line-height: 0;
}

.experience-strip-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.experience-strip-inner::-webkit-scrollbar {
  display: none;
}

.exp-photo {
  flex: 0 0 25%;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

.exp-photo img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  filter: brightness(.72);
  transition: filter .25s ease;
}

.exp-photo:hover img {
  filter: brightness(.88);
}

.exp-photo span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: white;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .01em;
}

/* ── Booking form trust + WhatsApp ── */
.booking-pay-trust {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #166534;
  text-align: center;
  margin-bottom: 16px;
}

.booking-wa-help {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.booking-wa-help a {
  color: #16a34a;
  font-weight: 700;
  text-decoration: none;
}

.booking-wa-help a:hover {
  text-decoration: underline;
}

.overview-section,
.lunch-section,
.details-section {
  padding: 80px 20px;
  background: #fffaf0;
}

.overview-wrap {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.overview-wrap p {
  line-height: 1.7;
  color: #4b5563;
}

.overview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.overview-cards div,
.detail-box,
.review-card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.overview-cards strong {
  display: block;
  color: #b45309;
  margin-bottom: 10px;
}

.overview-cards span {
  display: block;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.section {
  max-width: 1180px;
  margin: auto;
  padding: 80px 20px;
  text-align: center;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  color: #4b5563;
  line-height: 1.7;
}

.highlight-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.highlight-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.highlight-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.highlight-content {
  padding: 24px;
}

.highlight-content span {
  color: #d97706;
  font-weight: 900;
}

.highlight-content h3 {
  margin: 12px 0 8px;
}

.highlight-content p {
  color: #5b6472;
  line-height: 1.55;
}

.lunch-box {
  max-width: 1080px;
  margin: auto;
  background: white;
  border-radius: 30px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: center;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.lunch-text p {
  color: #4b5563;
  line-height: 1.7;
}

.lunch-text ul {
  margin-top: 20px;
  padding-left: 20px;
}

.lunch-text li {
  margin: 10px 0;
  color: #374151;
}

.lunch-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lunch-images img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  transition: transform .25s ease;
}

.lunch-images img:hover {
  transform: scale(1.04);
}

.details-grid {
  max-width: 1080px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.detail-box {
  border-radius: 26px;
  padding: 30px;
}

.detail-box li {
  margin: 12px 0;
  line-height: 1.5;
}

.note-box {
  margin-top: 20px;
  background: #fff7ed;
  border-left: 5px solid #f59e0b;
  padding: 16px;
  border-radius: 14px;
  color: #7c2d12;
  line-height: 1.65;
}

.reviews-section {
  padding: 80px 20px;
  background: #f6f1e8;
}

.reviews-wrap {
  max-width: 1080px;
  margin: auto;
  text-align: center;
}

.review-score {
  margin: 22px auto 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 14px 22px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.review-score strong {
  color: #b45309;
  font-size: 20px;
}

.review-score span {
  color: #4b5563;
}

.review-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  text-align: left;
}

.review-card strong {
  color: #b45309;
}

.review-card p {
  color: #4b5563;
  line-height: 1.6;
}

.review-card span {
  color: #6b7280;
  font-size: 14px;
}

.conversion-section {
  padding: 80px 20px;
  background: #fffaf0;
}

.conversion-box {
  max-width: 980px;
  margin: auto;
  background: white;
  border-radius: 30px;
  padding: 42px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.conversion-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.conversion-grid div {
  background: #fff7ed;
  color: #7c2d12;
  padding: 16px;
  border-radius: 18px;
  font-weight: 800;
}

.conversion-note {
  margin-top: 24px;
  color: #92400e;
  font-weight: 800;
}

.booking-section {
  padding: 90px 20px;
  background: #111827;
  color: white;
}

.booking-wrap {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.booking-info p {
  color: #d1d5db;
  line-height: 1.7;
}

.mini-trust {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mini-trust div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px;
}

.mini-trust strong {
  display: block;
  font-size: 26px;
  color: #fbbf24;
}

.mini-trust span {
  display: block;
  color: #d1d5db;
  margin-top: 4px;
  font-size: 13px;
}

.booking-box {
  background: white;
  color: #172033;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 25px 80px rgba(0,0,0,.35);
}

.form-header {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  padding: 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.form-header h3 {
  margin: 0 0 6px;
  font-size: 24px;
}

.form-header p {
  margin: 0;
  color: #7c2d12;
  line-height: 1.5;
}

label {
  display: block;
  margin: 15px 0 7px;
  font-weight: 900;
}

input {
  width: 100%;
  padding: 15px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  font-size: 16px;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}

input:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245,158,11,.18);
}

input.input-error {
  border-color: #ef4444;
  background: #fff1f2;
  box-shadow: 0 0 0 4px rgba(239,68,68,.12);
}

#checkBtn,
.confirm {
  width: 100%;
  margin-top: 22px;
  padding: 16px 24px;
}

button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.confirm {
  background: #16a34a;
  color: white;
}

.result {
  display: none;
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  line-height: 1.55;
  white-space: pre-line;
}

.result.success {
  display: block;
  background: #dcfce7;
  color: #166534;
}

.result.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
}

.booking-success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 22, .72);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.booking-success-modal {
  width: min(100%, 560px);
  max-height: 92vh;
  overflow-y: auto;
  background: white;
  color: #172033;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
  padding: 28px;
}

.success-icon {
  width: 58px;
  height: 58px;
  background: #dcfce7;
  color: #166534;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 30px;
  font-weight: 900;
}

.booking-success-modal h2 {
  text-align: center;
  margin: 8px 0 8px;
  font-size: 30px;
}

.success-subtitle {
  text-align: center;
  color: #4b5563;
  line-height: 1.55;
  margin: 0 0 20px;
}

.success-summary {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 18px;
}

.success-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(251, 191, 36, .35);
}

.success-row:last-child {
  border-bottom: 0;
}

.success-row span {
  color: #92400e;
  font-weight: 900;
}

.success-row strong {
  color: #172033;
  word-break: break-word;
}

.success-note {
  background: #ecfdf5;
  border-left: 5px solid #16a34a;
  color: #065f46;
  padding: 14px;
  border-radius: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.success-actions {
  display: grid;
  gap: 10px;
}

.success-close-btn {
  width: 100%;
  padding: 15px 20px;
  background: #16a34a;
  color: white;
}

.success-whatsapp-btn {
  display: block;
  width: 100%;
  padding: 15px 20px;
  text-align: center;
  background: #22c55e;
  color: white;
}

.success-whatsapp-link {
  color: #047857;
  font-weight: 900;
  text-decoration: none;
}

.success-whatsapp-link:hover {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(92%, 620px);
  background: rgba(17,24,39,.96);
  color: white;
  padding: 10px 10px 10px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.sticky-cta strong {
  display: block;
  color: white;
  font-size: 15px;
}

.sticky-cta span {
  display: block;
  font-size: 11px;
  color: #9ca3af;
}

.sticky-urgency {
  color: #fbbf24 !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.sticky-cta a {
  padding: 11px 20px;
  white-space: nowrap;
  font-size: 14px;
}

footer {
  background: #050816;
  color: white;
  text-align: center;
  padding: 24px 24px 90px;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 16px 16px 28px;
  }

  .nav {
    align-items: flex-start;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand span {
    font-size: 12px;
  }

  .logo-img,
  .logo-placeholder {
    width: 42px;
    height: 42px;
  }

  .logo-contact a {
    font-size: 12px;
  }

  .nav-btn {
    display: none;
  }

  .hero-inner,
  .overview-wrap,
  .booking-wrap,
  .details-grid,
  .lunch-box {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    margin-top: 32px;
    gap: 14px;
  }

  h1 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.05;
    margin: 10px 0 12px;
  }

  h2 {
    font-size: clamp(28px, 7vw, 34px);
  }

  .subtitle {
    font-size: 16px;
    line-height: 1.55;
    margin: 0 0 4px;
  }

  .hero-price {
    width: 100%;
    padding: 12px 16px;
    margin: 16px 0;
  }

  .hero-price strong {
    font-size: 28px;
  }

  /* Glass card on mobile */
  .hero-glass-card {
    background: rgba(5, 8, 20, .52);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 22px;
    padding: 20px 16px 16px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .trust-row {
    gap: 6px;
    margin: 14px 0;
  }

  .trust-row span {
    font-size: 13px;
    padding: 8px 12px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
    padding: 15px 18px;
  }

  .hero-primary-btn {
    font-size: 17px;
    padding: 17px 24px;
  }

  .hero-wa-btn {
    margin-left: 0;
    margin-top: 10px;
    display: block;
    text-align: center;
  }

  .secondary-btn {
    margin-left: 0;
    margin-top: 10px;
  }

  .hero-no-prepay {
    font-size: 13px;
    padding: 7px 14px;
    margin: 10px 0 12px;
  }

  .hero-urgency-wrap {
    margin: 12px 0 14px;
  }

  .hero-urgency-static {
    font-size: 12px;
  }

  /* Experience strip — scrollable on mobile, 2 photos visible */
  .exp-photo {
    flex: 0 0 55%;
  }

  .exp-photo img {
    height: 150px;
  }

  .overview-section,
  .lunch-section,
  .details-section,
  .reviews-section,
  .conversion-section,
  .booking-section,
  .section {
    padding: 56px 18px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .overview-cards,
  .review-grid,
  .mini-trust,
  .conversion-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card img {
    height: 220px;
  }

  .highlight-content {
    padding: 20px;
  }

  .lunch-box,
  .conversion-box,
  .booking-box {
    padding: 22px;
    border-radius: 24px;
  }

  .lunch-images {
    grid-template-columns: 1fr;
  }

  .lunch-images img {
    height: 210px;
  }

  .review-score {
    border-radius: 20px;
    flex-direction: column;
  }

  .success-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .booking-success-modal {
    padding: 22px;
    border-radius: 24px;
  }

  .booking-success-modal h2 {
    font-size: 26px;
  }

  .sticky-cta {
    width: calc(100% - 20px);
    bottom: 10px;
    border-radius: 18px;
    padding: 8px 8px 8px 14px;
  }

  footer {
    padding-bottom: 96px;
  }
}

@media (max-width: 420px) {
  .nav {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .nav-btn {
    padding: 9px 12px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-price strong {
    font-size: 25px;
  }

  .sticky-cta {
    align-items: center;
  }

  .sticky-cta a {
    padding: 11px 15px;
  }
}

/* =========================
   SEATS BADGE
========================= */

.hero-seats-wrap {
  margin: 14px 0 8px;
}

.booking-seats-wrap {
  margin: 16px 0 4px;
}

.seats-badge {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.seats-available {
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.seats-limited {
  background: rgba(249, 115, 22, 0.12);
  color: #c2410c;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.seats-critical {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.3);
  animation: pulse-seats 1.8s ease-in-out infinite;
}

.seats-full {
  background: rgba(107, 114, 128, 0.12);
  color: #4b5563;
  border: 1px solid rgba(107, 114, 128, 0.3);
}

@keyframes pulse-seats {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}

/* On dark hero background — make badge text white-ish */
.hero-seats-wrap .seats-available {
  background: rgba(34, 197, 94, 0.2);
  color: #bbf7d0;
  border-color: rgba(34, 197, 94, 0.4);
}

.hero-seats-wrap .seats-limited {
  background: rgba(249, 115, 22, 0.2);
  color: #fed7aa;
  border-color: rgba(249, 115, 22, 0.4);
}

.hero-seats-wrap .seats-critical {
  background: rgba(239, 68, 68, 0.2);
  color: #fecaca;
  border-color: rgba(239, 68, 68, 0.4);
}

/* =========================
   2-STEP BOOKING FLOW
========================= */

.booking-step {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 22px 20px 20px;
  margin-bottom: 16px;
}

.booking-step:last-child {
  margin-bottom: 0;
}

.booking-step-hidden {
  display: none;
}

.booking-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f3f4f6;
}

.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f59e0b;
  color: white;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-badge-2 {
  background: #16a34a;
}

.step-header-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.step-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #9ca3af;
}

.step-title {
  font-size: 17px;
  font-weight: 900;
  color: #111827;
}

.step2-hint {
  margin: 0 0 6px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.55;
}

/* =========================
   PROCESSING MODAL
   Shown immediately on Confirm click, updated in-place after API response
========================= */

.booking-processing-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 22, .75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.booking-processing-modal {
  width: min(100%, 500px);
  max-height: 92vh;
  overflow-y: auto;
  background: white;
  border-radius: 28px;
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}

/* Icon states */
.proc-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  transition: background .3s, border-color .3s;
}

.proc-icon-processing {
  background: #fef3c7;
  border: 3px solid #f59e0b;
}

.proc-icon-confirmed {
  background: #dcfce7;
  border: 3px solid #16a34a;
  color: #16a34a;
}

.proc-icon-error {
  background: #fee2e2;
  border: 3px solid #ef4444;
  color: #ef4444;
}

/* Spinner inside processing icon */
.proc-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #fbbf24;
  border-top-color: transparent;
  border-radius: 50%;
  animation: proc-spin .75s linear infinite;
}

@keyframes proc-spin {
  to { transform: rotate(360deg); }
}

/* Title & subtitle */
.proc-title {
  margin: 0 0 8px;
  font-size: 22px;
  color: #111827;
}

.proc-subtitle {
  margin: 0 0 20px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.55;
}

/* Data summary */
.proc-summary {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px 16px;
  text-align: left;
  margin-bottom: 16px;
}

.proc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
}

.proc-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.proc-row span {
  color: #6b7280;
  flex-shrink: 0;
}

.proc-row strong {
  color: #111827;
  text-align: right;
  word-break: break-word;
}

/* Error message */
.proc-error-msg {
  background: #fee2e2;
  color: #991b1b;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: left;
}

/* Action buttons */
.proc-actions {
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.proc-wa-btn {
  display: block;
  background: #16a34a;
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}

.proc-wa-btn:hover {
  background: #15803d;
}

.proc-close-btn {
  width: 100%;
  background: transparent;
  border: 1.5px solid #d1d5db;
  color: #374151;
  padding: 12px 24px;
  border-radius: 14px;
  font-size: 15px;
  cursor: pointer;
}

.proc-close-btn:hover {
  background: #f3f4f6;
}

.hero-seats-wrap .seats-full {
  background: rgba(255,255,255,0.1);
  color: #d1d5db;
  border-color: rgba(255,255,255,0.2);
}

/* =========================
   FAQ SECTION — ACCORDION
========================= */

.faq-section {
  background: #fff;
  padding: 72px 24px;
}

.faq-wrap {
  max-width: 780px;
  margin: auto;
}

.faq-wrap h2 {
  margin: 8px 0 32px;
  font-size: 28px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-question {
  width: 100%;
  background: white;
  border: 0;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: #172033;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
  border-radius: 0;
}

.faq-question:hover {
  background: #fffaf0;
}

.faq-question[aria-expanded="true"] {
  background: #fff7ed;
  color: #92400e;
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: #b45309;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 18px;
}

.faq-answer p {
  font-size: 14px;
  color: #4b5563;
  margin: 0;
  line-height: 1.65;
}

.faq-cta {
  margin-top: 40px;
  text-align: center;
}

.faq-cta p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 14px;
}

.faq-wa-btn {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s;
}

.faq-wa-btn:hover {
  background: #128c7e;
  transform: translateY(-1px);
}

@media (max-width: 680px) {
  .faq-wrap h2 {
    font-size: 22px;
  }
  .faq-question {
    padding: 16px 18px;
    font-size: 14px;
  }
  .faq-answer {
    padding: 0 18px;
  }
  .faq-answer.open {
    padding: 0 18px 16px;
  }
}

/* =========================
   TOUR DAY SCHEDULE / TIMELINE
========================= */

.schedule-section {
  padding: 80px 20px;
  background: #f6f1e8;
}

.schedule-wrap {
  max-width: 820px;
  margin: auto;
}

.schedule-wrap h2 {
  text-align: center;
  margin-bottom: 8px;
}

.timeline {
  margin-top: 44px;
  position: relative;
  padding-left: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 102px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #e5d8c5;
}

.tl-item {
  display: grid;
  grid-template-columns: 90px 24px 1fr;
  gap: 0 16px;
  align-items: start;
  margin-bottom: 28px;
  position: relative;
}

.tl-time {
  text-align: right;
  font-size: 12px;
  font-weight: 900;
  color: #b45309;
  padding-top: 2px;
  white-space: nowrap;
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d97706;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #d97706;
  margin: 2px 5px 0;
  flex-shrink: 0;
}

.tl-dot-lunch {
  background: #16a34a;
  box-shadow: 0 0 0 2px #16a34a;
}

.tl-dot-end {
  background: #172033;
  box-shadow: 0 0 0 2px #172033;
}

.tl-content {
  padding-bottom: 4px;
}

.tl-content strong {
  display: block;
  font-size: 15px;
  color: #172033;
  margin-bottom: 4px;
}

.tl-content p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

.tl-tag {
  font-size: 11px;
  font-weight: 700;
  background: #fff7ed;
  color: #b45309;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #fed7aa;
  margin-left: 6px;
  vertical-align: middle;
}

.tl-tag-green {
  background: #dcfce7;
  color: #166534;
  border-color: #bbf7d0;
}

.entrance-summary {
  margin-top: 44px;
  background: white;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,.07);
}

.entrance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.entrance-grid div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: #fffaf0;
  border-radius: 12px;
  font-size: 14px;
}

.entrance-grid span {
  color: #4b5563;
}

.entrance-grid strong {
  color: #92400e;
  font-weight: 900;
}

.entrance-total {
  grid-column: 1 / -1;
  background: #fff7ed !important;
  border: 2px solid #fed7aa;
}

.entrance-total span {
  font-weight: 800;
  color: #172033 !important;
}

.entrance-total strong {
  font-size: 18px;
}

.entrance-note {
  margin-top: 12px;
  font-size: 13px;
  color: #16a34a;
  font-weight: 700;
  text-align: center;
}

.entrance-optional-note {
  margin-top: 14px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 13px;
  color: #166534;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 680px) {
  .timeline::before {
    left: 80px;
  }
  .tl-item {
    grid-template-columns: 68px 20px 1fr;
    gap: 0 10px;
    margin-bottom: 22px;
  }
  .tl-time {
    font-size: 11px;
  }
  .entrance-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   IMPROVED REVIEW CARDS
========================= */

.review-card strong {
  display: block;
  font-size: 16px;
  color: #172033;
  margin: 8px 0 10px;
}

.review-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 1px;
}

.reviewer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #172033;
  color: white;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-name {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #172033;
}

.reviewer-country {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

/* =========================
   FLOATING WHATSAPP BUTTON
========================= */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(37,211,102,.45);
  z-index: 30;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.wa-float span {
  display: none;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37,211,102,.55);
}

@media (max-width: 900px) {
  .wa-float {
    bottom: 80px;
    right: 14px;
    width: 50px;
    height: 50px;
  }
}
/* Booking CTA card (→ external /book/ page) */
.booking-cta-card{
  text-align:center;
  padding:26px 22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.booking-cta-badge{
  width:46px;height:46px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:#16a34a;color:#fff;font-size:22px;font-weight:700;
  margin-bottom:4px;
}
.booking-cta-label{
  text-transform:uppercase;letter-spacing:.08em;font-size:12px;
  font-weight:700;color:#f59e0b;
}
.booking-cta-card h3{margin:2px 0;font-size:22px;}
.booking-cta-card p{color:#4b5563;font-size:15px;line-height:1.6;margin:0 0 8px;}
.booking-cta-btn{width:100%;text-align:center;font-size:17px;padding:15px 20px;}
