/* ================================================
   SELTRAVEL — Global Stylesheet
   Theme: Tropical Indochina | Thailand · Kamboja · Vietnam
   Palette: Deep Jungle + Amber Gold + Ivory
   ================================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ---------- TOKENS ---------- */
:root {
  --jungle:      #0D4F3C;
  --jungle-dark: #08362A;
  --jungle-mid:  #155c46;
  --amber:       #F5A623;
  --amber-light: #FDEAB0;
  --ivory:       #F9F5EE;
  --ivory-dark:  #EDE7D9;
  --cream:       #FBF8F3;
  --leaf:        #2E7D5E;
  --leaf-light:  #4CA87A;
  --red-accent:  #C0392B;
  --text-dark:   #1A1A1A;
  --text-mid:    #3D3D3D;
  --text-muted:  #6B7280;
  --white:       #FFFFFF;
  --border:      #D8CEBC;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(13,79,60,.08);
  --shadow-md: 0 6px 24px rgba(13,79,60,.13);
  --shadow-lg: 0 16px 48px rgba(13,79,60,.18);

  --container: 1160px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

/* ---------- CONTAINER ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ---------- SECTION ---------- */
.section { padding: 80px 0; }
.section--ivory { background: var(--ivory); }
.section--jungle { background: var(--jungle); }
.section--cream { background: var(--cream); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.text-amber { color: var(--amber); }

/* ---------- EYEBROW ---------- */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.3);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}

/* ---------- TYPOGRAPHY ---------- */
.section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section--jungle h2 { color: var(--white); }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--amber);
  color: var(--jungle-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(245,166,35,.35);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #e0941a;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245,166,35,.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--jungle);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 50px;
  border: 2px solid var(--jungle);
  transition: var(--transition);
}
.btn-secondary:hover { background: var(--jungle); color: white; }
.btn-wa { background: #25D366; color: white; box-shadow: 0 4px 16px rgba(37,211,102,.35); }
.btn-wa:hover { background: #1fb958; box-shadow: 0 6px 22px rgba(37,211,102,.45); color: white; }
.btn-full { width: 100%; justify-content: center; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(249,245,238,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--jungle);
  flex-shrink: 0;
}
.nav-logo-leaf {
  width: 34px; height: 34px;
  background: var(--jungle);
  border-radius: 50% 20% 50% 20%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--jungle); background: rgba(13,79,60,.07); }
.nav-cta {
  background: var(--jungle) !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 9px 18px !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: var(--jungle-mid) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--jungle);
  border-radius: 2px;
  transition: var(--transition);
}
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; }
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--jungle-dark);
  overflow: hidden;
}
.hero-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(21,92,70,.6) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(245,166,35,.08) 0%, transparent 50%),
    linear-gradient(135deg, #05251c 0%, #0D4F3C 60%, #0a3d2e 100%);
  z-index: 0;
}
/* Decorative circles */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(245,166,35,.07);
  z-index: 0;
}
.hero-orb-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.hero-orb-2 { width: 300px; height: 300px; bottom: -60px; left: 10%; opacity: .5; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.4);
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-cta-group .btn-secondary {
  color: white;
  border-color: rgba(255,255,255,.4);
}
.hero-cta-group .btn-secondary:hover { border-color: white; background: rgba(255,255,255,.1); }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-item { color: rgba(255,255,255,.9); }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,.55); letter-spacing: .05em; }

