/* ===================================================================
   AADT GLOBAL EXIM PRIVATE LIMITED
   Master Stylesheet  |  HTML + CSS + JS only
   Theme: Fresh Agricultural Export (Green + Gold) | Glassmorphism
   =================================================================== */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand palette */
  --green-900: #0c3a1e;
  --green-800: #144a27;
  --green-700: #1b5e20;
  --green-600: #2e7d32;
  --green-500: #43a047;
  --green-400: #66bb6a;
  --green-100: #e8f5e9;
  --green-050: #f3faf4;

  --gold-600: #d99a00;
  --gold-500: #f5a800;
  --gold-400: #ffb300;
  --gold-300: #ffcb52;

  --ink: #14241a;
  --body: #475a4f;
  --muted: #7d8c84;
  --line: #e3ece6;
  --white: #ffffff;
  --cream: #f7faf6;

  /* Effects */
  --shadow-sm: 0 4px 14px rgba(16, 58, 30, .08);
  --shadow-md: 0 14px 38px rgba(16, 58, 30, .12);
  --shadow-lg: 0 28px 70px rgba(16, 58, 30, .18);
  --glass-bg: rgba(255, 255, 255, .72);
  --glass-brd: rgba(255, 255, 255, .55);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --grad-green: linear-gradient(135deg, var(--green-700), var(--green-500));
  --grad-gold: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  --grad-hero: linear-gradient(120deg, #0c3a1e 0%, #1b5e20 45%, #2e7d32 100%);

  --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- 2. RESET ---------- */
*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.01em;
}

/* ---------- 3. LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 40px);
}

.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--tight { padding: clamp(40px, 6vw, 80px) 0; }
.section--cream { background: var(--cream); }
.section--mint { background: var(--green-050); }
.section--dark { background: var(--grad-hero); color: #d9efdf; }
.section--dark h2, .section--dark h3 { color: #fff; }

.center { text-align: center; }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(34px, 5vw, 60px);
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section--dark .eyebrow { background: rgba(255, 255, 255, .12); color: var(--gold-300); }
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.75rem); }
.section-sub { margin-top: 14px; color: var(--body); font-size: 1.02rem; }
.section--dark .section-sub { color: #c4dccb; }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--grad-green); color: #fff; box-shadow: 0 10px 26px rgba(27, 94, 32, .32); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(27, 94, 32, .42); }
.btn-gold { background: var(--grad-gold); color: #4a3500; box-shadow: 0 10px 26px rgba(245, 168, 0, .35); }
.btn-gold:hover { box-shadow: 0 16px 34px rgba(245, 168, 0, .48); }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 10px 26px rgba(37, 211, 102, .35); }
.btn-wa:hover { box-shadow: 0 16px 34px rgba(37, 211, 102, .48); }
.btn-ghost { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn-ghost:hover { background: #fff; color: var(--green-700); }
.btn-outline { background: transparent; color: var(--green-700); border-color: var(--green-500); }
.btn-outline:hover { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-icon svg, .btn-icon i { width: 18px; height: 18px; }

/* ===================================================================
   5. HEADER
   =================================================================== */
.topbar {
  background: var(--green-900);
  color: #cfe6d5;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar ul { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar li { display: inline-flex; align-items: center; gap: 7px; }
.topbar a { transition: color .25s; }
.topbar a:hover { color: var(--gold-300); }
.topbar .ico { color: var(--gold-400); display: inline-flex; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--glass-brd);
  transition: padding .35s var(--ease), box-shadow .35s var(--ease), background .35s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, .92);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  transition: min-height .35s var(--ease);
}
.site-header.scrolled .nav { min-height: 66px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--grad-green);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(27, 94, 32, .3);
  flex-shrink: 0;
  letter-spacing: -.5px;
}
.brand-text strong {
  display: block;
  color: var(--green-800);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.1;
}
.brand-text span {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
}

