/* ============================================================
   NoahArarat CMS — main.css
   Adventure / mountain travel aesthetic
   Fonts: Cinzel (headings) + Nunito Sans (body)
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --gold:       #c2762b;
  --gold-light: #e8a44a;
  --gold-pale:  #f5e6cf;
  --dark:       #0a0f1e;
  --dark-2:     #111827;
  --dark-3:     #1f2937;
  --mid:        #374151;
  --text:       #1f2937;
  --text-mid:   #6b7280;
  --text-light: #9ca3af;
  --white:      #ffffff;
  --off-white:  #f9f7f3;
  --light-bg:   #f3f0ea;
  --wa:         #25d366;
  --wa-dark:    #128c3e;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.16);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  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: 'Cinzel', serif;
  line-height: 1.25;
  color: var(--dark);
}
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

/* ── Container ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(194,118,43,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(194,118,43,.45); }
.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: white; }
.btn-outline-dark {
  background: transparent;
  border-color: var(--dark);
  color: var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: white; }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: white;
}
.btn-outline-light:hover { background: rgba(255,255,255,.15); }
.btn-wa {
  background: var(--wa);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.btn-wa-sm {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem 1rem;
  background: var(--wa);
  color: white;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-wa-sm:hover { background: var(--wa-dark); }

/* ── Header ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
}
.header-top {
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: .4rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
}
.header-top-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.header-top-inner i { color: var(--gold); margin-right: .3rem; }
.header-socials { margin-left: auto; display: flex; gap: .75rem; }
.header-socials a { color: rgba(255,255,255,.55); font-size: .9rem; transition: color var(--transition); }
.header-socials a:hover { color: var(--gold-light); }

.site-nav { padding: .75rem 0; }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  letter-spacing: .02em;
}
.logo-text span { color: var(--gold-light); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-menu li a {
  display: block;
  padding: .5rem .9rem;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-menu li a:hover, .nav-menu li a.active { color: var(--gold-light); background: rgba(255,255,255,.06); }
.nav-book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: white !important;
  padding: .5rem 1.2rem !important;
  border-radius: 8px !important;
}
.nav-book-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(194,118,43,.4); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all var(--transition); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/img/hero-default.jpg') center/cover no-repeat;
  background-color: var(--dark-2);
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,.45) 0%, rgba(10,15,30,.2) 60%, rgba(10,15,30,.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: fadeInUp .8s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(194,118,43,.25);
  border: 1px solid rgba(194,118,43,.5);
  color: var(--gold-light);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}
.hero-stat span { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}

/* ── Sections ────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.bg-light { background: var(--light-bg); }
.section-head {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  background: var(--gold-pale);
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .8rem;
}
.section-head h2 { margin-bottom: .75rem; }
.section-head p { color: var(--text-mid); }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ── Tour Cards ──────────────────────────────────────────────── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}
.tour-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
}
.tour-card-img, .tour-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.tour-card:hover .tour-card-img { transform: scale(1.07); }
.tour-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.2);
  aspect-ratio: 4/3;
}
.tour-card-duration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--dark);
  color: var(--gold-light);
  padding: .35rem .8rem;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.tour-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.tour-card-meta {
  display: flex;
  gap: 1rem;
  font-size: .78rem;
  color: var(--text-mid);
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.tour-card-meta span { display: flex; align-items: center; gap: .3rem; }
.tour-card-meta i { color: var(--gold); }
.tour-card-body h3 { font-size: 1.05rem; margin-bottom: .5rem; line-height: 1.35; }
.tour-card-body h3 a:hover { color: var(--gold); }
.tour-card-body p { font-size: .88rem; color: var(--text-mid); margin-bottom: 1.2rem; flex: 1; }
.tour-card-footer { display: flex; gap: .75rem; align-items: center; margin-top: auto; }

/* ── About Strip ─────────────────────────────────────────────── */
.about-strip { padding: 5rem 0; background: var(--dark); }
.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-strip-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-strip-img img { width: 100%; height: 480px; object-fit: cover; }
.about-strip-img-placeholder {
  width: 100%;
  height: 480px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,.1);
}
.about-strip-content .section-tag { background: rgba(194,118,43,.2); color: var(--gold-light); }
.about-strip-content h2 { color: white; margin-bottom: 1.2rem; }
.about-strip-content p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }
.about-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-feature > i {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-top: .2rem;
  flex-shrink: 0;
}
.about-feature strong { display: block; color: white; font-size: .95rem; margin-bottom: .15rem; }
.about-feature span { color: rgba(255,255,255,.55); font-size: .85rem; }

