/* ============================================
   FAST MOROCCO TOURS — styles.css
   Palette: Sand · Charcoal · Gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --sand:        #C9A96E;
  --sand-light:  #F6EDD9;
  --sand-pale:   #FBF6EE;
  --gold:        #B5832A;
  --gold-light:  #D4A843;
  --charcoal:    #1C1917;
  --charcoal-mid:#2E2825;
  --charcoal-soft:#4A403A;
  --text:        #3B322C;
  --text-muted:  #7A6A60;
  --white:       #FDFAF5;
  --border:      #E8DDD0;
  --wa-green:    #25D366;
  --wa-dark:     #128C7E;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius:   10px;
  --radius-lg:18px;
  --shadow:   0 4px 20px rgba(28,25,23,.10);
  --shadow-lg:0 8px 40px rgba(28,25,23,.16);

  --max-w: 1180px;
  --section-pad: 80px 20px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.25; color: var(--charcoal); }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title { margin-bottom: 14px; }
.section-sub   { font-size: 1.05rem; max-width: 540px; color: var(--text-muted); }
.center        { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ---------- Layout ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(181,131,42,.35);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(181,131,42,.45); }

.btn-outline {
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.30);
}
.btn-wa:hover { background: #22c55e; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(37,211,102,.42); }

.btn-wa-outline {
  border: 2px solid var(--wa-green);
  color: var(--wa-green);
  background: transparent;
}
.btn-wa-outline:hover { background: var(--wa-green); color: #fff; }

.btn-dark {
  background: var(--charcoal);
  color: #fff;
}
.btn-dark:hover { background: var(--charcoal-mid); transform: translateY(-2px); }

.btn svg { flex-shrink: 0; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-text strong { display: block; font-family: var(--font-head); font-size: 1.1rem; letter-spacing: .01em; }
.logo-text span { font-size: .72rem; color: var(--sand); letter-spacing: .08em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 8px 12px;
  border-radius: 6px;
  transition: .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--sand); background: rgba(255,255,255,.06); }
.main-nav .nav-dropdown { position: relative; }
.main-nav .nav-dropdown > a::after { content: ' ▾'; font-size: .7rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--charcoal-mid);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  min-width: 220px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: .87rem;
  color: rgba(255,255,255,.8) !important;
}
.dropdown-menu a:hover { background: rgba(255,255,255,.07) !important; color: var(--sand) !important; }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 9px 18px; font-size: .85rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1539650116574-75c0c6d73f6e?w=1600&q=80') center/cover no-repeat;
  opacity: .45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,25,23,.85) 0%, rgba(28,25,23,.5) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 20px 60px;
  color: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(181,131,42,.25);
  border: 1px solid rgba(181,131,42,.5);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 { color: #fff; max-width: 700px; margin-bottom: 18px; }
.hero h1 em { color: var(--sand); font-style: normal; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.stat { text-align: left; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
}
.stat-label { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--charcoal-mid);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0 20px;
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.08);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ---------- SECTIONS ---------- */
.section { padding: var(--section-pad); }
.section-alt { background: var(--sand-pale); }
.section-dark { background: var(--charcoal); }

/* ---------- TOUR CARDS ---------- */
.tours-section { padding: 80px 20px; }
.tours-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.tour-card-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.tour-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.05); }

.tour-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.tour-badge.popular { background: #D64B2A; }

.tour-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tour-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.tour-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.tour-meta svg { color: var(--gold); }

.tour-card-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.tour-card-body p  { font-size: .9rem; line-height: 1.6; flex: 1; margin-bottom: 20px; }

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--sand-pale);
}
.tour-price { line-height: 1.2; }
.tour-price .from { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.tour-price .amount {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
}
.tour-price .per { font-size: .78rem; color: var(--text-muted); }
.tour-card-footer .btn { padding: 10px 18px; font-size: .85rem; }

/* ---------- WHY US ---------- */
.why-us { padding: 80px 20px; background: var(--sand-pale); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.why-icon {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--sand-light) 0%, rgba(201,169,110,.2) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
}
.why-card h4 { margin-bottom: 10px; font-size: 1rem; }
.why-card p  { font-size: .88rem; }

/* ---------- HOW IT WORKS ---------- */
.how-it-works { padding: 80px 20px; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--sand), var(--gold));
  opacity: .35;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(181,131,42,.35);
}
.step h4 { margin-bottom: 8px; }
.step p  { font-size: .88rem; }

