/*
Theme Name: WanderLust Tours
Theme URI: https://example.com/wanderlust
Author: WanderLust
Author URI: https://example.com
Description: A premium travel and cab booking WordPress theme with tour packages, fleet showcase, WhatsApp booking, testimonials, and full Rajasthan tourism design. Perfect for travel agencies, cab services, and tour operators.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wanderlust
Tags: travel, tour, booking, cab, rajasthan, one-page, responsive, custom-colors, custom-logo
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark:  #9B7B2E;
  --deep:       #1A1208;
  --warm-dark:  #261C0A;
  --warm-mid:   #3D2E10;
  --cream:      #FDF6E3;
  --cream-mid:  #F5E9C8;
  --sand:       #E8D5A3;
  --rust:       #C0392B;
  --rust-light: #E74C3C;
  --text-main:  #2C1A06;
  --text-mid:   #5C4A2A;
  --text-light: #8C7A5A;
  --white:      #FFFFFF;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.18);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.24);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;
  --font-accent:  'Cinzel', 'Trajan Pro', serif;
  --transition:   all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-label {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--deep);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.8;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: var(--gold-dark);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #1ebe57;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-rust {
  background: var(--rust);
  color: var(--white);
  border-color: var(--rust);
}
.btn-rust:hover {
  background: var(--rust-light);
  transform: translateY(-2px);
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: linear-gradient(90deg, var(--warm-dark) 0%, var(--warm-mid) 50%, var(--warm-dark) 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 0 20px;
  position: relative;
  z-index: 1001; /* above sticky header */
}

.ann-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  flex-wrap: wrap;
  padding: 6px 0;
}

/* Offer text */
.ann-text {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Separator dot */
.ann-divider {
  color: rgba(201, 168, 76, 0.4);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Buttons row */
.ann-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Base button */
.ann-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  line-height: 1;
}

.ann-btn-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.ann-btn-label {
  font-weight: 700;
}

.ann-btn-num,
.ann-btn-sub {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.85;
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 7px;
  margin-left: 2px;
}

/* Call Now — gold outlined */
.ann-btn-call {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-light);
  border: 1.5px solid rgba(201, 168, 76, 0.45);
}

.ann-btn-call:hover {
  background: var(--gold-dark);
  color: var(--white);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(155, 123, 46, 0.4);
}

/* WhatsApp — green solid */
.ann-btn-wa {
  background: #25D366;
  color: var(--white);
  border: 1.5px solid #1ebe57;
}

.ann-btn-wa:hover {
  background: #1ebe57;
  border-color: #18b04e;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
}

/* ── Responsive ── */

/* Tablet: hide phone number, keep label */
@media (max-width: 900px) {
  .ann-btn-num { display: none; }
  .ann-btn-sub { display: none; }
  .ann-btn { padding: 6px 12px; }
}

/* Mobile: hide offer text & divider, centre the buttons */
@media (max-width: 600px) {
  .ann-inner {
    justify-content: center;
    padding: 8px 0;
  }
  .ann-text    { display: none; }
  .ann-divider { display: none; }
  .ann-actions { gap: 10px; }
  .ann-btn { padding: 8px 18px; font-size: 0.84rem; }
  .ann-btn-icon { font-size: 1rem; }
}

/* Very small: stack buttons vertically */
@media (max-width: 360px) {
  .ann-actions { flex-direction: column; gap: 6px; width: 100%; }
  .ann-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 18, 8, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-emblem {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 16px;
  color: var(--deep);
  font-weight: 700;
}

.logo-text .name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}

.logo-text .tagline {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  gap: 8px;
  align-items: center;
}

.main-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  transition: var(--transition);
  border-radius: 2px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

/* Overlay: on desktop darken left side only; on mobile darken fully */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(26,18,8,0.95) 0%, rgba(26,18,8,0.75) 50%, rgba(26,18,8,0.4) 100%),
    url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1920&q=80') center/cover no-repeat;
  background-attachment: scroll;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 1;
}

/* Wrapper that holds content + stats, fills hero height */
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 200px; /* bottom pad leaves room for abs stats strip */
}