.menu { display: flex; align-items: center; gap: 4px; }
.menu a {
  position: relative;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  transition: color .25s, background .25s;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 4px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.menu a:hover { color: var(--green-700); }
.menu a:hover::after,
.menu a.active::after { transform: scaleX(1); }
.menu a.active { color: var(--green-700); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--green-100);
  position: relative;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 22px; height: 2.4px;
  background: var(--green-800);
  border-radius: 3px;
  transform: translate(-50%, -50%);
  transition: .3s var(--ease);
}
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { top: 0; transform: translate(-50%, -50%) rotate(45deg); }
.hamburger.open span::after { top: 0; transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  background: #fff;
  z-index: 1000;
  transform: translateX(105%);
  transition: transform .42s var(--ease);
  box-shadow: var(--shadow-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .mm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mobile-menu .mm-close { font-size: 1.8rem; color: var(--green-800); line-height: 1; padding: 4px 10px; }
.mobile-menu a.mm-link {
  padding: 14px 14px;
  border-radius: 12px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: background .2s, padding-left .2s;
}
.mobile-menu a.mm-link:hover,
.mobile-menu a.mm-link.active { background: var(--green-050); color: var(--green-700); padding-left: 20px; }
.mobile-menu .mm-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.overlay {
  position: fixed; inset: 0;
  background: rgba(12, 58, 30, .4);
  backdrop-filter: blur(3px);
  z-index: 950;
  opacity: 0; visibility: hidden;
  transition: .35s;
}
.overlay.show { opacity: 1; visibility: visible; }

/* ===================================================================
   6. PAGE BANNER (placeholder image)
   =================================================================== */
.banner {
  position: relative;
  min-height: clamp(260px, 38vw, 420px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  /* >>> REPLACE url() with your uploaded image per page <<< */
  background: var(--grad-hero);
  background-size: cover;
  background-position: center;
}
.banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12, 58, 30, .72), rgba(12, 58, 30, .82));
  z-index: -1;
}
.banner-inner { padding: 90px 20px 60px; max-width: 820px; }
.banner h1 { color: #fff; font-size: clamp(1.9rem, 5vw, 3.2rem); }
.banner p { color: #d6ecdc; margin-top: 14px; font-size: clamp(1rem, 2.4vw, 1.18rem); }
.breadcrumb {
  display: inline-flex; gap: 8px; align-items: center;
  margin-top: 20px;
  font-size: .85rem;
  color: #cfe6d5;
}
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb span { color: var(--gold-300); }

/* Banner upload hint chip (shows only while no image set) */
.banner .upload-hint {
  position: absolute;
  bottom: 14px; right: 16px;
  font-size: .7rem;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .55);
  background: rgba(0, 0, 0, .25);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  z-index: 1;
}

/* ===================================================================
   7. HERO (Home)
   =================================================================== */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: #eaf6ee;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  /* >>> World map background placeholder <<< */
  background: url("../images/world-map.svg") center/cover no-repeat;
  opacity: .12;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  right: -160px; top: -180px;
  background: radial-gradient(circle, rgba(245, 168, 0, .28), transparent 65%);
  z-index: -1;
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: clamp(60px, 9vw, 120px) 0 clamp(56px, 8vw, 100px);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  color: var(--gold-300);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
.hero h1 .hl { color: var(--gold-300); }
.hero-sub { margin-top: 20px; font-size: clamp(1rem, 2.2vw, 1.18rem); color: #cfe6d5; max-width: 560px; }
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.hero-tile {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 140px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow-md);
}
.hero-tile:nth-child(1) { grid-row: span 2; min-height: 296px; }
.hero-tile .media-box { height: 100%; }
.hero-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(12, 58, 30, .85));
  color: #fff; font-size: .82rem; font-weight: 600;
}

