/* ============================================================
   TIRAN TRAVERSE — Luxury Travel CSS
   Dark Forest Green (#1a3325) + Warm Gold (#c9a96e) + Cream (#f8f4ef)
   ============================================================ */

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

:root {
  --green:     #1a3325;
  --green-mid: #244535;
  --green-lt:  #2e5a44;
  --gold:      #c9a96e;
  --gold-lt:   #e0c99a;
  --cream:     #f8f4ef;
  --cream-dk:  #ede8e0;
  --white:     #ffffff;
  --dark:      #0e1f16;
  --text:      #2a2a2a;
  --text-lt:   #6b6b6b;
  --serif:     'Cormorant Garamond', serif;
  --sans:      'Jost', sans-serif;
  --radius:    4px;
  --trans:     0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); overflow-x: hidden; }
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p  { font-size: 0.95rem; line-height: 1.85; color: var(--text-lt); }

/* ── UTILITY ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.text-gold  { color: var(--gold); }
.text-center { text-align: center; }
.section-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--trans);
  cursor: pointer;
  border: none;
}
.btn-gold   { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-dark   { background: var(--green); color: var(--white); }
.btn-dark:hover { background: var(--green-lt); transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.transparent { background: transparent; }
.navbar.scrolled     { background: var(--green); box-shadow: 0 4px 30px rgba(0,0,0,0.25); }

.navbar-logo {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--white);
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.navbar-logo span { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-family: var(--sans); font-weight: 500; margin-top: 2px; }

.navbar-nav { display: flex; align-items: center; gap: 36px; }
.navbar-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color 0.3s;
}
.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.navbar-nav a:hover { color: var(--white); }
.navbar-nav a:hover::after, .navbar-nav a.active::after { width: 100%; }
.navbar-nav a.active { color: var(--gold); }

.navbar-cta { margin-left: 20px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; border-radius: 2px; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,16,0.85) 0%, rgba(10,25,16,0.3) 50%, rgba(10,25,16,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 860px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 40px; height: 1.5px;
  background: var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 20px; font-weight: 300; }
.hero h1 em { font-style: italic; color: var(--gold-lt); }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 40px; max-width: 520px; line-height: 1.9; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px; right: 80px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  gap: 0;
}
.hero-scroll .line {
  display: block;
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.4);
  margin: 0 auto 12px;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; right: 0;
  z-index: 2;
  display: flex;
  background: rgba(26,51,37,0.9);
  backdrop-filter: blur(10px);
}
.hero-stat {
  padding: 24px 36px;
  border-left: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.hero-stat:first-child { border-left: none; }
.hero-stat strong { display: block; font-family: var(--serif); font-size: 2rem; color: var(--gold); line-height: 1; }
.hero-stat span { font-size: 0.7rem; color: rgba(255,255,255,0.65); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── SECTION STANDARD ── */
.section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 16px; color: var(--green); }
.section-header p { max-width: 560px; }
.section-header.center p { margin: 0 auto; }
.divider { width: 60px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.divider.center { margin: 0 auto 24px; }

/* ── EXPERIENCE CARDS (Big Image Cards like African Trails) ── */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.exp-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
}
.exp-card:first-child { grid-column: span 2; }
.exp-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.exp-card:hover .exp-card-img { transform: scale(1.06); }
.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,16,0.9) 0%, rgba(10,25,16,0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transition: var(--trans);
}
.exp-card-tag { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 600; }
.exp-card-overlay h3 { color: var(--white); margin-bottom: 12px; }
.exp-card-overlay p { color: rgba(255,255,255,0.7); font-size: 0.88rem; max-width: 340px; opacity: 0; transform: translateY(10px); transition: var(--trans); }
.exp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--trans);
}
.exp-card:hover .exp-card-overlay p,
.exp-card:hover .exp-card-link { opacity: 1; transform: translateY(0); }

