/* ==========================================================================
   VERDANT GROUP OF MANAGEMENT — Global Stylesheet
   Building Trust. Delivering Growth.
   A unique green & gold corporate design system (static, no frameworks)
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette */
  --green-900: #08281e;
  --green-800: #0b3a2b;
  --green-700: #0f4a37;
  --green-600: #145a42;
  --green-500: #1c7052;
  --green-050: #eef4f0;

  --gold-600: #b8912f;
  --gold-500: #c9a44c;
  --gold-400: #d9bd6e;
  --gold-100: #f3e9cf;

  --cream: #f8f6ef;
  --paper: #ffffff;
  --ink: #16211c;
  --ink-soft: #465650;
  --line: #e4e0d5;

  /* Division accents */
  --sec-accent: #1f6f4a;   /* Elegant Security */
  --hr-accent: #b8912f;    /* APR Manpower */
  --log-accent: #0e5a3c;   /* VPE Logistics */

  /* Type */
  --font-head: "Playfair Display", "Georgia", "Times New Roman", serif;
  --font-body: "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;

  /* Structure */
  --wrap: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 14px rgba(8, 40, 30, 0.07);
  --shadow-md: 0 16px 40px rgba(8, 40, 30, 0.12);
  --shadow-lg: 0 28px 70px rgba(8, 40, 30, 0.18);
  --t: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  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-head); font-weight: 700; line-height: 1.15; color: var(--green-800); }
section { position: relative; }

/* ---------- Utilities ---------- */
.wrap { width: min(var(--wrap), 92%); margin-inline: auto; }
.narrow { width: min(820px, 92%); margin-inline: auto; }
.text-center { text-align: center; }
.gold { color: var(--gold-600); }
.pad-block { padding: clamp(64px, 8vw, 120px) 0; }
.pad-sm { padding: clamp(40px, 5vw, 64px) 0; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body); font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; font-size: 0.72rem; color: var(--gold-600);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-500); }

.section-title { font-size: clamp(1.8rem, 3.6vw, 2.9rem); }
.section-lead { color: var(--ink-soft); max-width: 62ch; margin-top: 1rem; font-size: 1.05rem; }
.section-head.text-center .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--green-700); --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.7rem; border-radius: 40px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn .arw { transition: transform var(--t); }
.btn:hover .arw { transform: translateX(4px); }
.btn-gold { --btn-bg: var(--gold-500); --btn-fg: var(--green-900); }
.btn-gold:hover { background: var(--gold-400); }
.btn-outline { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,0.55); box-shadow: none; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--green-800); border-color: var(--line); box-shadow: none; }
.btn-ghost:hover { background: var(--green-050); border-color: var(--green-500); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.topbar {
  background: var(--green-900); color: #d9e5df;
  font-size: 0.82rem; letter-spacing: 0.02em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: #d9e5df; transition: color var(--t); }
.topbar a:hover { color: var(--gold-400); }
.topbar .tb-contact { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar .tb-social { display: flex; gap: 0.9rem; }
.topbar .tb-social a { display: inline-flex; }
.topbar svg { width: 15px; height: 15px; fill: currentColor; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1.5rem; }

/* Logo */
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand .mark { width: 44px; height: 44px; flex: none; }
.brand .brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-txt b { font-family: var(--font-head); font-size: 1.18rem; color: var(--green-800); letter-spacing: 0.01em; }
.brand .brand-txt span { font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-600); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 0.35rem; margin-left: auto; margin-right: 0.5rem; }
.nav-links > li > a {
  display: block; padding: 0.6rem 0.85rem; font-weight: 600; font-size: 0.92rem;
  color: var(--green-800); border-radius: 8px; transition: color var(--t), background var(--t);
}
.nav-links > li > a:hover, .nav-links > li.active > a { color: var(--gold-600); }
.nav-links > li > a[aria-current="page"] { color: var(--gold-600); }

/* Dropdown */
.has-drop { position: relative; }
.drop-toggle::after { content: "▾"; margin-left: 0.3rem; font-size: 0.7rem; opacity: 0.7; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 300px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; gap: 0.75rem; align-items: center; padding: 0.7rem 0.8rem; border-radius: 8px; transition: background var(--t); }
.dropdown a:hover { background: var(--green-050); }
.dropdown .di { width: 34px; height: 34px; border-radius: 8px; flex: none; display: grid; place-items: center; color: #fff; }
.dropdown .di svg { width: 18px; height: 18px; fill: currentColor; }
.dropdown b { display: block; font-size: 0.9rem; color: var(--green-800); }
.dropdown small { color: var(--ink-soft); font-size: 0.76rem; }
/* .di.sec { background: var(--sec-accent); } */
/* .di.hr { background: var(--hr-accent); } */
.di.log { background: var(--log-accent); }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--green-800); border-radius: 3px; transition: var(--t); }
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, var(--green-900) 0%, var(--green-700) 60%, var(--green-600) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(201,164,76,0.22), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(28,112,82,0.5), transparent 50%);
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: 0.12;
  background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-inner { padding: clamp(80px, 12vw, 150px) 0 clamp(70px, 9vw, 120px); max-width: 860px; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.4rem); letter-spacing: -0.01em; }
