/* Shared Itinerary Layout Styles */

:root {
  --orange: #e8560a;
  --orange-m: #f47820;
  --orange-l: #fef0e8;
  --cream: #fdf6f0;
  --cream-d: #f5e8dc;
  --text: #1a1a1a;
  --muted: #7a6a5a;
  --illus: rgba(232,86,10,0.13);
  --illus-stroke: rgba(232,86,10,0.2);
  --blue: #1a33cc;
  --snow: #f4f7ff;
  --border: #d1d5db;
  --gold: #e8b84b;
  --blue-dark: #f06f1a;
}

/* ── BANNER ── */
.hs-banner {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}

.hs-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0px;
  background-size: cover;
  background-position: center;
}

/* Pill */
.hs-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(232,86,10,0.25);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 20px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.hs-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-m);
}

/* Headline */
.hs-h1 {
  font-family: 'Fraunces', 'Playfair Display', serif;
  font-size: clamp(32px, 6.5vw, 78px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.07;
  margin-bottom: 18px;
  max-width: 800px;
}

.hs-h1 .brand {
  color: var(--orange);
  font-style: italic;
  position: relative;
  display: inline-block;
}

/* Sub */
.hs-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: #ffffff;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* Buttons */
.hs-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 52px;
}

.hs-btn-p {
  background: var(--orange);
  color: #fff !important;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(232,86,10,0.35);
  transition: all 0.25s;
}

.hs-btn-o {
  background: transparent;
  color: var(--orange) !important;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--orange);
  transition: all 0.2s;
}

/* Trust badges */
.hs-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hs-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}

/* ── HIGHLIGHTS BAR ── */
.highlights {
  background: #013b6f;
  border-bottom: 7px solid #ff8b42;
  padding: 11px 0;
  color: white !important;
}

.highlight-item {
  text-align: center;
}

.highlight-item .icon {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.highlight-item .label {
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlight-item .value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

/* ── TABS ── */
.tab-bar {
  background: #fff;
  border-bottom: 2px solid var(--border);
  padding: 0;
  position: sticky;
  top: 57px;
  z-index: 90;
}

.tab-bar .nav-link {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 16px 24px;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  margin-bottom: -2px;
  letter-spacing: 0.3px;
}

.tab-bar .nav-link.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
  background: transparent;
}

/* ── SECTION HEADINGS ── */
.sec-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--title-dark);
  margin-bottom: 8px;
}

.sec-underline {
  width: 40px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ── DAY ACCORDION ── */
.day-accordion .accordion-button {
  background: #debf7442;
  color: #000000;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px !important;
}

.day-accordion .accordion-button:not(.collapsed) {
  background: #ffe0b6;
  color: #000000;
  box-shadow: none;
}

.day-accordion .accordion-body {
  background: var(--snow);
  border-radius: 0 0 6px 6px;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── PACKAGE COST CARD ── */
.cost-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  padding: 25px !important;
  box-shadow: 0 4px 24px rgb(26 59 184 / 21%);
}

.cost-card .cost-header {
  background: #ffbb5d73;
  color: #000000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 14px 20px;
}

.cost-card .cost-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}

.cost-card .cost-row .amount {
  font-weight: 700;
  color: var(--blue);
}

/* ── NOTES ── */
.notes-card {
  background: var(--snow);
  border-left: 4px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
}

.notes-card ul {
  padding-left: 0;
  list-style: none;
}

.notes-card ul li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.notes-card ul li::before {
  content: '•';
  color: var(--blue);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* ── POLICY TABS ── */
.policy-tabs .nav-link {
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 6px 6px 0 0;
  margin-right: 4px;
}

.policy-tabs .nav-link.active {
  background: var(--blue-dark);
  color: #fff;
}

.policy-content {
  background: var(--snow);
  border: 1px solid var(--border);
  border-radius: 0 8px 8px 8px;
  padding: 24px 28px;
}

.policy-content p, .policy-content li {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── TRUST STRIP ── */
.trust-strip {
  padding: 24px 0;
  color: #000000;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.trust-item i {
  font-size: 1.4rem;
  color: var(--gold);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hs-banner { min-height: 70svh !important; }
  .hs-h1 { font-size: 32px; }
  .hs-btns { flex-direction: column; align-items: center; }
  .hs-btn-p, .hs-btn-o { width: 100%; max-width: 300px; justify-content: center; }
  .tab-bar { overflow-x: auto; white-space: nowrap; top: 56px; }
}
