/* ============================================
   TEE TO TRAIL AFRICA — Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700;800;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --green-dark:  #0f2218;
  --green-mid:   #1a3a28;
  --green-light: #2d5a3d;
  --gold:        #c9a84c;
  --gold-light:  #e2c06e;
  --white:       #ffffff;
  --off-white:   #f7f5f0;
  --text-dark:   #1a1a1a;
  --text-mid:    #4a4a4a;
  --text-light:  #888888;
  --border:      rgba(201,168,76,0.25);
  --shadow:      0 8px 40px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Raleway', sans-serif;
  line-height: 1.2;
  font-weight: 800;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── Layout ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title.light { color: var(--white); }

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

.section-subtitle.light { color: rgba(255,255,255,0.7); }

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--green-dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

/* ── Gold Divider ── */
.gold-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}
.gold-line.center { margin: 0 auto 20px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.transparent {
  background: transparent;
}

.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
  padding: 0 40px;
}

.nav.scrolled .nav-links a {
  color: var(--green-dark);
}
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active {
  color: var(--gold);
}
.nav.scrolled .nav-cta {
  color: var(--green-dark) !important;
}
.nav.scrolled .nav-toggle span {
  background: var(--green-dark);
}

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

.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--green-dark) !important;
  padding: 10px 22px;
  font-weight: 600;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--green-dark) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav.scrolled .nav-toggle span { background: var(--green-dark); }

/* Animate to X when open */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen overlay menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 0;
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile li { width: 100%; text-align: center; }

.nav-mobile a {
  display: block;
  padding: 18px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--white);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
  margin: 0 auto;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  justify-content: center;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero-label::before,
.hero-label::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
  letter-spacing: -1px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 44px;
  max-width: 600px;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.7s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.3);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--green-dark);
  padding: 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.08);
}

.stat-item {
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

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

.tour-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
}

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

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

.tour-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,28,18,0.88) 35%, rgba(10,28,18,0.1) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  transition: background 0.3s;
}

.tour-card-tag {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.tour-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.tour-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 20px;
}

.tour-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}

.tour-card-link:hover { gap: 14px; }

/* ============================================
   BENEFITS / FEATURES
   ============================================ */
.benefits {
  background: #f0ede7;
}

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

.benefit-item {
  background: var(--white);
  padding: 48px 36px 36px;
  border: 1px solid #e4e0d8;
  border-bottom: 3px solid transparent;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.benefit-item:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.benefit-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 24px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-item h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.benefit-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.78;
}

.benefit-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 22px;
}

.benefit-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c8c4bc;
  display: block;
}

/* ============================================
   DESTINATIONS — Full-width panel grid
   ============================================ */
.destinations-panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.dest-panel {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.dest-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.dest-panel:hover img { transform: scale(1.07); }

.dest-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,28,18,0.82) 35%, rgba(10,28,18,0.15) 70%, transparent 100%);
  transition: background 0.4s;
}

.dest-panel:hover .dest-panel-overlay {
  background: linear-gradient(to top, rgba(10,28,18,0.88) 40%, rgba(10,28,18,0.25) 75%, transparent 100%);
}

.dest-panel-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
}

.dest-panel-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.15;
}

.dest-panel-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 16px;
}

.dest-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}

.dest-panel:hover .dest-panel-link { gap: 13px; }

/* Legacy dest-card styles kept for safety */
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,28,18,0.72) 30%, rgba(10,28,18,0.1) 65%, transparent 100%);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--green-dark);
}

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

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 44px 36px;
  position: relative;
}

.testi-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 16px; left: 28px;
  line-height: 1;
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testi-stars span { color: var(--gold); font-size: 0.9rem; }

