/* =========================================================
   Eagle Business Enterprise — Design System
   ========================================================= */

:root {
  /* Brand greens (from logo) */
  --green-900: #0c3d1e;
  --green-800: #0f5228;
  --green-700: #14602d;
  --green-600: #187a37;
  --green-500: #1e9142;
  --green-400: #37a852;
  --green-300: #6cc482;
  --green-100: #e7f5ea;
  --green-050: #f3faf4;

  --leaf-500: #4caf50;
  --leaf-300: #8bd08f;

  --ink-900: #101913;
  --ink-700: #2c3a30;
  --ink-500: #56655a;
  --ink-300: #8a978c;
  --ink-100: #d9e2da;

  --white: #ffffff;
  --bg-soft: #f7faf7;

  --shadow-sm: 0 2px 10px rgba(12, 40, 20, 0.06);
  --shadow-md: 0 10px 30px rgba(12, 40, 20, 0.10);
  --shadow-lg: 0 25px 60px rgba(12, 40, 20, 0.18);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --container: 1200px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--green-900);
  line-height: 1.2;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--ink-700); }
button { font-family: inherit; cursor: pointer; }

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

section { padding: 96px 0; position: relative; }
@media (max-width: 768px) { section { padding: 64px 0; } }

.section-soft { background: var(--bg-soft); }
.section-dark {
  background: linear-gradient(160deg, var(--green-900), var(--green-700) 60%, var(--green-600));
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-dark .eyebrow {
  color: var(--green-100);
  background: rgba(255,255,255,0.12);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--leaf-500);
  flex-shrink: 0;
}

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { font-size: 17px; color: var(--ink-500); }
.section-dark .section-head p { color: var(--green-100); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.14); border-color: var(--white); transform: translateY(-3px); }
.btn-ghost {
  border-color: var(--green-600);
  color: var(--green-700);
  background: transparent;
}
.btn-ghost:hover { background: var(--green-600); color: var(--white); transform: translateY(-3px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(15,82,40,0.08);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); }
.brand img { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 17px; color: var(--green-900); letter-spacing: 0.01em; }
.brand-text span { font-size: 10.5px; letter-spacing: 0.18em; color: var(--green-500); font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--green-500);
  transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--green-700); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--green-700); }
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  color: var(--green-700);
}
.nav-phone svg { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 28px;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all .3s var(--ease);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { display: block; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--green-100); }
  .nav-cta .btn-ghost { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 168px 0 110px;
  background: radial-gradient(circle at 85% 10%, rgba(76,175,80,0.16), transparent 55%),
              linear-gradient(165deg, var(--green-900) 0%, var(--green-800) 45%, var(--green-600) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.10) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: .5;
  pointer-events: none;
}
.hero-watermark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  opacity: 0.10;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 700;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--leaf-300);
}
.hero p.lead {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 28px;
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--white);
}
.hero-stats .stat span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(2, auto); row-gap: 20px; }
}

.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(6px);
  width: 100%;
  max-width: 420px;
}
.hero-card img { width: 100%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35)); }
.hero-card-tag {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--green-100);
  background: rgba(255,255,255,0.12);
  padding: 8px 14px;
  border-radius: 999px;
}

/* ---------- Marquee / sector strip ---------- */
.sector-strip {
  background: var(--green-900);
  padding: 18px 0;
  overflow: hidden;
}
.sector-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scrollTrack 28s linear infinite;
  width: max-content;
}
.sector-track span {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sector-track span::before { content: "◆"; color: var(--leaf-500); font-size: 10px; }
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Cards: divisions ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 1080px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.division-card {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.division-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.division-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.division-icon svg { width: 28px; height: 28px; color: var(--white); }
.division-card h3 { font-size: 19px; margin-bottom: 10px; }
.division-focus { font-size: 14px; color: var(--ink-500); margin-bottom: 18px; }
.division-card ul { list-style: none; margin-bottom: 22px; flex-grow: 1; }
.division-card ul li {
  font-size: 14.5px;
  color: var(--ink-700);
  padding-left: 22px;
  position: relative;
  margin-bottom: 9px;
}
.division-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--leaf-500);
}
.division-card .card-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.division-card .card-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.division-card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Why choose us ---------- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1080px) { .feature-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .feature-row { grid-template-columns: 1fr; } }
.feature {
  padding: 32px 26px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
}
.feature-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--leaf-300);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: block;
}
.feature h3 { color: var(--white); font-size: 18px; margin-bottom: 10px; }
.feature p { color: rgba(255,255,255,0.75); font-size: 14.5px; margin: 0; }

