/* ═══════════════════════════════════════════
   TOUR PAGE STYLES — Mikumi Zanzibar Day Trips
   ═══════════════════════════════════════════ */

/* ── Hero ── */
.tour-hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 820px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.tour-hero-slider { position: absolute; inset: 0; }
.tour-hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.tour-hero-slide.active { opacity: 1; }
.tour-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,8,1,.88) 0%, rgba(15,8,1,.35) 55%, transparent 100%);
}
.tour-hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 0 56px; color: #fff;
}
.tour-badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .8rem; }
.tour-badge {
  padding: 5px 14px; border-radius: 40px;
  font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.tour-badge-gold  { background: var(--gold); color: #fff; }
.tour-badge-glass { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.tour-hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem); line-height: 1.1;
  max-width: 820px; text-shadow: 0 2px 20px rgba(0,0,0,.4);
  color: #ffffff !important;
}
.tour-stats { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: .8rem; }
.tour-stat  { display: flex; align-items: center; gap: .55rem; font-size: .9rem; opacity: .92; }
.tour-hero-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4);
  cursor: pointer; transition: all .3s; border: none; padding: 0;
}
.hero-dot.active { background: var(--gold); transform: scale(1.3); }

/* ── Quick Nav ── */
.tour-quicknav {
  background: #fff; border-bottom: 2px solid var(--cream);
  position: sticky; top: 74px; z-index: 40;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.tour-quicknav-inner {
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; scrollbar-width: none;
}
.tour-quicknav-inner::-webkit-scrollbar { display: none; }
.tnav-link {
  display: flex; align-items: center; gap: .4rem;
  padding: 16px 18px; font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: #666;
  text-decoration: none; white-space: nowrap;
  border-bottom: 3px solid transparent; transition: all .2s;
}
.tnav-link:hover, .tnav-link.active { color: var(--gold); border-color: var(--gold); }

/* ── Layout ── */
.tour-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 3rem; padding: 60px 0 80px; align-items: start;
}
@media(max-width:1024px) {
  .tour-layout { grid-template-columns: 1fr; }
  .tour-sidebar { order: 1; }
}
.tour-main-col { min-width: 0; }