.hero h1 .rotator { color: var(--gold-400); display: inline-block; }
.hero .lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: #d8e6df; margin-top: 1.4rem; max-width: 60ch; }
.hero .hero-tag { color: var(--gold-400); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 1.2rem; display: inline-block; }
.hero-actions { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 1; line-height: 0; }
.hero-wave svg { width: 100%; height: auto; display: block; }

/* Page hero (interior) */
.page-hero {
  position: relative; color: #fff; padding: clamp(90px, 11vw, 150px) 0 clamp(60px, 7vw, 90px);
  background: linear-gradient(120deg, var(--green-900), var(--green-700));
  overflow: hidden;
}
.page-hero.sec { background: linear-gradient(120deg, #06251a, var(--sec-accent)); }
.page-hero.hr { background: linear-gradient(120deg, #3a2e06, var(--hr-accent)); }
.page-hero.log { background: linear-gradient(120deg, #052318, var(--log-accent)); }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(201,164,76,0.25), transparent 45%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); }
.page-hero p { color: #d8e6df; max-width: 60ch; margin-top: 1rem; font-size: 1.08rem; }
.crumbs { font-size: 0.85rem; color: #b9cabf; margin-bottom: 1.1rem; }
.crumbs a:hover { color: var(--gold-400); }
.crumbs span { color: var(--gold-400); }

/* ==========================================================================
   STAT BAR
   ========================================================================== */
.stats { background: var(--green-800); color: #fff; }
.stats.on-hero { margin-top: -1px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.09); }
.stat { background: var(--green-800); padding: clamp(28px, 4vw, 48px) 1.2rem; text-align: center; }
.stat .num { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); color: var(--gold-400); line-height: 1; }
.stat .lbl { margin-top: 0.5rem; font-size: 0.86rem; letter-spacing: 0.06em; color: #cadbd2; text-transform: uppercase; }

/* ==========================================================================
   DIVISION NAVIGATOR / CARDS
   ========================================================================== */
.grid { display: grid; gap: 1.6rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.div-card {
  position: relative; background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex; flex-direction: column;
}
.div-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.div-card .dc-top { height: 8px; }
.div-card.sec .dc-top { background: var(--sec-accent); }
.div-card.hr .dc-top { background: var(--hr-accent); }
.div-card.log .dc-top { background: var(--log-accent); }
.div-card .dc-body { padding: 2rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.div-card .dc-icon { width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 1.2rem; }
.div-card .dc-icon svg { width: 30px; height: 30px; fill: currentColor; }
.div-card.sec .dc-icon { background: var(--sec-accent); }
.div-card.hr .dc-icon { background: var(--hr-accent); }
.div-card.log .dc-icon { background: var(--log-accent); }
.div-card h3 { font-size: 1.35rem; }
.div-card .dc-sub { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; margin: 0.3rem 0 0.9rem; }
.div-card p { color: var(--ink-soft); font-size: 0.96rem; }
.div-card .dc-list { margin: 1.1rem 0 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.div-card .dc-list li { font-size: 0.78rem; background: var(--green-050); color: var(--green-700); padding: 0.3rem 0.7rem; border-radius: 30px; font-weight: 600; }
.div-card .dc-link { margin-top: auto; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--green-700); }
.div-card .dc-link .arw { transition: transform var(--t); }
.div-card:hover .dc-link .arw { transform: translateX(5px); }

/* ==========================================================================
   VALUE / FEATURE CARDS
   ========================================================================== */
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature .fi { width: 54px; height: 54px; border-radius: 12px; background: var(--green-050); color: var(--green-700); display: grid; place-items: center; margin-bottom: 1.1rem; }
.feature .fi svg { width: 27px; height: 27px; fill: currentColor; }
.feature h4 { font-size: 1.14rem; margin-bottom: 0.5rem; }
.feature p { color: var(--ink-soft); font-size: 0.94rem; }

/* Value chips (Trust/Excellence/Innovation/Growth) */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.value-chip { text-align: center; padding: 1.8rem 1rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: var(--t); }
.value-chip:hover { background: var(--green-800); border-color: var(--green-800); transform: translateY(-6px); }
.value-chip:hover h4, .value-chip:hover p { color: #fff; }
.value-chip:hover .vc-ic { background: var(--gold-500); color: var(--green-900); }
.vc-ic { width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 1rem; background: var(--green-050); color: var(--green-700); display: grid; place-items: center; transition: var(--t); }
.vc-ic svg { width: 30px; height: 30px; fill: currentColor; }
.value-chip h4 { font-size: 1.15rem; transition: var(--t); }
.value-chip p { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.35rem; transition: var(--t); }

/* ==========================================================================
   SERVICE LIST (division pages)
   ========================================================================== */
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.svc::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 5px; background: var(--accent, var(--green-600)); transform: scaleY(0); transform-origin: top; transition: transform var(--t); }
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc:hover::before { transform: scaleY(1); }
.svc .si { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft, var(--green-050)); color: var(--accent, var(--green-700)); margin-bottom: 1rem; }
.svc .si svg { width: 26px; height: 26px; fill: currentColor; }
.svc h4 { font-size: 1.12rem; margin-bottom: 0.4rem; }
.svc p { font-size: 0.92rem; color: var(--ink-soft); }

/* Checklist */
.checklist { display: grid; gap: 0.8rem; }
.checklist li { display: flex; gap: 0.8rem; align-items: flex-start; }
.checklist li svg { width: 22px; height: 22px; flex: none; margin-top: 3px; fill: var(--gold-600); }
.checklist li b { color: var(--green-800); }

/* ==========================================================================
   SPLIT / ABOUT
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.rev .split-media { order: 2; }
.media-card {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  position: relative; background: linear-gradient(135deg, var(--green-800), var(--green-600));
  min-height: 340px; display: grid; place-items: center; color: #fff; padding: 2rem;
}
.media-card .mc-badge {
  position: absolute; right: -16px; bottom: 26px; background: var(--gold-500); color: var(--green-900);
  padding: 1rem 1.4rem; border-radius: 12px; box-shadow: var(--shadow-md); font-weight: 700; text-align: center;
}
.media-card .mc-badge b { display: block; font-family: var(--font-head); font-size: 1.8rem; line-height: 1; }
.media-card .mc-badge span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* Vision / Mission cards */
.vm { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.vm-card { padding: 2.2rem; border-radius: var(--radius); color: #fff; position: relative; overflow: hidden; }
.vm-card.vision { background: linear-gradient(135deg, var(--green-800), var(--green-600)); }
.vm-card.mission { background: linear-gradient(135deg, #2a2206, var(--gold-600)); }
.vm-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.7rem; }
.vm-card p { color: rgba(255,255,255,0.9); }
.vm-card .vm-ic { width: 56px; height: 56px; border-radius: 12px; background: rgba(255,255,255,0.15); display: grid; place-items: center; margin-bottom: 1.1rem; }
.vm-card .vm-ic svg { width: 28px; height: 28px; fill: #fff; }

/* ==========================================================================
   GROUP STRUCTURE DIAGRAM
   ========================================================================== */
.orgchart { text-align: center; }
.org-top { display: inline-flex; flex-direction: column; align-items: center; background: var(--green-800); color: #fff; padding: 1.4rem 2.4rem; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.org-top b { font-family: var(--font-head); font-size: 1.3rem; }
.org-top span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-400); }
.org-branch { width: 2px; height: 40px; background: var(--line); margin: 0 auto; }
.org-children { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 0.5rem; }
.org-node { background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--accent, var(--green-600)); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.org-node b { color: var(--green-800); }
.org-node span { display: block; font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.3rem; }

/* ==========================================================================
   GROWTH PLAN (timeline) — VPE
   ========================================================================== */
.phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; counter-reset: phase; }
.phase { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); position: relative; transition: var(--t); }
.phase:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.phase .ph-tag { display: inline-block; background: var(--log-accent); color: #fff; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.08em; padding: 0.35rem 0.9rem; border-radius: 30px; text-transform: uppercase; }
.phase .ph-time { color: var(--gold-600); font-weight: 700; font-size: 0.9rem; margin: 0.9rem 0 0.3rem; }
.phase h4 { font-size: 1.2rem; }
.phase ul { margin-top: 1rem; display: grid; gap: 0.55rem; }
.phase ul li { display: flex; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-soft); }
.phase ul li::before { content: "▸"; color: var(--log-accent); font-weight: 700; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.tst { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.tst .stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: 0.8rem; }
.tst p { font-style: italic; color: var(--ink); }
.tst .who { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.3rem; }
.tst .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--green-700); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-head); }
.tst .who b { display: block; color: var(--green-800); font-size: 0.95rem; }
.tst .who small { color: var(--ink-soft); }

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.cta-strip {
  background: linear-gradient(120deg, var(--green-900), var(--green-700));
  color: #fff; border-radius: var(--radius); padding: clamp(2.4rem, 5vw, 3.6rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-strip::after { content: ""; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(201,164,76,0.35), transparent 70%); }
.cta-strip h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); position: relative; z-index: 2; }
.cta-strip p { color: #cfe0d8; margin-top: 0.4rem; position: relative; z-index: 2; }
.cta-strip .cta-actions { position: relative; z-index: 2; display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--green-800); }
.field label .req { color: #c0392b; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 0.95rem; padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fbfaf6; color: var(--ink);
  transition: border-color var(--t), box-shadow var(--t);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(28,112,82,0.14); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.6rem; }
.form-status { display: none; padding: 0.9rem 1.1rem; border-radius: var(--radius-sm); margin-top: 1rem; font-weight: 600; font-size: 0.9rem; }
.form-status.ok { display: block; background: #e7f4ec; color: #1c7052; border: 1px solid #b8dcc6; }
.form-status.err { display: block; background: #fbeaea; color: #b0342a; border: 1px solid #eec3c0; }

/* Contact info tiles */
.contact-info { display: grid; gap: 1rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow-sm); }
.ci-item .ci-ic { width: 46px; height: 46px; border-radius: 10px; background: var(--green-050); color: var(--green-700); display: grid; place-items: center; flex: none; }
.ci-item .ci-ic svg { width: 22px; height: 22px; fill: currentColor; }
.ci-item b { color: var(--green-800); display: block; font-size: 0.95rem; }
.ci-item span, .ci-item a { color: var(--ink-soft); font-size: 0.92rem; }
.ci-item a:hover { color: var(--green-700); }

/* Office locations */
.cities { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.city-pill { background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 0.5rem 1.1rem; font-weight: 600; font-size: 0.88rem; color: var(--green-800); display: inline-flex; gap: 0.5rem; align-items: center; }
.city-pill svg { width: 15px; height: 15px; fill: var(--gold-600); }

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

/* ==========================================================================
   INDUSTRIES / LOGOS ROW
   ========================================================================== */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.ind { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; text-align: center; transition: var(--t); }
.ind:hover { border-color: var(--green-500); transform: translateY(-4px); }
.ind .ii { width: 48px; height: 48px; margin: 0 auto 0.7rem; color: var(--green-700); display: grid; place-items: center; }
.ind .ii svg { width: 30px; height: 30px; fill: currentColor; }
.ind b { font-size: 0.92rem; color: var(--green-800); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--green-900); color: #b9cabf; padding-top: clamp(50px, 7vw, 84px); margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.2rem; }
.site-footer h5 { color: #fff; font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 1.1rem; }
.site-footer a { color: #b9cabf; transition: color var(--t); }
.site-footer a:hover { color: var(--gold-400); }
.footer-links { display: grid; gap: 0.6rem; font-size: 0.92rem; }
.footer-brand .brand .brand-txt b { color: #fff; }
.footer-about { font-size: 0.92rem; margin: 1.1rem 0; max-width: 34ch; }
.foot-social { display: flex; gap: 0.7rem; }
.foot-social a { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: var(--t); }
.foot-social a:hover { background: var(--gold-500); }
.foot-social a:hover svg { fill: var(--green-900); }
.foot-social svg { width: 17px; height: 17px; fill: #cadbd2; }
.foot-contact li { display: flex; gap: 0.7rem; margin-bottom: 0.8rem; font-size: 0.92rem; align-items: flex-start; }
.foot-contact svg { width: 17px; height: 17px; fill: var(--gold-400); flex: none; margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: clamp(40px, 5vw, 60px); padding: 1.6rem 0; font-size: 0.85rem; }
.footer-bottom .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ==========================================================================
   MISC / REVEAL ANIMATION
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal].d1 { transition-delay: 0.1s; } [data-reveal].d2 { transition-delay: 0.2s; }
[data-reveal].d3 { transition-delay: 0.3s; } [data-reveal].d4 { transition-delay: 0.4s; }

.badge-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.4rem; }
.badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: #fff; padding: 0.5rem 1rem; border-radius: 30px; font-size: 0.82rem; font-weight: 600; }
.badge svg { width: 16px; height: 16px; fill: var(--gold-400); }

.section-head { margin-bottom: clamp(2rem, 4vw, 3.2rem); }

.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  transition: transform var(--t);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

.prose p { color: var(--ink-soft); margin-bottom: 1rem; }
.prose p:last-child { margin-bottom: 0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .grid-3, .grid-4, .values, .ind-grid, .phases, .org-children, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .grid-2, .vm { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }

  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 1rem; gap: 0.2rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); transform: translateY(-140%); transition: transform var(--t);
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > li > a { padding: 0.85rem 0.6rem; border-bottom: 1px solid var(--green-050); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--green-050); border-radius: 0; margin-left: 0.6rem; padding: 0.2rem 0; min-width: 0; }
  .has-drop:hover .dropdown { transform: none; }
  .nav-cta .btn { display: none; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .values, .ind-grid, .phases, .org-children, .stats-grid, .form-grid { grid-template-columns: 1fr; }
  .topbar .tb-contact { display: none; }
  .cta-strip { flex-direction: column; align-items: flex-start; text-align: left; }
  .media-card .mc-badge { position: static; margin-top: 1rem; display: inline-block; }
}