/* ── DESTINATION CARDS ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dest-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  transition: var(--trans);
  background: var(--white);
}
.dest-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.16); }
.dest-card-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.dest-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.dest-card-body { padding: 24px; }
.dest-card-body h3 { font-size: 1.25rem; color: var(--green); margin-bottom: 8px; }
.dest-card-body p { font-size: 0.84rem; margin-bottom: 20px; }
.dest-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dk);
}
.dest-card-footer span { font-size: 0.75rem; color: var(--text-lt); display: flex; align-items: center; gap: 5px; }
.dest-card-footer a { color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── SPLIT / STORY SECTION ── */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,25,16,0.15);
}
.split-body {
  background: var(--green);
  display: flex;
  align-items: center;
  padding: 80px;
}
.split-body.cream { background: var(--cream); }
.split-body h2 { color: var(--white); margin-bottom: 20px; }
.split-body.cream h2 { color: var(--green); }
.split-body p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.split-body.cream p { color: var(--text-lt); }
.split-features { margin-bottom: 36px; }
.split-feature { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.split-feature-icon { width: 42px; height: 42px; background: rgba(201,169,110,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 1.1rem; }
.split-feature h4 { font-family: var(--sans); font-size: 0.85rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.split-body.cream .split-feature h4 { color: var(--green); }
.split-feature p { font-size: 0.82rem; margin: 0; }

/* ── PACKAGES / PRICING ── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pkg-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  transition: var(--trans);
  background: var(--white);
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.18); }
.pkg-card.featured { outline: 2px solid var(--gold); outline-offset: -2px; }
.pkg-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pkg-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.pkg-body { padding: 28px; }
.pkg-body h3 { color: var(--green); margin-bottom: 10px; font-size: 1.3rem; }
.pkg-meta { display: flex; gap: 20px; margin-bottom: 16px; }
.pkg-meta span { font-size: 0.75rem; color: var(--text-lt); display: flex; align-items: center; gap: 5px; }
.pkg-price { font-family: var(--serif); font-size: 2rem; color: var(--green); line-height: 1; margin-bottom: 6px; }
.pkg-price span { font-size: 0.85rem; font-family: var(--sans); color: var(--text-lt); }
.pkg-body p { font-size: 0.84rem; margin-bottom: 24px; }
.pkg-includes { margin-bottom: 28px; }
.pkg-includes li { font-size: 0.82rem; color: var(--text-lt); padding: 6px 0; border-bottom: 1px solid var(--cream-dk); display: flex; align-items: center; gap: 8px; }
.pkg-includes li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 0.9rem; }

/* ── STATS BAND ── */
.stats-band { background: var(--green); padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-item:last-child { border-right: none; }
.stat-item strong { display: block; font-family: var(--serif); font-size: 3.5rem; color: var(--gold); line-height: 1; }
.stat-item p { font-size: 0.78rem; color: rgba(255,255,255,0.65); letter-spacing: 0.1em; text-transform: uppercase; margin: 8px 0 0; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  position: relative;
}
.testi-card::before { content: '"'; font-family: var(--serif); font-size: 6rem; color: var(--gold); opacity: 0.25; position: absolute; top: -10px; left: 24px; line-height: 1; }
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; }
.testi-card p { font-style: italic; font-family: var(--serif); font-size: 1.05rem; line-height: 1.7; color: var(--text); margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background-size: cover; background-position: center; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--green); }
.testi-author span { font-size: 0.78rem; color: var(--text-lt); }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.why-card { text-align: center; padding: 20px; }
.why-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--green), var(--green-lt)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 1.8rem; box-shadow: 0 8px 24px rgba(26,51,37,0.2); }
.why-card h3 { font-size: 1.1rem; color: var(--green); margin-bottom: 12px; }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 30px rgba(0,0,0,0.08); transition: var(--trans); background: var(--white); }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,0.15); }
.blog-img { height: 220px; background-size: cover; background-position: center; }
.blog-body { padding: 28px; }
.blog-cat { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.blog-body h3 { font-size: 1.15rem; color: var(--green); margin-bottom: 12px; line-height: 1.4; }
.blog-body p { font-size: 0.84rem; margin-bottom: 20px; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-date { font-size: 0.75rem; color: var(--text-lt); }
.blog-link { font-size: 0.75rem; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  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,25,16,0.72); }
.cta-banner-content { position: relative; z-index: 1; text-align: center; width: 100%; padding: 0 40px; }
.cta-banner-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner-content p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 36px; font-size: 1rem; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.88rem; line-height: 1.9; margin: 20px 0 28px; max-width: 300px; }
.footer-logo { font-family: var(--serif); font-size: 1.8rem; color: var(--white); }
.footer-logo span { display: block; font-family: var(--sans); font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: var(--trans); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer-col h4 { font-family: var(--sans); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact li { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-bottom: 14px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
.footer-contact li .icon { color: var(--gold); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; }
.footer-bottom p { color: rgba(255,255,255,0.4); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-info h2 { color: var(--green); margin-bottom: 20px; }
.contact-info p { margin-bottom: 36px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-detail-icon { width: 48px; height: 48px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }
.contact-detail h4 { font-family: var(--sans); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
.contact-detail p { font-size: 0.9rem; color: var(--text-lt); margin: 0; }
.contact-form-wrap { background: var(--white); border-radius: 16px; padding: 48px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.contact-form-wrap h3 { color: var(--green); margin-bottom: 8px; font-size: 1.5rem; }
.contact-form-wrap > p { margin-bottom: 32px; font-size: 0.88rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 480px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
}
.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,25,16,0.85) 0%, rgba(10,25,16,0.3) 70%); }
.page-hero-content { position: relative; z-index: 1; padding: 0 80px; }
.page-hero-content h1 { color: var(--white); margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── ABOUT PAGE ── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-photo { height: 280px; border-radius: 8px; background-size: cover; background-position: top; margin-bottom: 20px; position: relative; overflow: hidden; }
.team-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,51,37,0.5) 0%, transparent 50%); }
.team-card h3 { font-size: 1.1rem; color: var(--green); margin-bottom: 4px; }
.team-card span { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--trans);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(37,211,102,0.55); }
.wa-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* ── AOS ANIMATIONS ── */
[data-aos] { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .navbar { padding: 0 28px; }
  .hero-content { padding: 0 40px; }
  .page-hero-content { padding: 0 40px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 768px) {
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .navbar-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--green);
    padding: 30px 28px;
    gap: 20px;
  }
  .hero-content { padding: 0 24px; }
  .hero-stats { display: none; }
  .hero-scroll { display: none; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { height: 360px; }
  .exp-card:first-child { grid-column: span 1; }
  .dest-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-body { padding: 50px 28px; }
  .split.reverse { direction: ltr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .page-hero { height: 380px; }
  .page-hero-content { padding: 0 24px; }
}
