/* ===========================
   SINGLE-TOUR.CSS
   Used by: kandy-city-tour.html, round-tour.html
   =========================== */

/* ── SINGLE TOUR HERO ── */
.st-hero {
  position: relative; min-height: 65vh;
  display: flex; align-items: center; overflow: hidden;
}
.st-hero-bg { position: absolute; inset: 0; }
.st-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.st-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(10,28,18,.78) 0%, rgba(10,28,18,.5) 60%, rgba(0,0,0,.25) 100%);
}
.st-hero-content {
  position: relative; z-index: 2;
  padding-top: 88px; padding-bottom: 110px;
}
.st-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800;
  color: var(--white); line-height: 1.13; margin-bottom: 16px; max-width: 760px;
}
.st-hero-sub {
  color: rgba(255,255,255,.72); font-size: .97rem;
  line-height: 1.7; margin-bottom: 32px; max-width: 560px;
}
.st-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── INTRO ── */
.st-intro { background: var(--white); }
.st-intro-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.st-intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700;
  margin-bottom: 18px; color: var(--ink);
}
.st-intro-text p { color: var(--muted); font-size: .93rem; line-height: 1.78; margin-bottom: 14px; }
.st-intro-img img {
  width: 100%; height: 360px; object-fit: cover;
  border-radius: 20px; box-shadow: 0 8px 40px rgba(0,0,0,.12);
}

/* ── HIGHLIGHTS ── */
.st-highlights { background: #f4f4f0; }
.st-highlights h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem); font-weight: 700; margin-bottom: 8px;
}
.st-highlights-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 40px;
}
.st-hl-card {
  background: var(--white); border-radius: 14px; padding: 32px 16px;
  text-align: center; box-shadow: 0 2px 14px rgba(0,0,0,.05);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1.5px solid #eeeeea;
}
.st-hl-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.st-hl-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: rgba(28,48,40,.08); display: flex;
  align-items: center; justify-content: center; margin: 0 auto 12px;
}
.st-hl-icon svg { width: 27px; height: 27px; stroke: var(--forest); }
.st-hl-card span { font-size: .9rem; font-weight: 600; color: var(--ink); }

/* ── TOUR GALLERY ── */
.tour-gallery { background: var(--white); }
.tour-gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  margin-bottom: 36px;
}
.tour-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tour-gallery-grid img {
  width: 100%; height: 230px; object-fit: cover; display: block;
  border-radius: 16px; box-shadow: var(--shadow-card);
}

/* ── ITINERARY TIMELINE ── */
.st-itinerary { background: var(--white); }
.st-itinerary h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 700; margin-bottom: 8px;
}
.itinerary-timeline {
  position: relative; max-width: 820px; margin: 48px auto 0;
}
.itinerary-timeline::before {
  content: ''; position: absolute;
  left: 50%; transform: translateX(-50%);
  top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--forest), var(--gold));
}
.it-item {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 24px; align-items: center; margin-bottom: 40px;
}
.it-item.left .it-content { grid-column: 1; text-align: right; }
.it-item.left .it-time { grid-column: 2; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.it-item.right .it-time { grid-column: 2; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.it-item.right .it-content { grid-column: 3; order: 1; }
.it-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.it-content p { color: var(--muted); font-size: .85rem; line-height: 1.65; }
.it-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px currentColor;
  z-index: 1;
}
.it-dot.gold { color: var(--gold); background: var(--gold); }
.it-dot.forest { color: var(--forest); background: var(--forest); }
.it-time-label {
  font-size: .75rem; font-weight: 700; color: var(--gold);
  letter-spacing: .05em; white-space: nowrap;
}

/* ── PRICE + INCLUDED ── */
.st-price-section { background: var(--forest); }
.st-price-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start;
}
.st-price-card {
  background: var(--forest-mid); border-radius: 20px;
  padding: 36px 32px; border: 1px solid rgba(255,255,255,.1);
}
.st-price-label {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold-light); margin-bottom: 8px; display: block;
}
.st-price-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 12px;
}
.st-price-amount {
  font-size: 1rem; color: rgba(255,255,255,.6); margin-bottom: 16px;
}
.st-price-amount span { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold-light); }
.st-price-amount small { font-size: .82rem; }
.st-price-note { color: rgba(255,255,255,.55); font-size: .82rem; line-height: 1.65; margin-bottom: 24px; }
.st-incl-excl {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 20px; margin-top: 20px;
}
.st-included, .st-excluded {
  background: rgba(255,255,255,.05); border-radius: 14px;
  padding: 24px 20px; border: 1px solid rgba(255,255,255,.08);
}
.st-included h3, .st-excluded h3 {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 700; margin-bottom: 16px;
  color: var(--white);
}
.st-included h3 svg { stroke: var(--gold-light); }
.st-excluded h3 svg { stroke: #f08080; }
.st-included ul, .st-excluded ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.st-included li, .st-excluded li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.72); line-height: 1.45;
}
.st-included li svg, .st-excluded li svg { flex-shrink: 0; margin-top: 1px; }

/* ── WHY CHOOSE ── */
.st-why { background: #f4f4f0; }
.st-why h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 700; margin-bottom: 40px;
}
.st-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.st-why-card {
  background: var(--white); border-radius: 16px; padding: 32px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.st-why-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.1); }
.st-why-icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: rgba(28,48,40,.08); display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.st-why-icon svg { width: 22px; height: 22px; stroke: var(--forest); }
.st-why-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.st-why-card p { color: var(--muted); font-size: .85rem; line-height: 1.65; }

/* ── BOTTOM CTA DARK ── */
.st-bottom-cta {
  position: relative; padding: 80px 0;
  display: flex; align-items: center;
}
.st-bottom-cta-bg { position: absolute; inset: 0; }
.st-bottom-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.st-bottom-cta-overlay {
  position: absolute; inset: 0;
  background: rgba(8,22,14,.82);
}
.st-bottom-cta-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 700px; margin: 0 auto;
}
.st-cta-eyebrow {
  display: block; font-size: .72rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold-light); margin-bottom: 14px;
}
.st-bottom-cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 700;
  color: var(--white); margin-bottom: 28px; line-height: 1.35;
}
.st-bottom-cta-contacts {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap; margin-bottom: 28px;
}
.st-cta-contact {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.7); text-decoration: none;
  font-size: .88rem; font-weight: 500;
  transition: color var(--transition);
}
.st-cta-contact:hover { color: var(--gold-light); }
.st-cta-contact svg { stroke: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .st-price-grid { grid-template-columns: 1fr; }
  .st-incl-excl { grid-template-columns: 1fr 1fr; }
  .st-highlights-grid { grid-template-columns: repeat(3, 1fr); }
  .tour-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .st-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .st-why-grid { grid-template-columns: 1fr; }
  .st-highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .st-incl-excl { grid-template-columns: 1fr; }
  .itinerary-timeline::before { left: 20px; }
  .it-item { grid-template-columns: 40px 1fr; }
  .it-item.left .it-content { grid-column: 2; text-align: left; }
  .it-item.left .it-time { grid-column: 1; }
  .it-item.right .it-time { grid-column: 1; order: 0; }
  .it-item.right .it-content { grid-column: 2; order: 1; }
}
@media (max-width: 480px) {
  .st-hero-title { font-size: 1.8rem; }
  .st-hero-btns { flex-direction: column; }
  .tour-gallery-grid { grid-template-columns: 1fr; }
}