/* ── Sections ── */
.tour-section { padding: 52px 0; border-bottom: 1px solid var(--cream); }
.tour-section:last-child { border-bottom: none; }
.ts-label {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .5rem;
}
.ts-title { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--earth); margin-bottom: .7rem; }
.ts-desc { color: #555; line-height: 1.75; max-width: 660px; font-size: .97rem; }

/* ── Highlights ── */
.highlights-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem; margin-top: 1.8rem;
}
.highlight-card {
  background: #fff; border: 1.5px solid var(--cream);
  border-radius: 16px; padding: 1.4rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.highlight-card:hover {
  border-color: var(--gold); box-shadow: 0 6px 24px rgba(200,135,42,.14);
  transform: translateY(-3px);
}
.hl-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.hl-text h4 { font-size: .93rem; color: var(--earth); margin-bottom: .2rem; }
.hl-text p  { font-size: .82rem; color: #777; line-height: 1.5; }

/* ── Trip Map ── */
.map-grid {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 2rem; margin-top: 1.8rem; align-items: start;
}
@media(max-width:768px) { .map-grid { grid-template-columns: 1fr; } }
.map-embed-wrap { border-radius: 18px; overflow: hidden; box-shadow: 0 8px 36px rgba(0,0,0,.12); }
.map-embed-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }
.map-facts { display: flex; flex-direction: column; gap: 1rem; }
.map-fact {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--ivory); border-radius: 14px; padding: 1.1rem 1.3rem;
}
.mf-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.mf-text h5 { font-size: .82rem; font-weight: 700; color: var(--earth); margin-bottom: .15rem; }
.mf-text p  { font-size: .8rem; color: #666; }

/* ── Itinerary ── */
.itinerary-timeline { margin-top: 2rem; display: flex; flex-direction: column; }
.it-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 0 1.5rem; position: relative;
}
.it-item::before {
  content: ''; position: absolute; left: 39px;
  top: 52px; bottom: 0; width: 2px; background: var(--cream);
}
.it-item:last-child::before { display: none; }
.it-node { display: flex; flex-direction: column; align-items: center; gap: 6px; padding-top: 4px; }
.it-dot {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .85rem; font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  box-shadow: 0 3px 12px rgba(200,135,42,.35); z-index: 1; flex-shrink: 0;
}
.it-time { font-size: .68rem; color: #999; font-weight: 600; text-align: center; white-space: nowrap; }
.it-body { padding: 0 0 2.5rem; }
.it-body h3 { font-size: 1.1rem; color: var(--earth); margin-bottom: .4rem; }
.it-body > p { font-size: .9rem; color: #666; line-height: 1.7; margin-bottom: .8rem; }
.it-activities { display: flex; flex-wrap: wrap; gap: .4rem; }
.it-tag {
  background: var(--ivory); border: 1px solid var(--cream);
  border-radius: 20px; padding: 3px 10px;
  font-size: .75rem; color: #555; font-weight: 500;
}

/* ── Photo strip inside itinerary day ── */
.it-photos { display: flex; gap: .6rem; margin-top: .8rem; flex-wrap: wrap; }
.it-photo { width: 100px; height: 70px; object-fit: cover; border-radius: 8px; }

/* ── Includes ── */
.incl-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 1.8rem;
}
@media(max-width:640px) { .incl-two-col { grid-template-columns: 1fr; } }
.incl-box { border-radius: 18px; padding: 1.8rem; }
.incl-box-yes { background: #f0faf4; border: 1.5px solid #a8d8b6; }
.incl-box-no  { background: #fdf4f4; border: 1.5px solid #f0baba; }
.incl-box h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .5rem;
}
.incl-box-yes h3 { color: #1e6e3a; }
.incl-box-no  h3 { color: #9b2020; }
.incl-item {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: .55rem 0; border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: .9rem; color: #444;
}
.incl-item:last-child { border-bottom: none; }

/* ── Pricing ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.2rem; margin-top: 1.8rem;
}
.pricing-card {
  background: #fff; border: 2px solid var(--cream);
  border-radius: 18px; padding: 1.6rem 1.4rem;
  text-align: center; transition: all .25s; position: relative;
}
.pricing-card:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(200,135,42,.15); }
.pricing-card.featured { border-color: var(--gold); background: linear-gradient(160deg, #fffdf5, #fff8e8); }
.feat-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: .68rem; font-weight: 700;
  padding: 3px 12px; border-radius: 20px; letter-spacing: .06em;
  text-transform: uppercase; white-space: nowrap;
}
.pc-group { font-size: .82rem; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .4rem; }
.pc-price {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  font-weight: 700; color: var(--earth); line-height: 1; margin-bottom: .2rem;
}
.pc-per  { font-size: .8rem; color: #999; }
.pc-note { font-size: .78rem; color: #666; margin-top: .6rem; line-height: 1.4; }

/* ── Add-ons ── */
.addons-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem; margin-top: 1.8rem;
}
.addon-card {
  background: #fff; border: 1.5px solid var(--cream);
  border-radius: 16px; padding: 1.4rem 1.6rem;
  display: flex; gap: 1.1rem; align-items: flex-start; transition: all .25s;
}
.addon-card:hover { border-color: var(--gold); box-shadow: 0 5px 20px rgba(200,135,42,.12); }
.addon-icon {
  font-size: 2rem; flex-shrink: 0; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ivory); border-radius: 12px;
}
.addon-info h4 { font-size: .95rem; color: var(--earth); margin-bottom: .25rem; }
.addon-info p  { font-size: .82rem; color: #777; line-height: 1.5; }
.addon-price   { font-size: .88rem; font-weight: 700; color: var(--gold); margin-top: .4rem; }

/* ── Similar Trips ── */
.similar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2rem;
}
@media(max-width:850px) { .similar-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:520px) { .similar-grid { grid-template-columns: 1fr; } }

.similar-card {
  background: #ffffff; border: none;
  border-radius: 24px; overflow: hidden; text-decoration: none; display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,.06); 
  transition: transform .3s ease, box-shadow .3s ease;
}
.similar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,.12);
}
.similar-img-wrap {
  width: 100%; height: 230px; overflow: hidden;
}
.similar-img {
  width: 100%; height: 100%; object-fit: cover;
}
.similar-body {
  padding: 1.6rem 1.4rem; background: #fff;
}
.similar-tag {
  font-size: .72rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: .6rem;
  display: inline-block;
}
.similar-title {
  font-size: 1.15rem; font-weight: 700; color: #111111;
  line-height: 1.35; margin-bottom: 1.4rem; font-family: system-ui, -apple-system, sans-serif;
}
.similar-meta {
  display: flex; justify-content: space-between; align-items: center;
}
.similar-duration {
  font-size: .85rem; color: #999999; display: flex; align-items: center; gap: .35rem;
}
.similar-duration i, .similar-duration svg {
  color: #aaaaaa; vertical-align: middle;
}
.similar-price {
  font-size: .88rem; font-weight: 700; color: var(--gold);
}
.similar-price strong {
  font-size: 1.05rem; color: var(--gold); margin-left: 2px;
}

