/* ============================================================
   THE TOURING NOMADS — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg:         #F6F0ED;
  --blue:       #2A4B5C;
  --bark:       #8C5E45;
  --bark-light: #A8745A;
  --white:      #FFFFFF;
  --muted:      #C4B5AD;
  --light-bg:   #EDE6E1;

  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;

  --nav-h: 72px;
  --section-pad: 96px;
  --max-w: 1200px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 8px 32px rgba(42,75,92,0.12);
  --shadow-sm: 0 2px 12px rgba(42,75,92,0.08);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--blue);
  background: var(--bg);
  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; }

/* ── Typography ────────────────────────────────────────────── */
h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--blue);
}

h2, h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
}

h2 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h3 { font-size: clamp(0.85rem, 1.5vw, 1rem); }

p {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.75;
  color: var(--blue);
}

/* ── Utility ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--bark);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 20px;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--blue);
  margin-bottom: 24px;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--bark);
  margin: 0 0 32px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: none;
}

.btn-primary {
  background: var(--bark);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--bark-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(140,94,69,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* ── NAVIGATION ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav.scrolled {
  background: var(--blue);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: lighten;
  flex-shrink: 0;
}

.nav-logo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.nav-logo-placeholder {
  display: none;
}

.nav-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
}

.nav-menu a.active {
  border-bottom: 1.5px solid var(--bark);
  padding-bottom: 2px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

/* ── HERO / SLIDER ─────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
  display: flex;
  align-items: flex-end;
  padding-bottom: 10vh;
}

.hero-slide.active { opacity: 1; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42,75,92,0.75) 0%,
    rgba(42,75,92,0.25) 55%,
    rgba(0,0,0,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px;
  margin: 0 auto 0;
  width: 100%;
  max-width: var(--max-w);
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--bark);
  background: rgba(246,240,237,0.12);
  border: 1px solid var(--bark);
  padding: 5px 14px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 600px;
}

.hero-body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  right: 24px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.hero-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 3px;
}

/* Slide counter */
.hero-counter {
  position: absolute;
  bottom: 36px;
  left: 24px;
  z-index: 10;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.15em;
}

.hero-counter span { color: var(--white); }

/* ── WHY CHOOSE US ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.why-card {
  background: var(--white);
  padding: 40px 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--bark);
  transition: width 0.4s var(--ease);
}

.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card:hover::before { width: 100%; }

.why-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.why-card h3 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  color: var(--blue);
}

.why-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(42,75,92,0.75);
}

/* ── OFFERINGS PREVIEW (homepage teaser) ───────────────────── */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.offering-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.offering-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.offering-card:hover .offering-card-bg {
  transform: scale(1.06);
}

.offering-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,75,92,0.85) 0%, transparent 60%);
}

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

.offering-card-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--bark);
  display: block;
  margin-bottom: 8px;
}

.offering-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.offering-card-link {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}

.offering-card:hover .offering-card-link {
  color: var(--white);
  gap: 14px;
}

/* ── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  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(42,75,92,0.82) 0%, rgba(42,75,92,0.3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--bark);
  display: block;
  margin-bottom: 14px;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  max-width: 640px;
}

.page-hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ── STAYS & EXPERIENCES ───────────────────────────────────── */
.offering-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--light-bg);
}

.offering-block:last-of-type { border-bottom: none; }

.offering-block.reverse { direction: rtl; }
.offering-block.reverse > * { direction: ltr; }

.offering-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.offering-img-wrap img,
.offering-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offering-img-placeholder {
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.offering-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80%;
  height: 80%;
  border: 2px solid var(--bark);
  z-index: -1;
}

.offering-hook {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--bark);
  display: block;
  margin-bottom: 12px;
}

.offering-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--blue);
  margin-bottom: 20px;
}

.offering-pitch {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
  color: rgba(42,75,92,0.82);
}

.inclusions {
  margin-bottom: 32px;
}

.inclusions h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 14px;
}

.inclusions li {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(42,75,92,0.8);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-bg);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.inclusions li::before {
  content: '→';
  color: var(--bark);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.best-for {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(42,75,92,0.6);
  font-style: italic;
  margin-bottom: 28px;
  display: block;
}

/* ── EXPEDITION ────────────────────────────────────────────── */
.expedition-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 24px 64px;
}

.route-section {
  background: var(--blue);
  padding: var(--section-pad) 0;
}

.route-section .section-label,
.route-section .section-headline,
.route-section p {
  color: var(--white);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  margin-top: 56px;
}

.route-day {
  background: rgba(255,255,255,0.05);
  padding: 32px 28px;
  border-left: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.route-day:hover {
  border-color: var(--bark);
  background: rgba(255,255,255,0.08);
}

.route-day-num {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--bark);
  display: block;
  margin-bottom: 10px;
}