.hero-content {
  max-width: 700px;
  width: 100%;
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-badge .stars { color: var(--gold); font-size: 0.85rem; }
.hero-badge .text  { color: var(--gold-light); font-size: 0.82rem; font-weight: 500; line-height: 1.4; }

/* ── Title ── */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  word-break: break-word;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Description ── */
.hero-desc {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 560px;
}

/* ── Price pills ── */
.hero-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  font-size: clamp(0.8rem, 2vw, 0.92rem);
  color: var(--gold-light);
  margin-bottom: 36px;
  font-weight: 500;
  line-height: 1.6;
}

.hero-prices span { margin: 0 6px; opacity: 0.55; }

/* ── CTA buttons ── */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  align-items: center;
}

.hero-actions .btn {
  white-space: nowrap;
}

/* ── Note line ── */
.hero-reply {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-reply::before {
  content: '⚡';
  font-size: 0.9rem;
}

/* ── Stats strip — absolutely pinned to bottom of hero ── */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  backdrop-filter: blur(8px);
  max-width: 940px;
  margin-left: auto;
}

.stat-item {
  background: rgba(26, 18, 8, 0.88);
  padding: 18px 12px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: clamp(0.62rem, 1.2vw, 0.72rem);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
  line-height: 1.35;
}

/* ============================================================
   BOOKING WIDGET
   ============================================================ */
.booking-section {
  background: var(--cream);
  padding: 60px 0;
  border-bottom: 1px solid var(--sand);
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.booking-header {
  background: linear-gradient(135deg, var(--deep), var(--warm-mid));
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-header h2 {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 1.4rem;
}

.booking-header p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 4px;
}

.booking-badge {
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 6px 16px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
}

.booking-form {
  padding: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group select,
.form-group input {
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-main);
  background: var(--white);
  transition: var(--transition);
  font-family: var(--font-body);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.booking-note {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   TOURS SECTION
   ============================================================ */
.tours-section { background: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Tour Card ── */
.tour-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.4);
}

/* ── Image link wrapper ── */
.tour-img-link {
  display: block;
  text-decoration: none;
}

/* ── Image container ── */
.tour-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

/* Placeholder when no featured image */
.tour-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(26,18,8,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3rem;
}

.tour-card:hover .tour-img img { transform: scale(1.08); }

/* ── Hover overlay "View Details" ── */
.tour-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 8, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.tour-img-overlay span {
  background: var(--gold-dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transform: translateY(10px);
  transition: transform 0.35s ease;
}

.tour-card:hover .tour-img-overlay           { opacity: 1; }
.tour-card:hover .tour-img-overlay span      { transform: translateY(0); }

/* ── Badges ── */
.tour-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  z-index: 1;
}

.badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.badge-type {
  background: rgba(26, 18, 8, 0.85);
  color: var(--gold-light);
  backdrop-filter: blur(4px);
}

.badge-offer {
  background: var(--rust);
  color: var(--white);
}

/* ── Body ── */
.tour-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ── Title (linked) ── */
.tour-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 8px;
  line-height: 1.3;
}

.tour-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.tour-title a:hover { color: var(--gold-dark); }

.tour-desc {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

/* ── Footer row ── */
.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-mid);
  flex-wrap: wrap;
}

.tour-price .original {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: line-through;
  display: block;
}

.tour-price .current {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

/* ── Dual action buttons ── */
.tour-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

/* "Details" — outlined */
.tour-details {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--sand);
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.tour-details:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  background: rgba(201, 168, 76, 0.07);
}

/* "Book" — solid dark */
.tour-book {
  background: var(--deep);
  color: var(--gold-light);
  border: 1.5px solid var(--gold-dark);
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.tour-book:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── "View All Tours" button ── */
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  background: transparent;
  color: var(--deep);
  border: 2px solid var(--deep);
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-outline-dark:hover {
  background: var(--deep);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 18, 8, 0.2);
}

/* ============================================================
   FLEET SECTION
   ============================================================ */
.fleet-section { background: var(--cream); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  border: 1.5px solid var(--sand);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.fleet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  opacity: 0;
  transition: var(--transition);
}

.fleet-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.fleet-card:hover::before { opacity: 1; }

.fleet-card.popular {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.fleet-card.popular::before { opacity: 1; }

.fleet-popular-badge {
  position: absolute;
  top: 16px;
  right: -24px;
  background: var(--gold-dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
  transform-origin: center;
  letter-spacing: 1px;
}

.fleet-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
  display: block;
}

.fleet-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 4px;
}