/* Floating destination cards */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dest-float-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}
.dest-float-icon {
  width: 42px; height: 42px;
  background: rgba(245,166,35,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.dest-float-name { font-size: 0.85rem; font-weight: 600; color: white; margin-bottom: 2px; }
.dest-float-price { font-size: 0.75rem; color: var(--amber); font-weight: 500; }

@media (max-width: 900px) { .hero-visual { display: none; } }

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar {
  background: var(--amber);
  padding: 12px 0;
  overflow: hidden;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-bar .container::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--jungle-dark);
  white-space: nowrap;
  padding: 0 20px;
  border-right: 1px solid rgba(13,79,60,.2);
}
.trust-item:last-child { border-right: none; }

/* ================================================
   SERVICES GRID
   ================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 700px) { .services-grid { grid-template-columns: 1fr; } }
@media (min-width: 701px) and (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jungle), var(--amber));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(13,79,60,.2); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(13,79,60,.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--jungle); }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ================================================
   WHY US
   ================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }

.why-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.why-icon {
  width: 48px; height: 48px;
  background: rgba(245,166,35,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.why-text h4 { font-family: var(--font-display); font-size: 1rem; color: white; margin-bottom: 6px; }
.why-text p { font-size: 0.875rem; color: rgba(255,255,255,.6); line-height: 1.6; }

.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: center;
}
.why-big-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.why-big-lbl { font-size: 0.875rem; color: rgba(255,255,255,.6); margin-bottom: 28px; }
.why-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.why-badge {
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  padding: 14px 10px;
}
.why-badge .num { font-family: var(--font-display); font-size: 1.3rem; color: var(--amber); font-weight: 700; }
.why-badge .lbl { font-size: 0.72rem; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ================================================
   DESTINATION GRID
   ================================================ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
  margin-top: 48px;
}
.dest-grid .dest-item:nth-child(1) { grid-row: 1 / 3; }
@media (max-width: 768px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .dest-grid .dest-item:nth-child(1) { grid-row: auto; }
  .dest-grid .dest-item { height: 200px; }
}
@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-grid .dest-item { height: 220px; }
}

.dest-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--jungle-mid);
  display: flex;
  align-items: flex-end;
}
.dest-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,37,28,.85) 0%, rgba(5,37,28,.2) 50%, transparent 100%);
  transition: var(--transition);
}
.dest-item:hover .dest-item-overlay { background: linear-gradient(to top, rgba(5,37,28,.9) 0%, rgba(5,37,28,.3) 60%, rgba(5,37,28,.05) 100%); }
.dest-item:hover { transform: scale(1.01); }
.dest-item-info {
  position: relative;
  z-index: 1;
  padding: 20px;
  width: 100%;
}
.dest-item-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--amber);
  color: var(--jungle-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}
.dest-item-flag { font-size: 1.3rem; margin-bottom: 4px; }
.dest-item-name { font-family: var(--font-display); font-size: 1.2rem; color: white; font-weight: 700; }
.dest-item-sub { font-size: 0.75rem; color: rgba(255,255,255,.65); margin-bottom: 4px; }
.dest-item-price { font-size: 0.8rem; color: var(--amber); font-weight: 600; }

/* Gradient placeholders for images */
.dest-thailand { background: linear-gradient(135deg, #1a6b4a 0%, #0d3d28 60%, #2d8a5e 100%); }
.dest-kamboja  { background: linear-gradient(135deg, #5c3317 0%, #8B4513 40%, #3d2010 100%); }
.dest-vietnam  { background: linear-gradient(135deg, #8B1A1A 0%, #5c1111 60%, #a52020 100%); }
.dest-bangkok  { background: linear-gradient(135deg, #1a4a6b 0%, #0d2d3d 60%, #2a6b8a 100%); }
.dest-angkor   { background: linear-gradient(135deg, #6b4f1a 0%, #3d2c0d 60%, #8a6a30 100%); }
.dest-hanoi    { background: linear-gradient(135deg, #3d6b1a 0%, #1e3d0d 60%, #5a8a30 100%); }

/* ================================================
   PACKAGE CARDS
   ================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}
@media (max-width: 900px) { .packages-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

.package-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.package-card.featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}
.package-header {
  background: var(--jungle);
  padding: 24px;
  text-align: center;
  position: relative;
}
.package-card.featured .package-header { background: linear-gradient(135deg, var(--jungle), #1a7a55); }
.package-featured-badge {
  position: absolute;
  top: -1px; right: 16px;
  background: var(--amber);
  color: var(--jungle-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 10px 10px;
}
.package-emoji { font-size: 2rem; display: block; margin-bottom: 8px; }
.package-name { font-family: var(--font-display); font-size: 1.15rem; color: white; font-weight: 700; }
.package-body { padding: 24px; }
.package-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--jungle); }
.package-card.featured .package-price { color: var(--amber); }
.package-price-note { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 20px; }
.package-features { margin-bottom: 24px; }
.package-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--ivory-dark);
}
.package-feature::before { content: '✓'; color: var(--leaf); font-weight: 700; flex-shrink: 0; }
.btn-package {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--jungle);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 13px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.btn-package:hover { background: var(--jungle-mid); }
.package-card.featured .btn-package { background: var(--amber); color: var(--jungle-dark); }
.package-card.featured .btn-package:hover { background: #e0941a; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px; left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(13,79,60,.1);
  pointer-events: none;
}
.testimonial-stars { color: var(--amber); font-size: 1rem; margin-bottom: 14px; }
.testimonial-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--jungle);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.875rem; color: var(--text-dark); }
.author-location { font-size: 0.75rem; color: var(--text-muted); }

/* ================================================
   FAQ
   ================================================ */
.faq-list { max-width: 720px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--jungle); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--jungle);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--jungle); color: white; border-color: var(--jungle); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--jungle-dark) 0%, var(--jungle) 60%, #1a7a55 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(245,166,35,.08) 0%, transparent 60%);
}
.cta-section h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.7); max-width: 480px; margin: 0 auto 36px; }
.cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(13,79,60,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-text h4 { font-size: 0.875rem; font-weight: 700; color: var(--jungle); margin-bottom: 4px; }
.contact-info-text a { color: var(--jungle); font-weight: 600; font-size: 0.875rem; }
.contact-info-text p { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--jungle); background: white; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit { margin-top: 24px; }

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--jungle-dark) 0%, var(--jungle) 100%);
  padding: 56px 0 48px;
  text-align: center;
}
.page-hero h1 { color: white; font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 0.95rem; margin-bottom: 16px; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: var(--amber); }
.breadcrumb span[aria-current] { color: white; }

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--jungle-dark);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .nav-logo { color: var(--ivory); margin-bottom: 14px; display: inline-flex; }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col ul a:hover { color: white; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { font-size: 0.84rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: white; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: white; }

/* ================================================
   FLOATING WA BUTTON
   ================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row-reverse;
}
.wa-float-label {
  background: white;
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-float-label { opacity: 1; transform: translateX(0); }
.wa-float-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: var(--transition);
}
.wa-float-btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,.55); }

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-visual {
  background: linear-gradient(135deg, var(--jungle), #1a7a55);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  text-align: center;
}
.about-big-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.about-big-label { font-size: 0.85rem; color: rgba(255,255,255,.65); margin-bottom: 28px; }
.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.about-mini-stat {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 16px 12px;
}
.about-mini-stat .num { font-family: var(--font-display); font-size: 1.4rem; color: var(--amber); font-weight: 700; }
.about-mini-stat .lbl { font-size: 0.72rem; color: rgba(255,255,255,.5); margin-top: 2px; }

.about-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
.about-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }

/* ================================================
   TEAM GRID
   ================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.team-avatar {
  font-size: 2.5rem;
  margin-bottom: 12px;
  background: rgba(13,79,60,.07);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.team-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--text-muted); }

/* ================================================
   LEGAL CONTENT
   ================================================ */
.legal-content {
  max-width: 800px;
  margin: 48px auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
@media (max-width: 600px) { .legal-content { padding: 28px 20px; } }
.legal-meta {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.legal-content h2 { font-size: 1.1rem; color: var(--jungle); margin: 28px 0 10px; }
.legal-content h3 { font-size: 1rem; color: var(--text-dark); margin: 20px 0 8px; }
.legal-content p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 12px; }
.legal-content ul, .legal-content ol {
  margin: 12px 0 16px 20px;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.legal-content li { margin-bottom: 6px; }

/* ================================================
   UTILITY
   ================================================ */
.section-dark-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.25);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hero { min-height: 100svh; }
  .cta-section { padding: 60px 0; }
  .contact-form-card { padding: 24px 18px; }
  .legal-content { margin: 24px auto; }
}
