/* ─── Hero ─────────────────────────────────────────────────────────────── */
.landing-hero {
  background: linear-gradient(160deg, #062218 0%, var(--primary) 50%, #0a3828 100%);
  padding: 48px 0 56px;
  position: relative; overflow: hidden;
}
.landing-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.landing-hero .breadcrumb { margin-bottom: 20px; }

.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-badges .badge {
  background: var(--accent); color: #1a0f00;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px;
}
.hero-badges .tag {
  background: rgba(255,255,255,0.15);
  color: #fff; font-size: 0.78rem; font-weight: 500;
  padding: 5px 14px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

.landing-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff; line-height: 1.15; margin-bottom: 14px;
  font-weight: 700; max-width: 680px;
}

.landing-tagline {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem; margin-bottom: 20px;
  max-width: 600px; line-height: 1.7;
}

.landing-highlights { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.landing-highlights .tag {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.82rem;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Two-column layout ────────────────────────────────────────────────── */
.landing-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  padding: 48px 0 80px;
}
.landing-main { min-width: 0; }
.landing-sidebar { position: sticky; top: 84px; }

/* ─── Booking card ─────────────────────────────────────────────────────── */
.booking-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13,59,42,0.12);
}
.booking-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  padding: 24px;
  text-align: center;
}
.booking-card-header h3 {
  color: #fff; font-size: 1.1rem; margin-bottom: 4px;
}
.booking-card-header p {
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
}
.booking-card-body { padding: 24px; }

.booking-action {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  border: none; cursor: pointer; width: 100%;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  margin-bottom: 12px;
  transition: all 0.25s ease;
  text-align: left;
}
.booking-action-wa {
  background: var(--wa-green); color: #fff;
}
.booking-action-wa:hover { background: #1db954; transform: translateY(-1px); }

.booking-action-quote {
  background: var(--accent); color: #1a0f00;
}
.booking-action-quote:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }

.booking-action-icon { font-size: 1.3rem; flex-shrink: 0; }
.booking-action-text { display: flex; flex-direction: column; gap: 1px; }
.booking-action-text strong { font-size: 0.92rem; }
.booking-action-text span { font-size: 0.76rem; opacity: 0.8; font-weight: 400; }

.booking-divider {
  text-align: center; font-size: 0.78rem; color: var(--text-light);
  margin: 4px 0 12px; position: relative;
}
.booking-divider::before, .booking-divider::after {
  content: '';
  position: absolute; top: 50%;
  width: 38%; height: 1px; background: var(--border);
}
.booking-divider::before { left: 0; }
.booking-divider::after { right: 0; }

.booking-trust { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.booking-trust-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.83rem; color: var(--text-light);
  margin-bottom: 10px;
}
.booking-trust-row:last-child { margin-bottom: 0; }
.booking-trust-row svg { color: var(--primary-mid); flex-shrink: 0; }

/* ─── Section headings ─────────────────────────────────────────────────── */
.landing-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.landing-section:last-child { border-bottom: none; margin-bottom: 0; }
.landing-section-title {
  font-size: 1.3rem; font-weight: 700; color: var(--primary);
  margin-bottom: 28px; display: flex; align-items: center; gap: 10px;
}
.landing-section-title::before {
  content: '';
  display: block; width: 4px; height: 22px;
  background: var(--accent); border-radius: 2px; flex-shrink: 0;
}

/* ─── Day-by-day timeline ──────────────────────────────────────────────── */
.days-list { position: relative; }
.days-list::before {
  content: '';
  position: absolute; left: 22px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--primary-mid), transparent);
}

.day-card {
  display: flex; gap: 20px;
  padding: 0 0 32px 0;
  position: relative;
}
.day-card:last-child { padding-bottom: 0; }

.day-number-wrap {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0; width: 46px;
}
.day-number {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700;
  position: relative; z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px rgba(13,59,42,0.15);
}

.day-body { flex: 1; min-width: 0; padding-top: 10px; }
.day-title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--primary); margin-bottom: 10px; line-height: 1.35;
}
.day-content {
  color: var(--text-light); line-height: 1.75;
  font-size: 0.93rem;
}

