/* ─── Trip Matcher — modal wizard ──────────────────────────────────────── */

/* ── Overlay ────────────────────────────────────────────────────────────── */
.tm-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(6, 34, 24, 0.72);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.tm-overlay.tm-open {
  opacity: 1; visibility: visible;
}

/* ── Modal card ─────────────────────────────────────────────────────────── */
.tm-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%; max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
}
.tm-overlay.tm-open .tm-modal {
  transform: translateY(0) scale(1);
}

/* ── Close button ───────────────────────────────────────────────────────── */
.tm-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: #f0f4f2; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #5A6472; font-size: 1.1rem; line-height: 1;
  transition: background 0.15s, color 0.15s;
}
.tm-close:hover { background: #e0e8e4; color: #0D3B2A; }

/* ── Progress bar ───────────────────────────────────────────────────────── */
.tm-progress-bar {
  height: 4px; background: #e0e8e4;
  border-radius: 4px 4px 0 0; overflow: hidden;
}
.tm-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1A6B4A, #E8A020);
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Header area ────────────────────────────────────────────────────────── */
.tm-header {
  padding: 20px 24px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.tm-step-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: #1A6B4A;
}

/* ── Step body ──────────────────────────────────────────────────────────── */
.tm-body { padding: 16px 24px 24px; }

.tm-q {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem; font-weight: 700;
  color: #0D3B2A; margin: 0 0 6px; line-height: 1.3;
}
.tm-hint {
  font-size: 0.82rem; color: #5A6472; margin: 0 0 18px;
}

/* ── Option grid ────────────────────────────────────────────────────────── */
.tm-options {
  display: grid; gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.tm-options--3col { grid-template-columns: 1fr 1fr 1fr; }
.tm-options--1col { grid-template-columns: 1fr; }

@media (max-width: 420px) {
  .tm-options, .tm-options--3col { grid-template-columns: 1fr 1fr; }
}

/* ── Option card ────────────────────────────────────────────────────────── */
.tm-option {
  position: relative;
  border: 1.5px solid #E0E8E4;
  border-radius: 12px;
  padding: 14px 12px 12px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, transform 0.15s;
  text-align: center;
  background: #fff;
  user-select: none;
}
.tm-option:hover {
  border-color: #1A6B4A;
  background: #f5faf7;
  transform: translateY(-1px);
}
.tm-option.tm-selected {
  border-color: #1A6B4A;
  background: #EAF4EE;
}
.tm-option.tm-selected::after {
  content: '✓';
  position: absolute; top: 6px; right: 8px;
  font-size: 0.7rem; font-weight: 900;
  color: #1A6B4A;
}
.tm-option input { position: absolute; opacity: 0; pointer-events: none; }

.tm-opt-icon { font-size: 1.5rem; display: block; margin-bottom: 6px; line-height: 1; }
.tm-opt-title {
  font-size: 0.82rem; font-weight: 600; color: #1A1A1A;
  display: block; line-height: 1.3;
}
.tm-opt-desc {
  font-size: 0.72rem; color: #5A6472;
  display: block; margin-top: 3px; line-height: 1.35;
}

/* ── Multi-select note & continue btn ──────────────────────────────────── */
.tm-multi-note {
  font-size: 0.75rem; color: #5A6472; margin-bottom: 12px; text-align: center;
}
.tm-continue-btn {
  width: 100%; margin-top: 14px;
  background: #0D3B2A; color: #fff; border: none;
  padding: 13px 20px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.tm-continue-btn:hover { background: #1A6B4A; }
.tm-continue-btn:disabled { opacity: 0.45; cursor: default; }

/* ── Back link ──────────────────────────────────────────────────────────── */
.tm-back {
  background: none; border: none; cursor: pointer;
  color: #5A6472; font-size: 0.78rem; font-family: 'DM Sans', sans-serif;
  padding: 0; margin-top: 10px; display: block; text-align: center;
  text-decoration: underline;
}
.tm-back:hover { color: #0D3B2A; }

/* ── Loading state ──────────────────────────────────────────────────────── */
.tm-loading {
  padding: 40px 24px; text-align: center;
}
.tm-spinner {
  width: 36px; height: 36px; margin: 0 auto 14px;
  border: 3px solid #e0e8e4;
  border-top-color: #1A6B4A;
  border-radius: 50%;
  animation: tm-spin 0.7s linear infinite;
}
@keyframes tm-spin { to { transform: rotate(360deg); } }
.tm-loading p { color: #5A6472; font-size: 0.9rem; }

/* ── Results ────────────────────────────────────────────────────────────── */
.tm-results { padding: 20px 24px 28px; }
.tm-results-eyebrow {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: #1A6B4A; margin-bottom: 4px;
}
.tm-results h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 700; color: #0D3B2A;
  margin: 0 0 4px;
}
.tm-results-sub { font-size: 0.82rem; color: #5A6472; margin: 0 0 20px; }

/* Result card */
.tm-result-card {
  border: 1.5px solid #E0E8E4; border-radius: 12px;
  padding: 14px 16px; margin-bottom: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tm-result-card:hover { border-color: #1A6B4A; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.tm-result-card--top {
  border-color: #1A6B4A;
  background: linear-gradient(135deg, #f5faf7 0%, #fff 100%);
}
.tm-result-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 3px 10px; border-radius: 50px; margin-bottom: 7px;
  background: #1A6B4A; color: #fff;
}
.tm-result-badge--2 { background: #E8A020; }
.tm-result-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem; font-weight: 700; color: #0D3B2A;
  margin: 0 0 4px; line-height: 1.3;
}
.tm-result-title a { color: inherit; text-decoration: none; }
.tm-result-title a:hover { text-decoration: underline; }
.tm-result-tagline { font-size: 0.78rem; color: #5A6472; margin: 0 0 8px; }
.tm-why-list {
  list-style: none; padding: 0; margin: 0 0 10px;
  display: flex; flex-direction: column; gap: 3px;
}
.tm-why-list li {
  font-size: 0.76rem; color: #3a7a5a;
  display: flex; align-items: flex-start; gap: 5px;
}
.tm-why-list li::before { content: '✓'; font-weight: 900; flex-shrink: 0; }
.tm-result-link {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  color: #1A6B4A; text-decoration: none;
  border: 1.5px solid #1A6B4A; border-radius: 50px;
  padding: 5px 14px;
  transition: background 0.15s, color 0.15s;
}
.tm-result-link:hover { background: #1A6B4A; color: #fff; }

/* ── Lead capture ───────────────────────────────────────────────────────── */
.tm-lead-box {
  background: linear-gradient(135deg, #062218, #0D3B2A);
  border-radius: 14px; padding: 20px 20px 18px;
  margin-top: 16px; color: #fff;
}
.tm-lead-box h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem; font-weight: 700; color: #fff; margin: 0 0 6px;
}
.tm-lead-box p { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin: 0 0 14px; }
.tm-lead-input {
  width: 100%; padding: 10px 14px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  box-sizing: border-box; margin-bottom: 8px;
  transition: border-color 0.2s;
}
.tm-lead-input::placeholder { color: rgba(255,255,255,0.4); }
.tm-lead-input:focus { outline: none; border-color: #E8A020; }
.tm-lead-submit {
  width: 100%; padding: 12px 20px; border-radius: 50px; border: none;
  background: #25D366; color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.tm-lead-submit:hover { background: #1ebe59; }
.tm-lead-privacy {
  font-size: 0.7rem; color: rgba(255,255,255,0.45);
  text-align: center; margin: 8px 0 0;
}
.tm-lead-success {
  text-align: center; padding: 10px 0 4px;
}
.tm-lead-success span { font-size: 0.88rem; color: #a7f3c9; }

/* ── Footer row ─────────────────────────────────────────────────────────── */
.tm-footer-row {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-top: 14px;
}
.tm-footer-row a, .tm-footer-row button {
  font-size: 0.78rem; color: #5A6472; background: none; border: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  text-decoration: underline; padding: 0;
}
.tm-footer-row a:hover, .tm-footer-row button:hover { color: #0D3B2A; }

/* ── Trigger buttons (homepage band, package nudge) ─────────────────────── */
.tm-trigger-band {
  background: linear-gradient(135deg, #0D3B2A 0%, #1A6B4A 100%);
  padding: 56px 0; color: #fff;
}
.tm-trigger-band-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.tm-trigger-band-text h2 { color: #fff; margin: 8px 0 10px; font-size: clamp(1.5rem, 3vw, 2rem); }
.tm-trigger-band-text p { color: rgba(255,255,255,0.8); max-width: 460px; margin-bottom: 14px; }
.tm-trigger-band-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px 18px;
}
.tm-trigger-band-list li { font-size: 0.84rem; color: rgba(255,255,255,0.85); }
.tm-open-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #E8A020; color: #fff;
  border: none; border-radius: 50px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
  padding: 14px 28px; white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.tm-open-btn:hover { background: #d4901a; transform: translateY(-1px); }
.tm-trigger-band-note { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin: 8px 0 0; text-align: center; }

/* Package nudge strip */
.tm-pkg-nudge {
  background: #F5F7F5; border: 1.5px solid #E0E8E4;
  border-radius: 12px; padding: 16px 20px; margin: 24px 0;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.tm-pkg-nudge-text { flex: 1; min-width: 180px; }
.tm-pkg-nudge-text strong { color: #0D3B2A; font-size: 0.9rem; display: block; margin-bottom: 2px; }
.tm-pkg-nudge-text span { color: #5A6472; font-size: 0.78rem; }

@media (max-width: 700px) {
  .tm-trigger-band-inner { grid-template-columns: 1fr; text-align: center; }
  .tm-trigger-band-text p { max-width: 100%; }
  .tm-trigger-band-list { justify-content: center; }
  .tm-open-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .tm-modal { border-radius: 16px 16px 0 0; max-height: 95vh; }
  .tm-overlay { align-items: flex-end; padding: 0; }
  .tm-q { font-size: 1.25rem; }
}

/* ── Legacy page classes kept for /trip-matcher standalone page ──────────── */
.matcher-home-band { background: linear-gradient(135deg, #0D3B2A 0%, #1A6B4A 100%); padding: 64px 0; color: #fff; }
.matcher-home-band-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.matcher-home-band-text h2 { color: #fff; margin: 8px 0 12px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.matcher-home-band-text p  { color: rgba(255,255,255,0.82); max-width: 520px; margin-bottom: 16px; }
.matcher-home-band-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.matcher-home-band-list li { color: rgba(255,255,255,0.9); font-size: 0.9rem; }
.matcher-home-band-cta { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.matcher-home-band-note { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin: 0; }
.pkg-matcher-nudge { background: #F5F7F5; border: 1.5px solid #E0E8E4; border-radius: 14px; padding: 20px 24px; margin: 28px 0; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.pkg-matcher-nudge-icon { font-size: 1.8rem; flex-shrink: 0; }
.pkg-matcher-nudge-text { flex: 1; min-width: 200px; }
.pkg-matcher-nudge-text strong { color: #0D3B2A; font-size: 0.95rem; display: block; margin-bottom: 3px; }
.pkg-matcher-nudge-text span { color: #5A6472; font-size: 0.83rem; }
.pkg-matcher-nudge-btn { display: inline-flex; align-items: center; gap: 6px; background: #0D3B2A; color: #fff; padding: 10px 22px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; text-decoration: none; white-space: nowrap; transition: background 0.2s; font-family: 'DM Sans', sans-serif; }
.pkg-matcher-nudge-btn:hover { background: #1A6B4A; }
@media (max-width: 700px) {
  .matcher-home-band-inner { grid-template-columns: 1fr; text-align: center; }
  .matcher-home-band-cta { width: 100%; }
}

/* ─── Budget Estimator result styles ────────────────────────────────────── */
.be-result { padding: 4px 0 8px; }
.be-result-eyebrow {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: #1A6B4A; margin-bottom: 12px;
}
.be-range {
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: 2px; margin-bottom: 6px;
}
.be-range-low, .be-range-high {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem; font-weight: 700; color: #0D3B2A; line-height: 1;
}
.be-range-sep { font-size: 1.4rem; color: #5A6472; margin: 0 4px; }
.be-range-label { font-size: 0.82rem; color: #5A6472; margin-left: 4px; align-self: flex-end; padding-bottom: 4px; }
.be-range-note { font-size: 0.8rem; color: #5A6472; margin: 4px 0 10px; }
.be-incl-list {
  list-style: none; padding: 0; margin: 0 0 6px;
  display: flex; flex-direction: column; gap: 4px;
}
.be-incl-list li { font-size: 0.8rem; color: #3a7a5a; }
.be-excl-note { font-size: 0.74rem; color: #9aabb3; margin-bottom: 16px; }

/* ─── Best Time result styles ───────────────────────────────────────────── */
.bt-result { padding: 4px 0 8px; }
.bt-dest-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: #1A6B4A; margin-bottom: 12px; }
.bt-recommendation {
  display: flex; align-items: flex-start; gap: 12px;
  background: #EAF4EE; border-radius: 10px; padding: 12px 14px; margin-bottom: 16px;
}
.bt-rec-icon { font-size: 1.4rem; flex-shrink: 0; }
.bt-rec-title { font-size: 0.9rem; color: #0D3B2A; font-weight: 500; margin-bottom: 3px; }
.bt-rec-title strong { font-weight: 700; }
.bt-rec-avoid { font-size: 0.76rem; color: #dc2626; }
.bt-calendar {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px;
  align-items: flex-end; height: 60px; margin-bottom: 6px;
}
.bt-month {
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end; gap: 4px;
}
.bt-month-bar { width: 100%; border-radius: 4px 4px 0 0; display: block; min-height: 4px; transition: height 0.3s ease; }
.bt-month-name { font-size: 0.6rem; color: #5A6472; font-weight: 500; }
.bt-month--best .bt-month-name { color: #1A6B4A; font-weight: 700; }
.bt-cal-legend {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px;
}
.bt-leg-item { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: #5A6472; }
.bt-leg-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.bt-now {
  font-size: 0.8rem; color: #0D3B2A; background: #f5f7f5;
  border-radius: 8px; padding: 9px 12px; margin-bottom: 14px;
}
.bt-section-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #5A6472; margin: 12px 0 6px; }
.bt-fest-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 4px; }
.bt-fest-tag {
  font-size: 0.75rem; background: #FEF3DC; color: #92400E;
  padding: 4px 10px; border-radius: 50px; font-weight: 500;
}
.bt-tips-list {
  list-style: none; padding: 0; margin: 0 0 16px;
  display: flex; flex-direction: column; gap: 5px;
}
.bt-tips-list li { font-size: 0.79rem; color: #5A6472; padding-left: 14px; position: relative; }
.bt-tips-list li::before { content: '→'; position: absolute; left: 0; color: #1A6B4A; }

/* ─── Send Me 3 Options styles ──────────────────────────────────────────── */
.so-modal { max-width: 480px; }
.so-header { margin-bottom: 16px; }
.so-eyebrow {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: #1A6B4A; margin-bottom: 6px;
}
.so-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem; font-weight: 700; color: #0D3B2A; margin: 0 0 5px;
}
.so-sub { font-size: 0.82rem; color: #5A6472; margin: 0; }
.so-field-label {
  font-size: 0.78rem; font-weight: 600; color: #0D3B2A; margin-bottom: 8px;
}
.so-required { color: #dc2626; }

/* Chip group */
.so-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.so-chip {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 500;
  padding: 7px 13px; border-radius: 50px;
  border: 1.5px solid #E0E8E4; background: #fff;
  color: #1A1A1A; cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.so-chip:hover { border-color: #1A6B4A; background: #f5faf7; }
.so-chip--on  { border-color: #1A6B4A; background: #EAF4EE; color: #0D3B2A; font-weight: 600; }

/* Contact fields */
.so-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.so-input {
  width: 100%; padding: 10px 12px; border-radius: 8px;
  border: 1.5px solid #E0E8E4; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; color: #1A1A1A; box-sizing: border-box;
  transition: border-color 0.2s;
}
.so-input:focus { outline: none; border-color: #1A6B4A; }
.so-input::placeholder { color: #9aabb3; }
@media (max-width: 420px) { .so-contact { grid-template-columns: 1fr; } }

/* Error */
.so-error {
  font-size: 0.78rem; color: #dc2626;
  background: #fef2f2; border-radius: 6px;
  padding: 8px 12px; margin-top: 10px;
}

/* Submit */
.so-submit {
  width: 100%; margin-top: 12px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #fff; border: none; border-radius: 50px;
  padding: 13px 20px; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s;
}
.so-submit:hover { background: #1ebe59; }
.so-submit:disabled { opacity: 0.6; cursor: default; }
.so-privacy { font-size: 0.72rem; color: #9aabb3; text-align: center; margin: 8px 0 0; }

/* Success */
.so-success { text-align: center; padding: 20px 0 10px; }
.so-success-icon { font-size: 2.5rem; margin-bottom: 10px; }
.so-success h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.4rem; color: #0D3B2A; margin: 0 0 8px; }
.so-success p  { font-size: 0.85rem; color: #5A6472; }

/* ─── Compare Tours styles ──────────────────────────────────────────────── */
.ct-overlay { align-items: flex-start; padding-top: 40px; }
.ct-modal   { max-width: 720px; max-height: 88vh; }

/* Selected bar */
.ct-selected-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  min-height: 36px; margin-bottom: 12px;
}
.ct-sel-card {
  display: flex; align-items: center; gap: 6px;
  background: #EAF4EE; border: 1.5px solid #1A6B4A;
  border-radius: 50px; padding: 5px 10px 5px 14px;
  font-size: 0.78rem; color: #0D3B2A; font-weight: 600;
}
.ct-sel-remove {
  background: none; border: none; cursor: pointer;
  color: #1A6B4A; font-size: 1rem; line-height: 1; padding: 0 2px;
}
.ct-sel-remove:hover { color: #dc2626; }
.ct-slots-hint { font-size: 0.75rem; color: #9aabb3; }

/* Compare button */
.ct-compare-btn {
  width: 100%; margin-bottom: 14px;
  background: #0D3B2A; color: #fff; border: none; border-radius: 50px;
  padding: 12px 20px; font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s;
}
.ct-compare-btn:hover { background: #1A6B4A; }

/* Search */
.ct-search-wrap { margin-bottom: 12px; }

/* Package grid */
.ct-pkg-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  max-height: 340px; overflow-y: auto;
  padding-right: 4px;
}
.ct-pkg-card {
  background: #fff; border: 1.5px solid #E0E8E4; border-radius: 10px;
  padding: 10px 12px; cursor: pointer; text-align: left;
  font-family: 'DM Sans', sans-serif; transition: border-color 0.15s, background 0.15s;
  position: relative;
}
.ct-pkg-card:hover:not([disabled]) { border-color: #1A6B4A; background: #f5faf7; }
.ct-pkg-card--on  { border-color: #1A6B4A; background: #EAF4EE; }
.ct-pkg-card--full { opacity: 0.4; cursor: default; }
.ct-pkg-badge {
  font-size: 0.64rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; background: #FEF3DC; color: #92400E;
  padding: 2px 7px; border-radius: 50px; display: inline-block; margin-bottom: 4px;
}
.ct-pkg-title { display: block; font-size: 0.82rem; font-weight: 600; color: #0D3B2A; line-height: 1.3; }
.ct-pkg-meta  { display: block; font-size: 0.72rem; color: #5A6472; margin-top: 2px; }
.ct-pkg-check { display: block; font-size: 0.7rem; color: #1A6B4A; font-weight: 700; margin-top: 4px; }
.ct-no-results { font-size: 0.85rem; color: #5A6472; padding: 12px 0; grid-column: 1/-1; }

/* Comparison table */
.ct-comp-topbar { margin-bottom: 14px; }
.ct-table-wrap  { overflow-x: auto; }
.ct-table       { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.ct-col-head {
  background: #EAF4EE; padding: 10px 14px; text-align: left;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem; font-weight: 700; color: #0D3B2A;
  border-bottom: 2px solid #1A6B4A; min-width: 160px;
}
.ct-col-head--first { background: #f5faf7; }
.ct-head-link { color: inherit; text-decoration: none; }
.ct-head-link:hover { text-decoration: underline; }
.ct-row-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: #5A6472; padding: 10px 14px;
  background: #fafafa; white-space: nowrap; vertical-align: top;
  border-bottom: 1px solid #f0f0f0;
}
.ct-row-val {
  padding: 10px 14px; color: #1A1A1A; vertical-align: top;
  border-bottom: 1px solid #f0f0f0; min-width: 160px;
  line-height: 1.5;
}
.ct-table tbody tr:last-child td { border-bottom: none; }
.ct-view-btn {
  display: block; font-size: 0.76rem; font-weight: 600; color: #1A6B4A;
  text-decoration: none; margin-bottom: 6px;
}
.ct-view-btn:hover { text-decoration: underline; }
.ct-enquire-btn {
  display: block; width: 100%;
  background: #25D366; color: #fff; border: none; border-radius: 50px;
  padding: 8px 12px; font-family: 'DM Sans', sans-serif;
  font-size: 0.76rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s;
}
.ct-enquire-btn:hover { background: #1ebe59; }

@media (max-width: 520px) {
  .ct-pkg-grid { grid-template-columns: 1fr; }
  .ct-modal    { max-width: 100%; }
}

/* ─── Long Weekend Finder styles ────────────────────────────────────────── */
.lw-modal { max-width: 500px; }

/* Tabs */
.lw-tabs {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px;
}
.lw-tab {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 14px; border-radius: 10px; border: 1.5px solid #E0E8E4;
  background: #fff; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: border-color 0.15s, background 0.15s;
}
.lw-tab:hover { border-color: #1A6B4A; background: #f5faf7; }
.lw-tab--on   { border-color: #1A6B4A; background: #EAF4EE; }
.lw-tab-month { font-size: 0.72rem; font-weight: 700; color: #0D3B2A; }
.lw-tab-dur   { font-size: 0.68rem; color: #5A6472; margin-top: 1px; }

/* Weekend card */
.lw-weekend-card {
  background: linear-gradient(135deg, #EAF4EE 0%, #f5faf7 100%);
  border: 1.5px solid #1A6B4A; border-radius: 14px;
  padding: 16px 18px; margin-bottom: 16px;
}
.lw-weekend-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.lw-holiday-name { font-size: 0.82rem; font-weight: 700; color: #0D3B2A; margin-bottom: 4px; }
.lw-date-range {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem; font-weight: 700; color: #0D3B2A; line-height: 1.2;
}
.lw-nights { font-size: 0.75rem; color: #1A6B4A; font-weight: 600; margin-top: 3px; }
.lw-urgency {
  font-size: 0.72rem; font-weight: 700; padding: 5px 10px;
  border-radius: 50px; background: #f0f4f2; color: #5A6472;
  white-space: nowrap; flex-shrink: 0;
}
.lw-urgency--hot  { background: #FEF2F2; color: #dc2626; }
.lw-urgency--warm { background: #FEF3DC; color: #92400E; }
.lw-tip {
  font-size: 0.76rem; color: #1A6B4A; margin-top: 10px;
  padding-top: 10px; border-top: 1px dashed #c8dfd0;
}

/* Package list */
.lw-pkg-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: #5A6472; margin-bottom: 8px;
}
.lw-pkg-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 4px; }
.lw-pkg-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1.5px solid #E0E8E4; border-radius: 10px;
  padding: 10px 14px; text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.lw-pkg-card:hover { border-color: #1A6B4A; box-shadow: 0 2px 10px rgba(0,0,0,0.07); }
.lw-pkg-title { font-size: 0.84rem; font-weight: 600; color: #0D3B2A; line-height: 1.3; }
.lw-pkg-meta  { font-size: 0.74rem; color: #5A6472; margin-top: 2px; }
.lw-no-match  { font-size: 0.82rem; color: #5A6472; }
.lw-no-match a { color: #1A6B4A; }

/* ─── Consultation Booker styles ────────────────────────────────────────── */
.cb-modal { max-width: 480px; }
.cb-step-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: #1A6B4A; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.cb-date-pill {
  background: #EAF4EE; color: #0D3B2A; font-weight: 600;
  padding: 3px 10px; border-radius: 50px; text-transform: none;
  letter-spacing: 0; font-size: 0.72rem;
}

/* Date grid */
.cb-date-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 4px;
}
.cb-date-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 6px; border-radius: 12px;
  border: 1.5px solid #E0E8E4; background: #fff;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: border-color 0.15s, background 0.15s, transform 0.12s;
}
.cb-date-card:hover { border-color: #1A6B4A; background: #f5faf7; transform: translateY(-2px); }
.cb-date-card--on   { border-color: #1A6B4A; background: #EAF4EE; }
.cb-date-day { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #5A6472; }
.cb-date-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #0D3B2A; line-height: 1.1; }
.cb-date-mon { font-size: 0.65rem; color: #5A6472; margin-top: 1px; }
@media (max-width: 420px) { .cb-date-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; } }

/* Slot grid */
.cb-slots-grid { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.cb-slot-card {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px; border-radius: 12px;
  border: 1.5px solid #E0E8E4; background: #fff;
  cursor: pointer; font-family: 'DM Sans', sans-serif; text-align: left;
  transition: border-color 0.15s, background 0.15s;
}
.cb-slot-card:hover { border-color: #1A6B4A; background: #f5faf7; }
.cb-slot-card--on   { border-color: #1A6B4A; background: #EAF4EE; }
.cb-slot-icon { font-size: 1.3rem; flex-shrink: 0; }
.cb-slot-time { font-size: 0.88rem; font-weight: 600; color: #0D3B2A; flex: 1; }
.cb-slot-note { font-size: 0.72rem; color: #5A6472; }

/* Summary bar */
.cb-summary-bar {
  display: flex; gap: 16px; flex-wrap: wrap;
  background: #EAF4EE; border-radius: 10px; padding: 10px 14px;
  margin-bottom: 14px; font-size: 0.78rem; color: #0D3B2A; font-weight: 500;
}

/* Fields */
.cb-fields { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }

/* What to expect */
.cb-what-expect {
  background: #f5f7f5; border-radius: 10px; padding: 12px 14px; margin-bottom: 14px;
}
.cb-what-title { font-size: 0.76rem; font-weight: 700; color: #0D3B2A; margin-bottom: 8px; }
.cb-what-list  { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.cb-what-list li { font-size: 0.78rem; color: #3a7a5a; }

/* Confirm screen */
.cb-confirm { text-align: center; padding: 8px 0 12px; }
.cb-confirm-icon  { font-size: 2.8rem; margin-bottom: 10px; }
.cb-confirm-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem; font-weight: 700; color: #0D3B2A; margin: 0 0 6px;
}
.cb-confirm-sub { font-size: 0.85rem; color: #5A6472; margin-bottom: 18px; }
.cb-confirm-card {
  background: #EAF4EE; border: 1.5px solid #1A6B4A;
  border-radius: 12px; padding: 14px 18px; margin-bottom: 16px; text-align: left;
}
.cb-confirm-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; padding: 5px 0; border-bottom: 1px solid #c8dfd0;
}
.cb-confirm-row:last-child { border-bottom: none; }
.cb-confirm-row span { color: #5A6472; }
.cb-confirm-row strong { color: #0D3B2A; }
.cb-confirm-tips { background: #f5f7f5; border-radius: 10px; padding: 12px 14px; text-align: left; }