/* Floating stat chips */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: clamp(34px, 5vw, 54px);
}
.stat-chip {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.stat-chip .ico { font-size: 1.4rem; color: var(--gold-300); display: block; margin-bottom: 6px; }
.stat-chip strong { display: block; color: #fff; font-size: .98rem; }

/* ===================================================================
   8. CARDS & GRIDS (shared)
   =================================================================== */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.card .card-ico {
  width: 56px; height: 56px;
  border-radius: 15px;
  background: var(--green-100);
  color: var(--green-700);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: background .3s, color .3s, transform .4s var(--ease);
}
.card:hover .card-ico { background: var(--grad-green); color: #fff; transform: rotate(-6deg) scale(1.05); }
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card p { font-size: .94rem; color: var(--body); }

/* Feature check list (Why choose us) */
.feature-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-card .tick {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--grad-green);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
}
.feature-card h4 { font-size: 1rem; margin-bottom: 3px; }
.feature-card p { font-size: .86rem; color: var(--muted); }

/* ---------- Media placeholder system ---------- */
.media-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-100), #fff);
}
.media-box img.media-img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative; z-index: 2;
  transition: transform .6s var(--ease);
}
.media-placeholder {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  background: repeating-linear-gradient(45deg, #eef6ef, #eef6ef 14px, #e6f1e7 14px, #e6f1e7 28px);
  color: var(--green-700);
  text-align: center;
  padding: 12px;
}
.media-placeholder .ph-icon { font-size: 2.2rem; }
.media-placeholder span { font-weight: 600; font-size: .95rem; }
.media-placeholder small { font-size: .68rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

/* ===================================================================
   9. PRODUCT CARDS
   =================================================================== */
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card:hover .media-img { transform: scale(1.08); }
.product-media { position: relative; }
.badge-quality {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: var(--grad-gold);
  color: #4a3500;
  font-size: .68rem; font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: .03em;
  box-shadow: 0 6px 16px rgba(245, 168, 0, .4);
}
.product-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.08rem; margin-bottom: 6px; }
.product-body p { font-size: .88rem; color: var(--body); flex: 1; }
.product-body .btn { margin-top: 16px; align-self: flex-start; }

/* Category block heading (Products page) */
.cat-head {
  display: flex; align-items: center; gap: 14px;
  margin: clamp(30px, 5vw, 54px) 0 22px;
}
.cat-head .cat-ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--grad-green);
  color: #fff; display: grid; place-items: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.cat-head h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
.cat-head p { font-size: .9rem; color: var(--muted); }
.cat-head .line { flex: 1; height: 1px; background: var(--line); }

/* ===================================================================
   10. COUNTRIES + TRUST
   =================================================================== */
.country-cloud {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  max-width: 900px; margin: 0 auto;
}
.country-pill {
  background: #fff;
  border: 1px solid var(--line);
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s;
}
.country-pill::before { content: "📍 "; }
.country-pill:hover { background: var(--grad-green); color: #fff; transform: translateY(-4px); border-color: transparent; }

.section--dark .country-pill { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .15); color: #eaf6ee; }
.section--dark .country-pill:hover { background: var(--grad-gold); color: #4a3500; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease);
}
.trust-item:hover { transform: translateY(-4px); }
.trust-item .ico {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 11px;
  background: var(--green-100); color: var(--green-700);
  display: grid; place-items: center; font-size: 1.15rem;
}
.trust-item .ti-text { min-width: 0; flex: 1; }
.trust-item strong { display: block; font-size: .92rem; line-height: 1.3; color: var(--ink); }
.trust-item small { display: block; font-size: .76rem; color: var(--muted); word-break: break-word; line-height: 1.4; }

/* ===================================================================
   11. CTA BANNER
   =================================================================== */
.cta-band {
  background: var(--grad-green);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 60px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-band::before {
  content: "";
  position: absolute; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(245, 168, 0, .35), transparent 60%);
  top: -120px; right: -80px;
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3.4vw, 2.3rem); position: relative; }
.cta-band p { color: #d6ecdc; max-width: 640px; margin: 14px auto 28px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ===================================================================
   12. ABOUT specific
   =================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.split .media-box { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 5/4; }
.about-list { margin-top: 22px; display: grid; gap: 14px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; }
.about-list .tick { color: var(--green-600); font-weight: 800; flex-shrink: 0; }

.vm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.vm-card .vm-ico {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--grad-gold);
  color: #4a3500;
  display: grid; place-items: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.founder-card {
  background: var(--grad-hero);
  color: #eaf6ee;
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}
.founder-card .quote-mark { font-size: 5rem; line-height: .6; color: var(--gold-400); font-family: Georgia, serif; }
.founder-card blockquote { font-size: clamp(1.1rem, 2.6vw, 1.5rem); color: #fff; font-weight: 500; margin: 10px 0 24px; }
.founder-meta { display: flex; align-items: center; gap: 16px; }
.founder-meta .avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad-gold); color: #4a3500;
  display: grid; place-items: center; font-weight: 800; font-size: 1.3rem;
  flex-shrink: 0;
}
.founder-meta strong { color: #fff; display: block; font-size: 1.05rem; }
.founder-meta span { color: var(--gold-300); font-size: .85rem; }

/* Leadership / registration strip */
.reg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.reg-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm); text-align: center;
  transition: transform .3s var(--ease);
}
.reg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.reg-card .ico { font-size: 1.7rem; color: var(--green-600); margin-bottom: 8px; }
.reg-card small { text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; color: var(--muted); }
.reg-card strong { display: block; font-size: 1.02rem; color: var(--ink); margin-top: 4px; word-break: break-word; }