/* ─── Inclusions / Exclusions ──────────────────────────────────────────── */
.inc-exc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.inc-exc-col { }
.inc-exc-col h3 {
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.inc-exc-col.inc h3 { color: #15803d; }
.inc-exc-col.exc h3 { color: #b91c1c; }

.inc-exc-col ul { display: flex; flex-direction: column; gap: 10px; }
.inc-exc-col li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.9rem; color: var(--text); line-height: 1.5;
}
.inc-icon { color: #16a34a; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.exc-icon { color: #dc2626; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ─── FAQ accordion ────────────────────────────────────────────────────── */
.faq-list { }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px; margin-bottom: 10px; overflow: hidden;
}
.faq-question {
  width: 100%; background: var(--bg); border: none;
  text-align: left; padding: 18px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem; font-weight: 600;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; color: var(--text);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-alt); color: var(--primary); }
.faq-question[aria-expanded="true"] { background: #D4EDE0; color: var(--primary); }
.faq-icon {
  font-size: 1.1rem; color: var(--primary-mid);
  transition: transform 0.25s ease; flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 4px 20px 20px; color: var(--text-light);
  line-height: 1.75; font-size: 0.93rem;
  background: #D4EDE0;
}

/* ─── Trust bar ────────────────────────────────────────────────────────── */
.trust-bar {
  background: linear-gradient(135deg, #062218, var(--primary));
  padding: 36px 0;
}
.trust-bar-inner {
  display: flex; justify-content: space-around;
  flex-wrap: wrap; gap: 24px;
}
.trust-stat { text-align: center; }
.trust-stat .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--accent); display: block; line-height: 1;
}
.trust-stat .stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
  margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em;
}

/* ─── Reviews ──────────────────────────────────────────────────────────── */
.rating-summary {
  display: flex; align-items: center; gap: 20px;
  background: var(--bg-alt); border-radius: 16px;
  padding: 20px 24px; margin-bottom: 28px;
}
.rating-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 700; color: var(--primary);
  line-height: 1;
}
.rating-stars { display: flex; gap: 3px; margin: 6px 0; }
.rating-count { color: var(--text-light); font-size: 0.88rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.review-form-wrapper { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.star-picker { display: flex; gap: 6px; }
.star-picker .sp-star {
  font-size: 2rem; color: #ddd; cursor: pointer;
  transition: color var(--transition);
}
.star-picker .sp-star.active { color: var(--accent); }

/* ─── CTA section ──────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232,160,32,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #fff; margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  position: relative; z-index: 1;
}
.cta-section p {
  color: rgba(255,255,255,0.75); margin-bottom: 32px;
  font-size: 1.05rem; position: relative; z-index: 1;
}
.cta-actions {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 1;
}
.advisor-preview { margin-top: 16px; font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* ─── Related ──────────────────────────────────────────────────────────── */
.related-section { padding: 64px 0; background: var(--bg-alt); }
.related-section h2 { margin-bottom: 28px; color: var(--primary); }
.related-strip { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 12px; }
.related-strip::-webkit-scrollbar { height: 4px; }
.related-strip::-webkit-scrollbar-track { background: var(--border); border-radius: 2px; }
.related-strip::-webkit-scrollbar-thumb { background: var(--primary-mid); border-radius: 2px; }
.related-strip .card { min-width: 260px; flex-shrink: 0; }

/* ─── Sticky WA (mobile only) ──────────────────────────────────────────── */
.sticky-wa {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  display: none;
}
.sticky-wa-btn {
  width: 100%; background: var(--wa-green); color: #fff;
  border: none; padding: 18px; font-size: 1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 10px; font-family: 'DM Sans', sans-serif;
}
.wa-icon { font-size: 1.3rem; }

/* ─── Print ────────────────────────────────────────────────────────────── */
.print-mode .site-nav,
.print-mode .sticky-wa,
.print-mode .cta-section,
.print-mode .review-form-wrapper,
.print-mode .modal-overlay,
.print-mode .related-section,
.print-mode .landing-sidebar,
.print-mode .site-footer { display: none !important; }
.print-mode .landing-body { grid-template-columns: 1fr; }
.print-mode .print-header { display: block !important; text-align: center; padding: 20px 0; border-bottom: 2px solid var(--primary); margin-bottom: 30px; }
.print-header { display: none; }

/* ─── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .landing-body { grid-template-columns: 1fr; }
  .landing-sidebar { position: static; }
  .booking-card { display: none; }
  .sticky-wa { display: block; }
  body { padding-bottom: 60px; }
}
@media (max-width: 600px) {
  .inc-exc-grid { grid-template-columns: 1fr; gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .days-list::before { left: 20px; }
  .day-number { width: 40px; height: 40px; font-size: 1rem; }
  .day-number-wrap { width: 40px; }
}