.testi-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testi-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.testi-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,28,18,0.82);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-banner-content p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.75;
}

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

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,28,18,0.78) 35%, rgba(10,28,18,0.3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content .section-label { margin-bottom: 12px; }

.page-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.75;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================
   COURSES PAGE
   ============================================ */
/* ── Sticky region nav ── */
.region-nav {
  background: var(--green-dark);
  position: sticky;
  top: 80px;
  z-index: 90;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.region-nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.region-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.region-nav-link:hover,
.region-nav-link.is-active {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.region-nav-num {
  color: var(--gold);
  font-size: 10px;
}

/* ── Region banner ── */
.region-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.region-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.region-banner:hover .region-banner-bg { transform: scale(1); }

.region-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,28,18,0.82) 40%, rgba(10,28,18,0.3));
}

.region-banner .container { position: relative; height: 100%; display: flex; align-items: center; }

.region-banner-content { max-width: 560px; }

.region-banner-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.region-banner-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.region-banner-desc {
  color: rgba(255,255,255,0.72);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 480px;
}

.region-banner-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.region-banner-dot { color: var(--gold); }

/* ── Course list (numbered editorial layout) ── */
.courses-list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding: 20px 0 80px;
}

.course-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.course-item:first-child { border-top: 1px solid var(--border); }

.course-item:hover { background: rgba(201,168,76,0.03); }

.course-item-num {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: rgba(201,168,76,0.3);
  min-width: 44px;
  line-height: 1;
  padding-top: 4px;
  flex-shrink: 0;
}

.course-item-body { flex: 1; }

.course-item-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.course-item-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}

.course-item-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 680px;
}

.course-item-action {
  flex-shrink: 0;
  align-self: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 0.2s;
  padding: 0 8px;
}

.course-item-action span { color: var(--gold); font-size: 1rem; transition: transform 0.2s; }

.course-item-action:hover { color: var(--green-dark); }
.course-item-action:hover span { transform: translateX(4px); }

/* ── International destination cards ── */
.intl-dest-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 20px 0 80px;
}

.intl-dest-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.intl-dest-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.1); }

.intl-dest-img {
  overflow: hidden;
  min-height: 300px;
}

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

.intl-dest-card:hover .intl-dest-img img { transform: scale(1.04); }

.intl-dest-content {
  padding: 40px 44px;
}

.intl-dest-content h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-dark);
  margin: 10px 0 14px;
}

.intl-dest-content p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* shared tag (reused across pages) */
.course-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.course-tag {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(45,90,61,0.08);
  padding: 5px 10px;
}

/* legacy — keep for any remaining course-card usage */
.course-card {
  background: var(--white);
  padding: 36px 32px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}
.course-card:hover { border-color: var(--gold); }
.course-card-tag {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.course-card h3 { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 12px; }
.course-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.72; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: -28px; right: -28px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 28px 32px;
  text-align: center;
}

.about-img-badge .big { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; line-height: 1; }
.about-img-badge .small { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }

.about-text .section-subtitle { margin-bottom: 28px; }

.about-quote {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}

.about-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 32px;
}

.value-item {
  background: var(--off-white);
  padding: 32px 28px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s;
}

.value-item:hover { border-color: var(--gold); }

.value-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.value-item p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Mission / Vision */
.mission-section {
  background: var(--green-dark);
}

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

.mission-item {
  padding: 64px 60px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.mission-item:last-child { border-right: none; }

.mission-item .section-label { display: block; margin-bottom: 14px; }

.mission-item h2 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 20px;
}

.mission-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info-list {
  list-style: none;
  margin-bottom: 48px;
}

.contact-info-list li {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

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

.social-link {
  width: 42px; height: 42px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 1rem;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white);
  padding: 52px 48px;
}

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

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-group select {
  accent-color: var(--green-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid #e0ddd6;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: auto;
  accent-color: var(--gold);
}

/* ============================================
   ENQUIRY FORM
   ============================================ */
.enquiry-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

.enquiry-form-col {}

.form-section-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  margin-top: 36px;
}
.form-section-heading:first-child { margin-top: 0; }

.req { color: var(--gold); }

/* Inputs */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #d0ccc3;
  background: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* Tour type radio cards */