/* ── Steps ───────────────────────────────────────────────────── */
.how-section { background: var(--off-white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
}
.step-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--light-bg);
  line-height: 1;
}
.step-card > i { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.step-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.step-card p { font-size: .875rem; color: var(--text-mid); }

/* ── Destinations ────────────────────────────────────────────── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
}
.dest-card-img, .dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.dest-card:hover .dest-card-img { transform: scale(1.08); }
.dest-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,.2);
}
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.dest-card-overlay h3 {
  color: white;
  font-size: .95rem;
  font-family: 'Cinzel', serif;
  font-weight: 600;
}

/* ── Blog Cards ──────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img-wrap { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img, .blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.06); }
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,.2);
}
.blog-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: .78rem; color: var(--text-light); display: flex; align-items: center; gap: .35rem; margin-bottom: .6rem; }
.blog-card-body h3 { font-size: 1rem; margin-bottom: .5rem; line-height: 1.35; }
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body p { font-size: .875rem; color: var(--text-mid); flex: 1; margin-bottom: 1rem; }
.blog-read-more { font-size: .85rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: .35rem; margin-top: auto; }
.blog-read-more:hover { gap: .6rem; }

/* ── CTA Strip ───────────────────────────────────────────────── */
.cta-strip { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); padding: 4rem 0; }
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip h2 { color: white; margin-bottom: .4rem; font-size: 1.6rem; }
.cta-strip p { color: rgba(255,255,255,.65); }
.cta-strip-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Page Hero ───────────────────────────────────────────────── */
.page-hero {
  position: relative;
  background: url('/assets/img/hero-default.jpg') center/cover no-repeat;
  background-color: var(--dark-2);
  padding: 5rem 0 3.5rem;
  text-align: center;
}
.page-hero-sm { padding: 4rem 0 2.5rem; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,.8), rgba(10,15,30,.65));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: white; margin-bottom: .75rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.6); }
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.45); }