/* ---------- About / split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--green-100), var(--white));
  border: 1px solid var(--green-100);
  padding: 56px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.split-media img { width: 78%; max-width: 320px; }
.quote-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-lg);
  position: absolute;
  bottom: -28px;
  left: 24px;
  right: 24px;
  border-left: 4px solid var(--green-500);
}
.quote-card p { font-size: 14px; font-style: italic; color: var(--ink-700); margin: 0 0 8px; }
.quote-card span { font-family: var(--font-head); font-size: 12.5px; font-weight: 700; color: var(--green-700); }

.value-list { list-style: none; margin-top: 8px; }
.value-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--green-100);
}
.value-list li:last-child { border-bottom: none; }
.value-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
}
.value-list h4 { margin: 0 0 4px; font-size: 16px; color: var(--green-900); }
.value-list p { margin: 0; font-size: 14.5px; color: var(--ink-500); }

/* Vision / Mission cards */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 40px 0; }
@media (max-width: 768px) { .vm-grid { grid-template-columns: 1fr; } }
.vm-card {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: var(--green-050);
  border: 1px solid var(--green-100);
}
.vm-card.alt { background: linear-gradient(160deg, var(--green-800), var(--green-600)); }
.vm-card.alt h3, .vm-card.alt p { color: var(--white); }
.vm-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--green-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.vm-card.alt .vm-icon { background: rgba(255,255,255,0.15); }
.vm-icon svg { width: 24px; height: 24px; color: var(--white); }

/* ---------- Timeline (future outlook) ---------- */
.timeline { position: relative; max-width: 860px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--green-200, var(--green-100));
  background: repeating-linear-gradient(to bottom, var(--leaf-500) 0 8px, transparent 8px 16px);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 74px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 0; top: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.timeline-item h3 { font-size: 18px; margin-bottom: 6px; }
.timeline-item p { margin: 0; color: var(--ink-500); font-size: 15px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  padding: 60px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-banner h2 { color: var(--white); font-size: clamp(24px,3vw,32px); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin: 0; }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.6); flex-shrink: 0; }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--green-700); }
@media (max-width: 768px) { .cta-banner { flex-direction: column; text-align: center; padding: 44px 28px; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--green-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
}
.contact-info-card h3 { color: var(--white); }
.contact-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-item .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item .ico svg { width: 20px; height: 20px; color: var(--leaf-300); }
.contact-item strong { display: block; font-family: var(--font-head); font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 4px; font-weight: 500; }
.contact-item span, .contact-item a { font-size: 15.5px; color: var(--white); font-weight: 500; }
.map-embed { border-radius: var(--radius-md); overflow: hidden; margin-top: 30px; border: 1px solid rgba(255,255,255,0.15); }
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; filter: grayscale(0.15); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--ink-100);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--bg-soft);
  color: var(--ink-900);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px var(--green-100);
}
.form-note { font-size: 13px; color: var(--ink-300); margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: var(--green-100);
  color: var(--green-800);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 20px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.page-hero .eyebrow { background: rgba(255,255,255,0.12); color: var(--green-100); }
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 14px; position: relative; z-index: 1;}
.page-hero p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb {
  position: relative; z-index: 1;
  display: flex; justify-content: center; gap: 8px;
  font-size: 13.5px; color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
  font-family: var(--font-head);
}
.breadcrumb a { color: rgba(255,255,255,0.85); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 42px; filter: brightness(0) invert(1); }
.footer-brand strong { font-family: var(--font-head); color: var(--white); font-size: 16px; }
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; transition: color .2s; }
.footer-col a:hover { color: var(--leaf-300); }
.footer-col p { font-size: 14.5px; color: rgba(255,255,255,0.7); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--green-500); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s var(--ease);
  z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }

.whatsapp-fab {
  position: fixed;
  right: 26px; bottom: 84px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
  transition: transform .25s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 26px; height: 26px; color: var(--white); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* ---------- Misc utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-100);
  color: var(--green-700);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin: 4px;
}