.fleet-cap {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.fleet-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.fleet-price-unit {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.fleet-features {
  text-align: left;
  margin-bottom: 20px;
}

.fleet-features li {
  font-size: 0.83rem;
  color: var(--text-mid);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fleet-features li::before {
  content: '✓';
  color: #25D366;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============================================================
   ROUTES SECTION
   ============================================================ */
.routes-section { background: var(--white); }

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

.route-card {
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
  cursor: pointer;
}

.route-card:hover {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.route-arrow {
  font-size: 1.2rem;
  margin-bottom: 8px;
  display: block;
}

.route-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 4px;
}

.route-details {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.route-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* ============================================================
   ABOUT / WHY US
   ============================================================ */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img .main-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img .accent-photo {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-since {
  position: absolute;
  top: 24px;
  left: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-since .year { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.about-since .label { font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; opacity: 0.85; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.12);
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--deep);
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews-section {
  background: linear-gradient(135deg, var(--deep) 0%, var(--warm-mid) 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 60px;
  font-family: var(--font-heading);
  font-size: 300px;
  color: rgba(201, 168, 76, 0.05);
  line-height: 1;
  pointer-events: none;
}

.reviews-section .section-title { color: var(--white); }
.reviews-section .section-subtitle { color: rgba(255,255,255,0.65); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}

.review-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--deep);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 700;
  color: var(--gold-light);
  font-size: 0.88rem;
}

.reviewer-loc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}

.faq-item {
  border-bottom: 1px solid var(--cream-mid);
  padding: 20px 0;
}

.faq-question {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  line-height: 1;
}

.faq-answer {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 12px;
  display: none;
}

.faq-item.open .faq-question::after { content: '−'; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-dark {
  background: var(--deep);
  color: var(--gold-light);
  border-color: var(--deep);
}
.btn-dark:hover { background: var(--warm-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--deep);
  color: rgba(255,255,255,0.7);
}

.footer-top {
  padding: 70px 0 40px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.87rem; line-height: 1.8; margin-bottom: 20px; }

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-btn:hover { background: rgba(201, 168, 76, 0.2); border-color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.footer-contact-item .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   STICKY WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: pulse-wa 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8), 0 0 0 12px rgba(37, 211, 102, 0.08); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-phone { display: none; }

  .main-nav.open {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26, 18, 8, 0.98);
    padding: 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
  }

  .main-nav.open ul { flex-direction: column; gap: 4px; }

  .tours-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { position: relative; bottom: auto; margin-top: 40px; }
  .stats-grid { max-width: 100%; margin-left: 0; }
  .booking-form { padding: 24px; }
  .booking-header { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .about-img .accent-photo { display: none; }
  .about-img .about-since { left: 16px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .routes-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.fade-in-up:nth-child(3) { animation-delay: 0.2s; }
.fade-in-up:nth-child(4) { animation-delay: 0.3s; }
.fade-in-up:nth-child(5) { animation-delay: 0.4s; }
.fade-in-up:nth-child(6) { animation-delay: 0.5s; }

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.82rem; color: var(--text-light); text-align: center; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery-item img { width: 100%; height: 160px; object-fit: cover; border-radius: 4px; }

.comment-list { list-style: none; }
.comment-body { border-bottom: 1px solid var(--cream-mid); padding: 20px 0; }

.widget-area .widget { margin-bottom: 36px; }
.widget-area .widget-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-light);
  display: inline-block;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ============================================================
   SINGLE TOUR DETAIL PAGE  (single-tour.php)
   ============================================================ */

/* ── Hero Banner ── */
.td-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--deep);
}

.td-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.55;
}

.td-hero-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--gold);
}

.td-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.92) 0%, rgba(26,18,8,0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 44px;
}

/* Breadcrumb */
.td-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.td-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color .2s; }
.td-breadcrumb a:hover { color: var(--gold-light); }
.td-breadcrumb span { color: rgba(255,255,255,0.35); }

.td-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }

.td-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
}

.td-duration {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ── Main layout ── */
.td-layout { padding: 56px 0 80px; background: var(--white); }

.td-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* ── LEFT: content ── */
.td-main {}
.td-content { font-size: 1rem; line-height: 1.85; color: var(--text-mid); }

/* Tour content inner blocks */
.td-hero-img-block { margin-bottom: 32px; }
.td-hero-img-block img { width: 100%; border-radius: var(--radius-lg); }

/* Quick info strip */
.tp-quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 36px;
}