/* ── Tour Single ─────────────────────────────────────────────── */
.tour-single-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
.tour-single-hero-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.tour-single-hero-img img, .tour-single-img { width: 100%; max-height: 480px; object-fit: cover; }
.tour-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.tour-fact { display: flex; align-items: center; gap: .8rem; }
.tour-fact > i { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.tour-fact strong { display: block; font-size: .78rem; color: var(--text-mid); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.tour-fact span { font-size: .95rem; font-weight: 700; color: var(--dark); }
.tour-content { margin-bottom: 2rem; }
.tour-itinerary { margin-bottom: 2rem; }
.tour-itinerary h2 { font-size: 1.4rem; margin-bottom: 1.25rem; }
.itinerary-list { display: flex; flex-direction: column; gap: .75rem; }
.itinerary-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}
.itinerary-day {
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding-top: .25rem;
}
.itinerary-body h4 { font-size: .95rem; margin-bottom: .35rem; }
.itinerary-body p { font-size: .875rem; color: var(--text-mid); }
.tour-includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.tour-includes h3, .tour-excludes h3 { font-size: 1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.tour-includes ul, .tour-excludes ul { display: flex; flex-direction: column; gap: .5rem; }
.tour-includes li, .tour-excludes li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; }
.tour-includes i { color: #22c55e; margin-top: .2rem; }
.tour-excludes i { color: #ef4444; margin-top: .2rem; }

/* ── Sidebar Cards ───────────────────────────────────────────── */
.sidebar-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}
.sidebar-card h3 { font-size: 1.05rem; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 2px solid var(--gold-pale); }
.sidebar-card p { font-size: .875rem; color: var(--text-mid); margin-bottom: 1rem; }
.sidebar-contact { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--light-bg); }
.sidebar-contact p { font-size: .85rem; margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem; }
.sidebar-contact i { color: var(--gold); }
.sidebar-info-list { display: flex; flex-direction: column; gap: .5rem; }
.sidebar-info-list li { display: flex; align-items: center; gap: .5rem; font-size: .875rem; }
.sidebar-info-list i { color: var(--gold); font-size: .85rem; }
.sticky-card { position: sticky; top: 100px; }
.btn-block + .btn-block { margin-top: .6rem; }

/* ── Blog Single ─────────────────────────────────────────────── */
.blog-single-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.blog-single-meta { display: flex; gap: 1.25rem; font-size: .82rem; color: var(--text-mid); margin-bottom: 1.5rem; flex-wrap: wrap; }
.blog-single-meta span { display: flex; align-items: center; gap: .35rem; }
.blog-single-meta i { color: var(--gold); }
.blog-single-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.blog-featured-img { width: 100%; max-height: 480px; object-fit: cover; }
.blog-share { display: flex; align-items: center; gap: .75rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--light-bg); flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .9rem; border-radius: 8px; font-size: .82rem; font-weight: 700; transition: opacity var(--transition); }
.share-fb { background: #1877f2; color: white; }
.share-tw { background: #000; color: white; }
.share-wa { background: var(--wa); color: white; }
.share-btn:hover { opacity: .85; }
.related-posts { display: flex; flex-direction: column; gap: .75rem; }
.related-post { display: flex; gap: .75rem; align-items: center; padding: .6rem; border-radius: var(--radius); transition: background var(--transition); }
.related-post:hover { background: var(--off-white); }
.related-img { width: 60px; height: 50px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.related-placeholder { background: var(--dark-3); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3); font-size: 1rem; }
.related-post strong { display: block; font-size: .82rem; font-weight: 700; line-height: 1.3; margin-bottom: .2rem; }
.related-post span { font-size: .75rem; color: var(--text-light); }

/* ── Prose content ───────────────────────────────────────────── */
.prose { line-height: 1.8; color: var(--text); }
.prose h2 { font-size: 1.4rem; margin: 1.75rem 0 .75rem; }
.prose h3 { font-size: 1.15rem; margin: 1.5rem 0 .6rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul, .prose ol { margin: 1rem 0 1rem 1.5rem; }
.prose li { margin-bottom: .4rem; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }
.prose a { color: var(--gold); text-decoration: underline; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-mid); margin-bottom: 1.75rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 42px; height: 42px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-mid); margin-bottom: .2rem; }
.contact-item a { color: var(--dark); font-weight: 600; }
.contact-item a:hover { color: var(--gold); }
.wa-contact-btn { margin-top: .5rem; }

/* ── Forms ───────────────────────────────────────────────────── */
.contact-form, .booking-form { display: flex; flex-direction: column; gap: .25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: .75rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 700; color: var(--text-mid); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .05em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: .75rem 1rem;
  background: white;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(194,118,43,.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.captcha-hint { font-size: .75rem; color: var(--text-light); font-weight: 400; }

/* ── Booking ─────────────────────────────────────────────────── */
.booking-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.5rem; align-items: start; }
.booking-success { text-align: center; padding: 2rem 0; }
.success-icon { font-size: 4rem; margin-bottom: 1.25rem; }
.booking-success h2 { font-size: 1.6rem; margin-bottom: .75rem; }
.booking-success p { color: var(--text-mid); margin-bottom: 1.25rem; }
.tracking-code {
  display: inline-block;
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gold-pale);
  color: var(--gold);
  padding: .6rem 1.5rem;
  border-radius: var(--radius);
  letter-spacing: .12em;
  margin: .75rem 0 1.25rem;
}
.booking-steps-mini { list-style: decimal; margin-left: 1.2rem; }
.booking-steps-mini li { font-size: .875rem; color: var(--text-mid); margin-bottom: .4rem; }

/* ── About Page ──────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 4rem; }
.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; }
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-lead { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 1.25rem; line-height: 1.8; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.feature-card { background: white; border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow); }
.feature-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.feature-card p { font-size: .875rem; color: var(--text-mid); }

/* ── Alerts ──────────────────────────────────────────────────── */
.alert { display: flex; align-items: center; gap: .75rem; padding: 1rem 1.25rem; border-radius: var(--radius); font-size: .9rem; margin-bottom: 1.5rem; font-weight: 600; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── Pagination ──────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 .75rem;
  border-radius: var(--radius); background: white; border: 1.5px solid #e5e7eb;
  font-size: .875rem; font-weight: 600; color: var(--text);
  transition: all var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--gold); border-color: var(--gold); color: white; }

/* ── Error 404 ───────────────────────────────────────────────── */
.error-page { padding: 8rem 0; text-align: center; }
.error-num { font-family: 'Cinzel', serif; font-size: 8rem; font-weight: 900; color: var(--gold-pale); line-height: 1; margin-bottom: .5rem; }
.error-page h1 { font-size: 2rem; margin-bottom: 1rem; }
.error-page p { color: var(--text-mid); margin-bottom: 2rem; }
.error-page .btn + .btn { margin-left: 1rem; }