.tour-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 8px;
}

.tour-type-card {
  position: relative;
  border: 1.5px solid #d0ccc3;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
}

.tour-type-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.tour-type-card:hover {
  border-color: var(--gold);
}

.tour-type-card:has(input:checked),
.tour-type-card.is-selected {
  border-color: var(--green-dark);
  background: var(--green-dark);
  box-shadow: 0 4px 20px rgba(15,34,24,0.18);
}

.tour-type-inner {
  padding: 18px 18px 14px;
  flex: 1;
}

.tour-type-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.tour-type-card:has(input:checked) .tour-type-name,
.tour-type-card.is-selected .tour-type-name {
  color: var(--white);
}

.tour-type-features {
  list-style: none;
  margin: 0; padding: 0;
}

.tour-type-features li {
  font-size: 0.79rem;
  color: var(--text-mid);
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
  transition: color 0.2s;
}

.tour-type-card:has(input:checked) .tour-type-features li,
.tour-type-card.is-selected .tour-type-features li {
  color: rgba(255,255,255,0.7);
}

.tour-type-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

.tour-type-footer {
  padding: 10px 18px;
  background: var(--off-white);
  border-top: 1px solid #d0ccc3;
  font-size: 0.73rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-light);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tour-type-card:has(input:checked) .tour-type-footer,
.tour-type-card.is-selected .tour-type-footer {
  background: rgba(201,168,76,0.18);
  color: var(--gold);
  border-top-color: rgba(201,168,76,0.25);
}