/* ---------- REVIEWS ---------- */
.reviews { padding: 80px 20px; background: var(--charcoal); }
.reviews .section-label { color: var(--sand); }
.reviews .section-title { color: var(--white); }
.reviews .section-sub   { color: rgba(255,255,255,.5); }

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 40px;
}
.rating-big { font-family: var(--font-head); font-size: 3.5rem; color: var(--sand); line-height: 1; }
.rating-stars { color: #F5A623; font-size: 1.3rem; letter-spacing: .05em; }
.rating-text { font-size: .85rem; color: rgba(255,255,255,.45); }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.review-stars { color: #F5A623; font-size: .95rem; margin-bottom: 14px; }
.review-text  { font-size: .92rem; color: rgba(255,255,255,.7); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.review-name  { font-size: .9rem; font-weight: 600; color: var(--white); }
.review-origin{ font-size: .78rem; color: rgba(255,255,255,.4); }

.review-platforms {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.platform-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
.platform-badge strong { color: var(--white); }

/* ---------- FAQ ---------- */
.faq { padding: 80px 20px; background: var(--sand-pale); }
.faq-list { max-width: 760px; margin: 48px auto 0; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: .97rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  font-family: var(--font-body);
  background: none;
  gap: 12px;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sand-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--gold);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--gold); color: #fff; }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---------- DESTINATIONS MARQUEE ---------- */
.marquee-wrap {
  padding: 22px 0;
  background: var(--sand);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
}
.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--charcoal);
  opacity: .4;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3B2E26 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,131,42,.15) 0%, transparent 70%);
}
.cta-banner .section-label { color: var(--sand); }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.55); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-buttons   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #111008;
  color: rgba(255,255,255,.55);
  padding: 60px 20px 0;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  transition: .2s;
}
.footer-col a:hover { color: var(--sand); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .85rem;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--sand); }

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 12px 16px;
}
.sticky-cta-inner {
  display: flex;
  gap: 10px;
}
.sticky-cta .btn { flex: 1; justify-content: center; padding: 13px 12px; font-size: .87rem; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--charcoal);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1539650116574-75c0c6d73f6e?w=1200&q=70') center/cover;
  opacity: .22;
}
.page-hero-content { position: relative; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p  { color: rgba(255,255,255,.6); max-width: 520px; margin: 12px auto 0; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 14px 0;
  font-size: .82rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: .4; }

/* ---- TOUR DETAIL ---- */
.tour-detail { padding: 60px 20px; }
.tour-detail-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.tour-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
}
.tour-thumbnail-row {
  display: flex; gap: 10px; margin-bottom: 36px;
}
.tour-thumbnail-row img {
  flex: 1;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
}

.tour-highlights {
  background: var(--sand-pale);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 32px;
}
.tour-highlights h4 { margin-bottom: 16px; }
.highlight-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .88rem;
  color: var(--text);
}
.highlight-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.itinerary-list { margin-bottom: 32px; }
.itinerary-day {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.day-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  background: var(--white);
}
.day-num {
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.day-header h4 { flex: 1; font-size: .95rem; }
.day-header .faq-arrow { margin-left: auto; }
.day-body {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--sand-pale);
  font-size: .9rem;
  color: var(--text-muted);
  display: none;
}
.itinerary-day.open .day-body { display: block; }
.itinerary-day.open .faq-arrow { transform: rotate(180deg); background: var(--gold); color: #fff; }

/* Booking sidebar */
.booking-sidebar { position: sticky; top: 84px; }
.booking-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.booking-card-head {
  background: var(--charcoal);
  padding: 24px;
  text-align: center;
}
.booking-card-head .from { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; }
.booking-price {
  font-family: var(--font-head);
  font-size: 2.6rem;
  color: var(--sand);
  font-weight: 700;
  line-height: 1;
}
.booking-price sub { font-size: .9rem; font-family: var(--font-body); color: rgba(255,255,255,.4); }
.booking-card-body { padding: 24px; }
.booking-card-body .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.booking-note {
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}
.booking-features { margin: 20px 0; }
.booking-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.booking-feature:last-child { border-bottom: none; }
.booking-feature svg { color: var(--gold); }

/* ---- CONTACT ---- */
.contact-section { padding: 80px 20px; }
.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--sand-pale);
  transition: .2s;
}
.contact-method:hover { border-color: var(--gold); background: var(--white); }
.contact-method-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method h5 { font-size: .9rem; margin-bottom: 4px; }
.contact-method span { font-size: .85rem; color: var(--text-muted); }
.contact-method a { color: var(--gold); font-weight: 600; }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }
.form-note { font-size: .78rem; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: .9rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: .3s ease;
  z-index: 9999;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tour-detail-grid { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px 16px; }

  .main-nav { display: none; }
  .header-cta .btn-outline { display: none; }
  .hamburger { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--charcoal-mid);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 16px;
    gap: 4px;
  }
  .main-nav.open .nav-dropdown .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,.04);
    margin-top: 4px;
  }

  .tours-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .tour-thumbnail-row { overflow-x: auto; }
  .highlight-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .trust-item { padding: 12px 16px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .tour-card-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
  .tour-card-footer .btn { width: 100%; justify-content: center; }
}