/* ===================================================================
   13. GALLERY
   =================================================================== */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-weight: 500; font-size: .88rem;
  background: #fff; color: var(--body);
  border: 1px solid var(--line);
  transition: .3s var(--ease);
}
.filter-btn:hover { border-color: var(--green-400); color: var(--green-700); }
.filter-btn.active { background: var(--grad-green); color: #fff; border-color: transparent; box-shadow: var(--shadow-sm); }

.masonry {
  columns: 3;
  column-gap: 18px;
}
.masonry .gal-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.masonry .gal-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.masonry .gal-item .media-box { aspect-ratio: auto; }
.masonry .gal-item:nth-child(3n) .media-box { aspect-ratio: 3/4; }
.masonry .gal-item:nth-child(4n) .media-box { aspect-ratio: 1/1; }
.masonry .gal-item .gal-overlay {
  position: absolute; inset: 0; z-index: 4;
  background: linear-gradient(transparent 40%, rgba(12, 58, 30, .85));
  opacity: 0; transition: opacity .35s;
  display: flex; align-items: flex-end; padding: 16px;
  color: #fff; font-weight: 600;
}
.masonry .gal-item:hover .gal-overlay { opacity: 1; }
.masonry .gal-item:hover .media-img { transform: scale(1.08); }
.gal-hide { display: none !important; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(8, 30, 16, .92);
  display: none;
  align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox.show { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 22px; right: 28px; color: #fff; font-size: 2.4rem; line-height: 1; }
.lightbox .lb-cap { position: absolute; bottom: 26px; color: #d6ecdc; font-size: .95rem; }

/* ===================================================================
   14. CONTACT
   =================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 50px); align-items: start; }
.info-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm);
}
.info-row { display: flex; gap: 15px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row .ico {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 13px; background: var(--green-100); color: var(--green-700);
  display: grid; place-items: center; font-size: 1.25rem;
}
.info-row small { text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; color: var(--muted); }
.info-row strong { display: block; color: var(--ink); font-weight: 600; font-size: .98rem; word-break: break-word; }

.form-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink); }
.field label .req { color: #e53935; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: .92rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(67, 160, 71, .14);
}
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.form-note { margin-top: 14px; font-size: .82rem; padding: 12px 16px; border-radius: 12px; display: none; }
.form-note.ok { display: block; background: var(--green-100); color: var(--green-800); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  min-height: 360px;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

.quick-contact {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.qc-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 22px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.qc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.qc-card .ico {
  width: 56px; height: 56px; margin: 0 auto 14px;
  border-radius: 16px; background: var(--grad-green); color: #fff;
  display: grid; place-items: center; font-size: 1.4rem;
}
.qc-card h4 { font-size: 1rem; }
.qc-card a, .qc-card p { font-size: .88rem; color: var(--body); margin-top: 4px; }

/* ===================================================================
   15. FOOTER
   =================================================================== */
.site-footer { background: var(--green-900); color: #b9d4c0; padding-top: clamp(54px, 7vw, 86px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.4fr;
  gap: clamp(28px, 4vw, 50px);
  padding-bottom: 48px;
}
.footer-col h4 {
  color: #fff; font-size: 1rem; margin-bottom: 20px;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 40px; height: 3px; border-radius: 3px; background: var(--grad-gold);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand-mark { box-shadow: none; }
.footer-brand strong { color: #fff; font-size: 1.05rem; line-height: 1.2; }
.footer-col p { font-size: .9rem; line-height: 1.8; color: #9fc0a8; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { font-size: .9rem; color: #9fc0a8; transition: color .25s, padding-left .25s; }
.footer-col ul a:hover { color: var(--gold-300); padding-left: 6px; }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 14px; font-size: .9rem; color: #9fc0a8; }
.footer-contact .ico { color: var(--gold-400); flex-shrink: 0; margin-top: 2px; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(255, 255, 255, .07); color: #cfe6d5;
  display: grid; place-items: center; font-size: 1.05rem;
  transition: .3s var(--ease);
}
.social-row a:hover { background: var(--grad-gold); color: #4a3500; transform: translateY(-4px); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .82rem; color: #8fb199;
}
.footer-bottom .fb-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold-300); }
.seo-keywords {
  background: rgba(0, 0, 0, .25);
  padding: 16px 0;
  font-size: .72rem; line-height: 1.8; color: #5f7e69;
  text-align: center;
}

/* ===================================================================
   16. FLOATING WHATSAPP
   =================================================================== */
.wa-float {
  position: fixed; right: 22px; bottom: 24px; z-index: 920;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .45);
  animation: wa-pop .5s var(--ease) .4s both;
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.1) rotate(6deg); }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366; animation: wa-ring 2.2s ease-out infinite;
}
@keyframes wa-pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes wa-ring { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }

/* ===================================================================
   17. ENTRANCE ANIMATIONS (scroll reveal — runs once)
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-zoom { transform: scale(.92); }
.reveal-left.in, .reveal-right.in, .reveal-zoom.in { transform: none; }
/* Stagger via inline transition-delay set in JS */

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ===================================================================
   18. RESPONSIVE
   =================================================================== */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .quick-contact { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2; }
  .hero .container { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 860px) {
  .menu, .nav-cta { display: none; }
  .hamburger { display: grid; place-items: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .topbar { font-size: .76rem; }
  .topbar .topbar-right { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .quick-contact { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .brand-text span { display: none; }
  .hero .container { padding-left: 28px; padding-right: 28px; }
  .hero-grid { row-gap: clamp(28px, 6vw, 48px); }
  .hero-copy { padding-bottom: 18px; }
}

/* ===================================================================
   19. BRAND LOGO (PNG)  +  WHATSAPP ICON (PNG)  — upload-ready
   =================================================================== */
.brand-logo { height: 46px; width: auto; display: none; flex-shrink: 0; }
.brand-logo.show { display: block; }
.site-header.scrolled .brand-logo { height: 40px; }
.wa-float img { width: 34px; height: 34px; object-fit: contain; display: block; }
.btn-wa img, .social-row a img { width: 18px; height: 18px; object-fit: contain; }

/* ===================================================================
   20. MOBILE HEADER PADDING — even left/right alignment
   =================================================================== */
@media (max-width: 860px) {
  .site-header .container.nav { padding-left: 20px; padding-right: 20px; }
  .nav { gap: 14px; }
  .brand { min-width: 0; }
  .brand-text strong { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}
@media (max-width: 640px) {
  .site-header .container.nav { padding-left: 18px; padding-right: 18px; }
  .nav { gap: 12px; min-height: 64px; }
  .brand-mark { width: 42px; height: 42px; font-size: .9rem; border-radius: 11px; }
  .brand-logo.show { height: 40px; }
  .brand-text strong { font-size: .96rem; }
  .hamburger { width: 44px; height: 44px; flex-shrink: 0; }
}
@media (max-width: 380px) {
  .brand-text strong { font-size: .86rem; }
  .brand-mark { width: 38px; height: 38px; font-size: .8rem; }
}

/* ===================================================================
   21. LEGAL / PROSE PAGES (Privacy, Terms, Sitemap)
   =================================================================== */
.prose {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 5vw, 56px);
  box-shadow: var(--shadow-sm);
}
.prose h2 { font-size: 1.3rem; margin: 30px 0 12px; color: var(--green-800); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.05rem; margin: 20px 0 8px; }
.prose p { margin-bottom: 14px; color: var(--body); }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose ul li { margin-bottom: 8px; color: var(--body); }
.prose a { color: var(--green-600); font-weight: 500; text-decoration: underline; }
.prose a:hover { color: var(--green-800); }
.prose .updated { font-size: .85rem; color: var(--muted); margin-bottom: 24px; }

/* HTML sitemap */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.sitemap-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.sitemap-col h3 { font-size: 1.05rem; margin-bottom: 14px; color: var(--green-800); }
.sitemap-col ul li { margin-bottom: 10px; }
.sitemap-col ul a { color: var(--body); transition: color .2s, padding-left .2s; }
.sitemap-col ul a::before { content: "→ "; color: var(--gold-500); }
.sitemap-col ul a:hover { color: var(--green-700); padding-left: 4px; }