/* Destination reveal panel */
.dest-reveal {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.dest-reveal.is-open {
  max-height: 3000px;
  opacity: 1;
}

.dest-reveal-inner {
  background: #f0ece3;
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 24px 24px 28px;
  margin-top: 4px;
}

.dest-reveal-prompt {
  font-family: 'Raleway', sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.dest-group { margin-bottom: 20px; }
.dest-group:last-child { margin-bottom: 0; }

.dest-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.dest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dest-chip {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dest-chip input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.dest-chip span {
  padding: 7px 16px;
  border: 1.5px solid #d0ccc3;
  background: var(--white);
  font-size: 0.82rem;
  color: var(--text-mid);
  transition: all 0.2s;
  user-select: none;
}

.dest-chip:hover span {
  border-color: var(--gold);
  color: var(--text-dark);
}

.dest-chip input:checked + span {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--gold);
  font-weight: 600;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.form-submit-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

/* Sidebar */
.enquiry-sidebar { display: flex; flex-direction: column; gap: 0; }

.enquiry-sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 28px 30px;
}

.enquiry-sidebar-card + .enquiry-sidebar-card { border-top: none; }

.enquiry-sidebar-dark {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.esb-heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  color: var(--green-dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.enquiry-sidebar-dark .esb-heading {
  color: var(--gold);
  border-bottom-color: rgba(201,168,76,0.25);
}

.esb-steps {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.esb-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.esb-step-num {
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  font-family: 'Raleway', sans-serif;
  color: var(--green-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.esb-steps li strong {
  display: block;
  font-size: 0.88rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.esb-steps li p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.enquiry-sidebar-dark .esb-steps li strong {
  color: var(--white);
}

.enquiry-sidebar-dark .esb-steps li p {
  color: rgba(255,255,255,0.65);
}

.esb-highlights {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.esb-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.esb-highlights li svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.esb-contact-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.esb-contact-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
}

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

.faq-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.faq-tab {
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--white);
  color: var(--text-mid);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-tab.active,
.faq-tab:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.faq-group { display: none; }
.faq-group.active { display: block; }

.faq-list { list-style: none; }

.faq-item {
  background: var(--white);
  border-bottom: 1px solid #ede9df;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  transition: color 0.3s;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo img {
  height: 52px;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-heading {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-item span:first-child {
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 2px;
}

.footer-contact-item span:last-child {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* Light testimonials variant */
.testimonials-light {
  background: var(--off-white);
}

.testi-card-light {
  background: var(--white);
  border: 1px solid #e8e4da;
}

.testi-card-light::before {
  color: var(--gold);
  opacity: 0.2;
}

.testi-card-light p {
  color: var(--text-mid);
}

.testi-name-dark {
  color: var(--text-dark);
}

.testimonials-light .testi-role {
  color: var(--text-light);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
/* Hidden state applies only once JS confirms it can reveal (html.js).
   If script.js fails to load, .reveal stays fully visible — content is
   never left permanently invisible. */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Honeypot — kept in the layout for bots, moved off-screen for people */
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .destinations-panels { grid-template-columns: repeat(2, 1fr); }
  .dest-panel { height: 360px; }
  .testimonials-grid,
  .benefits-grid,
  [style*="grid-template-columns:repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
  .tours-grid { grid-template-columns: 1fr; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-img-badge { right: 0; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .enquiry-layout { grid-template-columns: 1fr; gap: 48px; }
  .tour-type-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .region-banner { height: 340px; }
  .region-banner-title { font-size: 2.2rem; }
  .intl-dest-card { grid-template-columns: 280px 1fr; }
  .intl-dest-content { padding: 28px 32px; }
  .course-item-action { display: none; }
}

@media (max-width: 768px) {
  .destinations-panels { grid-template-columns: repeat(1, 1fr); }
  .dest-panel { height: 320px; }
  section { padding: 70px 0; }

  .nav { padding: 0 20px; }
  .nav.scrolled { padding: 0 20px; }
  .nav-inner { height: 60px; }
  .nav-logo img { height: 42px; }
  .region-nav { top: 60px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero h1 { font-size: 2.6rem; }

  .tours-grid,
  .testimonials-grid,
  .destinations-grid,
  .courses-grid,
  .benefits-grid,
  .values-grid { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr !important; }

  .stats-inner { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: repeat(2, 1fr); }

  .contact-form-wrap { padding: 36px 24px; }

  .region-banner { height: 280px; }
  .region-banner-title { font-size: 1.8rem; }
  .region-banner-desc { display: none; }
  .intl-dest-card { grid-template-columns: 1fr; }
  .intl-dest-img { min-height: 220px; }
  .intl-dest-content { padding: 28px 24px; }
  .course-item { flex-wrap: wrap; gap: 16px; }
  .course-item-num { font-size: 1.2rem; min-width: 32px; }
  .region-nav-link { padding: 14px 16px; font-size: 10px; }
  .tour-type-grid { grid-template-columns: 1fr; }

  .about-img-wrap img { height: 380px; }
  .about-img-badge { display: none; }

  .mission-item { padding: 44px 28px; border-bottom: 3px solid var(--gold); }
  .mission-item:last-child { border-bottom: none; }

  .page-hero { height: 360px; padding-bottom: 48px; }

  .faq-tabs { gap: 6px; }

  .region-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .region-line { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .checkbox-group { grid-template-columns: 1fr; }
  .dest-cards-grid { grid-template-columns: 1fr; }
  .courses-card-grid { grid-template-columns: 1fr; }
}

/* ============================================
   REGION SECTIONS — Modern Editorial Layout
   ============================================ */

.region-section { background: var(--white); }
.region-section-alt { background: var(--off-white); }

.region-intro {
  position: relative;
  padding: 72px 0 48px;
  overflow: hidden;
}

.region-intro-ghost {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(120px, 18vw, 220px);
  color: rgba(201,168,76,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.region-intro-overline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}

.region-intro-overline::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: block;
  flex-shrink: 0;
}

.region-intro-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-bottom: 16px;
}

.region-intro-desc {
  font-size: 1.0625rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.region-intro-chips {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.region-intro-chip {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 600;
}

/* ── Course cards (Local page) ── */
.courses-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-bottom: 80px;
}

.course-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.07);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.course-card-num {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.course-card-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15,34,24,0.7);
  background: rgba(15,34,24,0.06);
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}

.course-card-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--green-dark);
  line-height: 1.25;
}

.course-card-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}

.course-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.07);
  flex-wrap: wrap;
  margin-top: auto;
}

.course-card-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.course-card-chip {
  font-size: 10px;
  padding: 3px 8px;
  background: var(--off-white);
  color: #5a6a5f;
  border-radius: 4px;
}

.course-card-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.course-card-link:hover { color: var(--green-dark); }

.course-card-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.course-card-name a:hover { color: var(--gold); }

/* ── Destination cards (International page) ── */
.dest-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding-bottom: 80px;
}

.dest-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.13);
}

.dest-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.dest-card:hover .dest-card-img img {
  transform: scale(1.06);
}

.dest-card-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dest-card-region {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.dest-card-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.dest-card-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.dest-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.dest-card-tag {
  font-size: 10px;
  padding: 4px 10px;
  background: var(--off-white);
  color: #5a6a5f;
  border-radius: 4px;
}

.dest-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  text-decoration: none;
  padding: 13px 20px;
  border: 1.5px solid rgba(15,34,24,0.25);
  border-radius: 8px;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  width: 100%;
  margin-top: auto;
}

.dest-card-cta:hover {
  background: var(--green-dark);
  color: var(--gold);
  border-color: var(--green-dark);
}

@media (max-width: 1024px) {
  .courses-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .courses-card-grid { grid-template-columns: 1fr; }
  .dest-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .region-intro { padding: 56px 0 36px; }
  .region-intro-ghost { display: none; }
}

@media (max-width: 520px) {
  .dest-cards-grid { grid-template-columns: 1fr; }
}

/* ── Course Accordion Selector ── */
.region-accordion { display: flex; flex-direction: column; gap: 8px; }

.region-acc-item { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }

.region-acc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  cursor: pointer;
  background: var(--off-white);
  transition: background 0.2s;
  user-select: none;
}
.region-acc-header:hover { background: #ede9e1; }

.region-acc-header input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--green-dark);
  cursor: pointer;
  flex-shrink: 0;
}

.region-acc-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--green-dark);
  flex: 1;
}

.region-acc-arrow {
  font-size: 1.1rem;
  color: var(--text-light);
  transition: transform 0.25s ease;
  line-height: 1;
}

.region-acc-item.is-open .region-acc-arrow { transform: rotate(90deg); }
.region-acc-item.is-open .region-acc-header { background: var(--green-dark); }
.region-acc-item.is-open .region-acc-name { color: var(--white); }
.region-acc-item.is-open .region-acc-arrow { color: var(--gold); }

.region-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 18px;
  background: #f0ece3;
}
.region-acc-item.is-open .region-acc-body {
  max-height: 400px;
  padding: 16px 18px 20px;
}

.region-acc-hint {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.course-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.course-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-mid);
  transition: background 0.15s, border-color 0.15s;
}
.course-check:hover { background: var(--off-white); }
.course-check input[type="checkbox"] { accent-color: var(--green-dark); flex-shrink: 0; }
.course-check:has(input:checked) {
  background: rgba(15,34,24,0.06);
  border-color: var(--green-dark);
  color: var(--green-dark);
  font-weight: 600;
}

@media (max-width: 520px) {
  .course-check-grid { grid-template-columns: 1fr; }
}

/* ── Footer Social Icons ── */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-link:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

/* ── WhatsApp Floating Button ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 13px 20px 13px 16px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease, padding 0.22s ease;
  white-space: nowrap;
  overflow: hidden;
  max-width: 220px;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.wa-float svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: #fff;
}
.wa-float-label {
  opacity: 1;
  transition: opacity 0.2s ease;
}
@media (max-width: 480px) {
  .wa-float {
    padding: 13px;
    border-radius: 50%;
    max-width: 52px;
  }
  .wa-float-label { display: none; }
}