/* ── Empty States ────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-mid); }
.empty-state i { font-size: 3.5rem; color: var(--text-light); margin-bottom: 1rem; display: block; }
.empty-state h3 { font-size: 1.2rem; margin-bottom: .5rem; color: var(--text); }
.empty-tours { grid-column: 1/-1; text-align: center; padding: 3rem; color: var(--text-mid); }
.empty-tours i { font-size: 3rem; margin-bottom: 1rem; display: block; color: var(--text-light); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); }
.footer-main { padding: 4rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin: 1rem 0 1.25rem; color: rgba(255,255,255,.55); max-width: 280px; }
.footer-col h4 { font-family: 'Cinzel', serif; font-size: .85rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col li a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col li a:hover { color: var(--gold-light); }
.footer-socials { display: flex; gap: .75rem; }
.footer-socials a { width: 36px; height: 36px; background: rgba(255,255,255,.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: .9rem; transition: all var(--transition); }
.footer-socials a:hover { background: var(--gold); color: white; }
.footer-contact { display: flex; flex-direction: column; gap: .6rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; font-size: .875rem; color: rgba(255,255,255,.55); }
.footer-contact i { color: var(--gold); margin-top: .25rem; flex-shrink: 0; font-size: .85rem; }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--gold-light); }
.wa-link { color: var(--wa) !important; font-weight: 700; display: flex; align-items: center; gap: .4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: center;
  text-align: center;
}
.footer-bottom .container { display: flex; flex-direction: column; gap: .2rem; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ── WhatsApp Float ──────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: var(--wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.6); animation: none; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); }
}

/* ── AI Chat Widget ──────────────────────────────────────────── */
.ai-chat-widget { position: fixed; bottom: 6.5rem; right: 2rem; z-index: 998; }
.ai-chat-toggle {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: all var(--transition);
}
.ai-chat-toggle:hover { transform: scale(1.1); }
.ai-chat-box {
  position: absolute;
  bottom: 60px; right: 0;
  width: 320px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.ai-chat-header {
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  padding: .9rem 1rem;
  display: flex; align-items: center; gap: .75rem;
  color: white;
}
.ai-chat-header > i { font-size: 1.2rem; color: var(--gold-light); }
.ai-chat-header strong { font-size: .9rem; font-weight: 700; }
.ai-chat-header span { font-size: .72rem; color: var(--wa); }
.ai-chat-header div { flex: 1; }
.ai-chat-close { color: rgba(255,255,255,.6); font-size: 1.3rem; line-height: 1; padding: 0; }
.ai-chat-messages { height: 280px; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .6rem; }
.ai-msg { display: flex; gap: .5rem; }
.ai-msg.user { flex-direction: row-reverse; }
.ai-bubble {
  max-width: 80%; padding: .6rem .85rem;
  border-radius: 12px; font-size: .84rem; line-height: 1.55;
}
.ai-msg.bot .ai-bubble { background: var(--off-white); color: var(--text); border-bottom-left-radius: 4px; }
.ai-msg.user .ai-bubble { background: var(--gold); color: white; border-bottom-right-radius: 4px; }
.ai-thinking .ai-bubble { display: flex; gap: 4px; align-items: center; padding: .75rem; }
.ai-dot { width: 7px; height: 7px; background: var(--text-light); border-radius: 50%; animation: aiDot 1.2s ease-in-out infinite; }
.ai-dot:nth-child(2) { animation-delay: .2s; }
.ai-dot:nth-child(3) { animation-delay: .4s; }
@keyframes aiDot { 0%,100%{transform:translateY(0)}50%{transform:translateY(-5px)} }
.ai-chat-input { display: flex; gap: .5rem; padding: .75rem; border-top: 1px solid #e5e7eb; }
.ai-chat-input input { flex: 1; padding: .55rem .85rem; border: 1.5px solid #e5e7eb; border-radius: 8px; font-family: inherit; font-size: .85rem; outline: none; }
.ai-chat-input input:focus { border-color: var(--gold); }
.ai-chat-input button { padding: .5rem .8rem; background: var(--gold); color: white; border-radius: 8px; font-size: .9rem; transition: background var(--transition); }
.ai-chat-input button:hover { background: var(--gold-light); }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:.4;transform:scaleY(.5)} }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tour-single-layout { grid-template-columns: 1fr; }
  .blog-single-layout { grid-template-columns: 1fr; }
  .tour-facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--dark); flex-direction: column; justify-content: flex-start;
    padding: 5rem 2rem 2rem; gap: .25rem; transition: right var(--transition);
    box-shadow: -8px 0 32px rgba(0,0,0,.5); z-index: 200;
  }
  .nav-menu.open { right: 0; }
  .nav-menu li a { font-size: 1rem; padding: .75rem 1rem; }
  .nav-toggle { display: flex; z-index: 201; margin-left: auto; }
  .about-strip-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-strip-img img { height: 300px; }
  .tours-grid, .blog-grid { grid-template-columns: 1fr; }
  .tour-includes-grid { grid-template-columns: 1fr; }
  .contact-layout, .booking-layout, .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: .75rem; }
  .header-top { display: none; }
  .ai-chat-box { width: 90vw; right: -16px; }
}
@media (max-width: 480px) {
  .hero { padding: 4rem 0 3rem; min-height: 85vh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .tour-facts { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* ── Hero Slider ─────────────────────────────────────────────── */
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--dark-2); opacity: 0; transition: opacity 1.2s ease, transform 8s ease-out; transform: scale(1.04); }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-dots { position: absolute; bottom: 3.5rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: .5rem; }
.hero-dot { width: 28px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.35); border: none; cursor: pointer; transition: all var(--transition); padding: 0; }
.hero-dot.active { background: var(--gold-light); width: 44px; }