.tp-qi-item {
  flex: 1;
  min-width: 130px;
  padding: 14px 16px;
  border-right: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.82rem;
}
.tp-qi-item:last-child { border-right: none; }
.tp-qi-item strong { color: var(--text-main); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; }
.tp-qi-item span { color: var(--text-mid); font-weight: 600; font-size: 0.88rem; }

/* Section blocks */
.tp-section { margin-bottom: 40px; }

.tp-heading {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cream-mid);
}

/* Itinerary steps */
.tp-itinerary { display: flex; flex-direction: column; gap: 0; }

.tp-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-mid);
  position: relative;
}

.tp-step:last-child { border-bottom: none; }

.tp-step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(201,168,76,0.35);
}

.tp-step-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 8px;
}

.tp-step-body p {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 8px;
}

.tp-step-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  display: inline-block;
  margin-top: 4px;
}

/* Optional grid */
.tp-optional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}

.tp-optional-card {
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 0.88rem;
}
.tp-optional-card strong { display: block; color: var(--deep); margin-bottom: 6px; font-size: 0.9rem; }
.tp-optional-card p { color: var(--text-mid); line-height: 1.6; margin: 0; font-size: 0.85rem; }

/* Inclusions / Exclusions */
.tp-inc-exc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.tp-inc, .tp-exc {
  border-radius: var(--radius-md);
  padding: 22px;
}

.tp-inc {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
}

.tp-exc {
  background: #fff8f0;
  border: 1.5px solid #fed7aa;
}

.tp-inc h3, .tp-exc h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--deep);
}

.tp-inc ul li, .tp-exc ul li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 5px 0;
  padding-left: 4px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

/* Notes box */
.tp-notes {
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 36px;
}

.tp-notes h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 12px;
}

.tp-notes ul li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 5px 0;
  line-height: 1.5;
}

/* ── RIGHT: Sticky sidebar ── */
.td-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.td-book-card {
  background: var(--white);
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.td-price-block {
  background: linear-gradient(135deg, var(--deep), var(--warm-mid));
  padding: 24px;
  text-align: center;
}

.td-price-orig {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.td-price-curr {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.td-price-unit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-weight: 400;
}

.td-price-note {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

/* WhatsApp booking button */
.td-wa-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin: 20px 20px 10px;
  padding: 14px 20px;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  text-align: center;
}
.td-wa-btn span { font-size: 0.72rem; font-weight: 400; opacity: 0.85; }
.td-wa-btn:hover { background: #1ebe57; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

/* Call button */
.td-call-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin: 0 20px 20px;
  padding: 12px 20px;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid rgba(201,168,76,0.35);
  color: var(--gold-dark);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  text-align: center;
}
.td-call-btn span { font-size: 0.72rem; font-weight: 500; color: var(--text-light); }
.td-call-btn:hover { background: var(--gold-dark); color: var(--white); border-color: var(--gold-dark); }

/* Trust pills */
.td-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 20px 20px;
  justify-content: center;
}
.td-trust span {
  font-size: 0.72rem;
  background: var(--cream);
  color: var(--text-mid);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--sand);
  white-space: nowrap;
}

/* Why us card */
.td-why-card {
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-md);
  padding: 22px;
}
.td-why-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 14px;
}
.td-why-card ul { display: flex; flex-direction: column; gap: 8px; }
.td-why-card li { font-size: 0.85rem; color: var(--text-mid); line-height: 1.4; }

/* Related tours */
.td-related { margin-top: 64px; padding-top: 40px; border-top: 2px solid var(--cream-mid); }
.td-related-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 32px;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .td-grid { grid-template-columns: 1fr 300px; gap: 32px; }
}

@media (max-width: 768px) {
  .td-hero { height: 280px; }
  .td-grid { grid-template-columns: 1fr; }
  .td-sidebar { position: static; }
  .tp-inc-exc { grid-template-columns: 1fr; }
  .tp-optional-grid { grid-template-columns: 1fr; }
  .tp-quick-info { flex-direction: column; }
  .tp-qi-item { border-right: none; border-bottom: 1px solid var(--sand); }
  .tp-qi-item:last-child { border-bottom: none; }
  .td-title { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .td-hero { height: 220px; }
  .td-layout { padding: 32px 0 60px; }
  .tp-step { gap: 14px; }
  .td-book-card { margin: 0 -4px; }
}