.route-day h3 {
  font-family: var(--font-serif);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.route-day p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.guidelines-section {
  background: var(--light-bg);
  padding: 64px 0;
}

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

.guideline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.guideline-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.guideline-item p {
  font-size: 0.88rem;
  line-height: 1.65;
}

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

.about-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 28px;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.pillars-section {
  background: var(--blue);
  padding: var(--section-pad) 0;
}

.pillars-section .section-label { color: var(--bark); }
.pillars-section .section-headline { color: var(--white); }

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

.pillar-card {
  padding: 40px 32px;
  background: rgba(255,255,255,0.06);
  border-top: 2px solid var(--bark);
}

.pillar-card h3 {
  color: var(--white);
  font-size: 0.78rem;
  margin-bottom: 16px;
}

.pillar-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--light-bg);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question span:first-child {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.5;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--blue);
  transition: all 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--bark);
  border-color: var(--bark);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.8;
  padding-bottom: 24px;
  color: rgba(42,75,92,0.78);
}

/* ── BLOG ──────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--light-bg);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

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

.blog-placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--light-bg);
}

.blog-card-meta {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bark);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(42,75,92,0.72);
  flex: 1;
  margin-bottom: 20px;
}

.blog-read-more {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.blog-card:hover .blog-read-more { gap: 14px; }

.blog-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 0;
}

.blog-empty p {
  font-size: 0.95rem;
  color: rgba(42,75,92,0.5);
  font-style: italic;
}

/* ── ENQUIRE FORM SECTION ──────────────────────────────────── */
.enquire-section {
  background: var(--blue);
  padding: var(--section-pad) 0;
}

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

.enquire-text .section-label { color: var(--bark); }
.enquire-text .section-headline { color: var(--white); }
.enquire-text p { color: rgba(255,255,255,0.72); font-size: 0.95rem; margin-bottom: 24px; }

.enquire-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.form-group label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 12px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }

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

.form-group select option { background: var(--blue); color: var(--white); }

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

.form-success {
  display: none;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.4);
  padding: 16px;
  border-radius: 2px;
  color: var(--white);
  font-size: 0.9rem;
  text-align: center;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--blue);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin: 16px 0 12px;
}

.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.footer-social a:hover { background: var(--bark); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

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

.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ── WHATSAPP FLOAT ────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ── HERO BG PLACEHOLDERS ──────────────────────────────────── */
.hero-bg-1 {
  background-color: #3a5a6c;
  background-image: radial-gradient(ellipse at 30% 70%, rgba(140,94,69,0.3), transparent 60%),
                    radial-gradient(ellipse at 70% 30%, rgba(42,75,92,0.4), transparent 50%);
}

.hero-bg-2 {
  background-color: #2d4a5b;
  background-image: radial-gradient(ellipse at 60% 80%, rgba(140,94,69,0.25), transparent 60%);
}

.hero-bg-3 {
  background-color: #35546a;
  background-image: radial-gradient(ellipse at 20% 60%, rgba(100,130,100,0.3), transparent 55%);
}

/* ── CONTENT INTRO BAND ────────────────────────────────────── */
.intro-band {
  background: var(--light-bg);
  padding: 56px 0;
  text-align: center;
}

.intro-band p {
  max-width: 700px;
  margin: 16px auto 0;
  font-size: 1rem;
  line-height: 1.85;
}

/* ── BOOKING CTA SECTION ───────────────────────────────────── */
.booking-cta {
  background: var(--bg);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--light-bg);
}

.booking-cta .section-headline { margin-bottom: 16px; }
.booking-cta p {
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 0.95rem;
  color: rgba(42,75,92,0.72);
}

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

/* ── ANIMATIONS ────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .enquire-inner { grid-template-columns: 1fr; gap: 40px; }
  .offering-block { grid-template-columns: 1fr; gap: 40px; }
  .offering-block.reverse { direction: ltr; }
  .about-intro { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
    --section-pad: 64px;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--blue);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-110%);
    transition: transform 0.35s var(--ease);
    align-items: flex-start;
  }

  .nav-menu.open { transform: translateY(0); }
  .nav-toggle { display: flex; }

  .why-grid { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .offerings-grid .offering-card { aspect-ratio: 16/10; }
  .blog-grid { grid-template-columns: 1fr; }
  .route-grid { grid-template-columns: 1fr; }
  .guidelines-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .booking-cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 20px; }
  .hero-headline { font-size: 2rem; }
  .page-hero-title { font-size: 1.8rem; }
}

/* ── NAV HAMBURGER AT 1200px (13" screens and below) ───────── */
@media (max-width: 1200px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--blue);
    flex-direction: column;
    padding: 20px 28px 28px;
    gap: 18px;
    transform: translateY(-110%);
    transition: transform 0.35s var(--ease);
    align-items: flex-start;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    z-index: 998;
  }

  .nav-menu a {
    font-size: 12px;
    letter-spacing: 0.14em;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 100%;
  }

  .nav-menu a:last-child { border-bottom: none; }
  .nav-menu.open { transform: translateY(0); }
}