/* ── Sidebar ── */
.tour-sidebar { position: relative; top: auto; }
.sidebar-booking {
  background: #fff; border: 2px solid var(--cream);
  border-radius: 20px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.1);
}
.sb-price-bar {
  background: linear-gradient(135deg, var(--earth), #2c1a08);
  padding: 1.8rem 1.6rem; color: #fff; text-align: center;
}
.sb-from { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; opacity: .7; margin-bottom: .2rem; }
.sb-amount {
  font-family: 'Cormorant Garamond', serif; font-size: 3.2rem;
  font-weight: 700; color: var(--gold-light); line-height: 1;
}
.sb-per { font-size: .88rem; opacity: .75; margin-top: .2rem; }
.sb-body { padding: 1.6rem; }
.sb-facts { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.6rem; }
.sb-fact { display: flex; align-items: center; gap: .8rem; font-size: .88rem; color: #555; }
.sb-fact-icon { font-size: 1.1rem; width: 28px; text-align: center; }
.sb-fact strong { color: var(--earth); }
.sb-btn {
  display: block; width: 100%; text-align: center; padding: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff; font-weight: 700; font-size: 1rem; border-radius: 12px;
  text-decoration: none; transition: all .25s;
  box-shadow: 0 4px 16px rgba(200,135,42,.35); margin-bottom: .8rem;
}
.sb-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,135,42,.45); }
.sb-wa {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: .85rem; background: #f0fdf4;
  color: #166534; border: 1.5px solid #86efac; border-radius: 12px;
  font-weight: 600; font-size: .88rem; text-decoration: none; transition: all .25s;
}
.sb-wa:hover { background: #dcfce7; }
.sb-wa svg { width: 18px; height: 18px; fill: #16a34a; }
.sb-divider { height: 1px; background: var(--cream); margin: 1.4rem 0; }
.sb-note { font-size: .78rem; color: #999; text-align: center; line-height: 1.5; }

/* ── CTA banner ── */
.tour-cta-banner {
  background: linear-gradient(135deg, var(--earth) 0%, #2c3e1a 100%);
  padding: 70px 0; text-align: center; color: #fff;
}
.tour-cta-banner h2 { 
  font-size: clamp(1.8rem, 4vw, 3rem); 
  margin-bottom: .8rem; 
  color: #ffffff !important; /* Forced white title */
}
.tour-cta-banner p  { opacity: .85; max-width: 540px; margin: 0 auto 2rem; }
.tour-cta-actions   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Responsive tweaks ── */
@media(max-width:480px) {
  .it-item { grid-template-columns: 60px 1fr; }
  .it-dot  { width: 34px; height: 34px; font-size: .75rem; }
  .it-item::before { left: 29px; }
  .tour-layout { padding: 30px 0 50px; gap: 2rem; }
}