/* ═══════════════════════════════════════════════════
   OPEL CONSULTING — PREMIUM LIGHT THEME
   Palette: #1F6F5F  #2FA084  #F0D8A1  #DCF0C3
   ═══════════════════════════════════════════════════ */

:root {
  /* Brand colours */
  --forest:      #1F6F5F;
  --teal:        #2FA084;
  --gold:        #F0D8A1;
  --mint:        #DCF0C3;

  /* Derived tokens */
  --forest-dk:   #174f45;
  --forest-lt:   #e8f4f1;
  --teal-lt:     #d4ede6;
  --gold-dk:     #d4b96a;
  --gold-lt:     #fdf6e7;
  --mint-lt:     #f0fae8;
  --mint-dk:     #b8d9a0;

  /* Background system */
  --bg-page:     #f7faf5;        /* very slightly minty white */
  --bg-surface:  #ffffff;
  --bg-tinted:   #eef7e8;        /* mint-tinted sections */
  --bg-gold:     #fdf6e7;

  /* Text */
  --text-dark:   #182e29;        /* near-black from forest hue */
  --text-mid:    #3a5a52;
  --text-muted:  #7a9e96;
  --text-onforest: #f0fae8;

  /* Glass / card on light bg */
  --card-bg:     rgba(255,255,255,0.75);
  --card-border: rgba(31,111,95,0.12);
  --card-shadow: 0 2px 24px rgba(31,111,95,0.07);
  --card-hover-shadow: 0 8px 40px rgba(31,111,95,0.13);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h:    72px;
  --r:        14px;
  --r-sm:     8px;
  --ease:     cubic-bezier(.4,0,.2,1);
  --t:        all 0.28s var(--ease);
}

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-page);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ─── SCROLLBAR ──────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--mint-lt); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--forest);
  border-bottom: 1px solid rgba(240,216,161,0.18);
  transition: var(--t);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(31,111,95,0.25);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-img {
  height: 130px !important;
  width: auto !important;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.logo-mark svg { display: block; }
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-opel {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.logo-consulting {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: rgba(240,216,161,0.65);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: auto;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(240,216,161,0.75);
  border-radius: 6px;
  transition: var(--t);
  position: relative;
}
.nav-link:hover {
  color: var(--gold);
  background: rgba(240,216,161,0.08);
}
.nav-link.active {
  color: var(--gold);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-link svg { opacity: 0.6; }

/* Dropdown */
.has-drop { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--bg-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 0.6rem;
  box-shadow: 0 12px 40px rgba(31,111,95,0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: var(--t);
  z-index: 100;
}
.has-drop:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  border-radius: var(--r-sm);
  transition: var(--t);
}
.dropdown a:hover {
  background: var(--forest-lt);
  color: var(--forest);
}

.nav-cta { margin-left: 1.5rem; flex-shrink: 0; }
.btn-nav {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  background: var(--gold);
  color: var(--forest-dk);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 50px;
  transition: var(--t);
  box-shadow: 0 2px 12px rgba(240,216,161,0.3);
}
.btn-nav:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(240,216,161,0.5);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--t);
}

/* ─── PAGES ──────────────────────────────── */
.page { display: none; padding-top: var(--nav-h); min-height: 100vh; }
.page.active { display: block; }

/* ─── CONTAINER ──────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ─── SECTION BASE ───────────────────────── */
.section { padding: 6rem 0; }
.section-tinted { background: var(--bg-tinted); }

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}
.section-head p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-head strong { color: var(--forest); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.9rem;
  background: var(--forest-lt);
  border: 1px solid rgba(31,111,95,0.2);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1rem;
}

/* ─── BUTTONS ────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.82rem 2rem;
  background: var(--forest);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 50px;
  transition: var(--t);
  box-shadow: 0 4px 20px rgba(31,111,95,0.25);
}
.btn-primary:hover {
  background: var(--forest-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(31,111,95,0.35);
}
.btn-outline {
  display: inline-block;
  padding: 0.82rem 2rem;
  background: transparent;
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 50px;
  border: 1.5px solid var(--forest);
  transition: var(--t);
}
.btn-outline:hover {
  background: var(--forest-lt);
  transform: translateY(-2px);
}
.btn-cta {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: #fff;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: var(--t);
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  white-space: nowrap;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
.btn-submit {
  width: 100%;
  padding: 0.9rem 2rem;
  background: var(--forest);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 50px;
  transition: var(--t);
  box-shadow: 0 4px 16px rgba(31,111,95,0.25);
  cursor: pointer;
}
.btn-submit:hover {
  background: var(--forest-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(31,111,95,0.3);
}

/* ─── CARD BASE ──────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(8px);
  transition: var(--t);
}
.card:hover {
  box-shadow: var(--card-hover-shadow);
  border-color: rgba(31,111,95,0.22);
}

/* ═══════════ HERO ══════════════════════════ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-page);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}
.b1 {
  width: 700px; height: 700px;
  background: var(--mint);
  top: -200px; right: -150px;
}
.b2 {
  width: 500px; height: 500px;
  background: var(--gold-lt);
  bottom: -150px; left: -100px;
  opacity: 0.7;
}
.b3 {
  width: 350px; height: 350px;
  background: var(--teal-lt);
  top: 40%; left: 35%;
  opacity: 0.35;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 1rem;
  background: var(--forest-lt);
  border: 1px solid rgba(31,111,95,0.2);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--forest);
  margin-bottom: 1.8rem;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; } 50% { opacity:0.3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--forest);
}
.hero-sub {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 1rem;
  font-style: italic;
}
.hero-desc {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 2.2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(31,111,95,0.1);
}
.stat { text-align: left; }
.stat-row { display: flex; align-items: baseline; gap: 2px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.stat-sfx {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--teal);
}
.stat-lbl {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(31,111,95,0.15);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 100%;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(31,111,95,0.12);
}
.r1 { width: 380px; height: 380px; animation: spin 30s linear infinite; }
.r2 { width: 280px; height: 280px; border-color: rgba(47,160,132,0.15); animation: spin 20s linear infinite reverse; }
.r3 { width: 180px; height: 180px; border-color: rgba(31,111,95,0.2); animation: spin 15s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.ring-center {
  position: absolute;
  width: 80px; height: 80px;
  background: var(--forest-lt);
  border: 1px solid rgba(31,111,95,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(31,111,95,0.15);
  z-index: 2;
}

.orbit-node {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(47,160,132,0.4);
  z-index: 2;
}
.n1 { top: 50px; right: 90px; animation: floatNode 5s ease-in-out infinite; }
.n2 { bottom: 80px; left: 80px; animation: floatNode 7s ease-in-out infinite 1s; background: var(--forest); }
.n3 { top: 180px; left: 30px; animation: floatNode 6s ease-in-out infinite 0.5s; width: 8px; height: 8px; background: var(--gold-dk); }
@keyframes floatNode {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* float-pill styles replaced by orbit system above */

/* ─── PLANET ORBIT SYSTEM ────────────────── */
.planet {
  position: absolute;
  top: 50%; left: 50%;
  /* transform is set by JS */
  z-index: 3;
  will-change: transform;
}
.planet-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(31,111,95,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 16px rgba(31,111,95,0.13);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
  cursor: default;
}
.planet-icon:hover {
  background: rgba(255,255,255,1);
  box-shadow: 0 6px 28px rgba(31,111,95,0.22);
  transform: scale(1.18);
}

/* ─── PILLARS GRID ──────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  cursor: pointer;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.pillar-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--forest), var(--teal));
  opacity: 0;
  transition: var(--t);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-hover-shadow);
  border-color: rgba(31,111,95,0.25);
}
.pillar-card:hover::before { opacity: 1; }
.pillar-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(31,111,95,0.08);
  line-height: 1;
  margin-bottom: 1rem;
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.pillar-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.pillar-arrow { color: var(--forest); transition: var(--t); display: flex; align-items: center; }
.pillar-card:hover .pillar-arrow { transform: translateX(5px); }


/* ─── REACH ──────────────────────────────── */
.reach-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.reach-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin: 0.75rem 0 1.25rem;
  line-height: 1.2;
  color: var(--text-dark);
}
.reach-text p { color: var(--text-mid); margin-bottom: 1.5rem; }
.reach-text strong { color: var(--forest); font-weight: 600; }
.states-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.states-list span {
  padding: 0.28rem 0.75rem;
  background: var(--forest-lt);
  border: 1px solid rgba(31,111,95,0.18);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--forest);
  font-weight: 500;
}
.map-card {
  background: var(--bg-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.india-svg { width: 240px; height: auto; }

/* ─── CTA BAND ───────────────────────────── */
.cta-band {
  background: var(--forest);
  padding: 5rem 2rem;
}
.cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.cta-text p { color: rgba(240,216,161,0.65); }

/* ─── PAGE HERO ──────────────────────────── */
.page-hero {
  background: var(--forest);
  padding: 5rem 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid rgba(240,216,161,0.1);
}
.page-hero .section-tag {
  background: rgba(240,216,161,0.12);
  border-color: rgba(240,216,161,0.2);
  color: var(--gold);
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--gold);
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.01em;
}
.page-subtitle { color: rgba(240,216,161,0.6); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ═══════════ SERVICES ══════════════════════ */
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}
.svc-tab {
  padding: 0.6rem 1.3rem;
  background: var(--bg-surface);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--t);
  box-shadow: var(--card-shadow);
}
.svc-tab:hover {
  border-color: rgba(31,111,95,0.3);
  color: var(--forest);
  background: var(--forest-lt);
}
.svc-tab.active {
  background: var(--forest);
  color: var(--gold);
  border-color: var(--forest);
  box-shadow: 0 4px 16px rgba(31,111,95,0.25);
}

.svc-panel { display: none; animation: fadeUp 0.4s ease; }
.svc-panel.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.svc-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}
.svc-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.svc-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.svc-text p { color: var(--text-mid); margin-bottom: 1rem; font-size: 0.95rem; }
.svc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 2rem;
}
.feat {
  padding: 0.55rem 0.9rem;
  background: var(--forest-lt);
  border: 1px solid rgba(31,111,95,0.15);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  color: var(--forest);
  font-weight: 500;
  position: relative;
  padding-left: 1.5rem;
}
.feat::before {
  content: '✓';
  position: absolute;
  left: 0.6rem;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.75rem;
}

.svc-aside { position: sticky; top: calc(var(--nav-h) + 2rem); }
.svc-card {
  background: var(--bg-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  min-height: 300px;
  justify-content: center;
  background: linear-gradient(145deg, var(--bg-surface), var(--forest-lt));
}
.svc-icon-wrap {
  width: 100px; height: 100px;
  background: var(--forest-lt);
  border: 1px solid rgba(31,111,95,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconBreath 3s ease-in-out infinite;
}
@keyframes iconBreath {
  0%,100% { box-shadow: 0 0 0 0 rgba(31,111,95,0.1); transform: scale(1); }
  50% { box-shadow: 0 0 0 12px rgba(31,111,95,0.05); transform: scale(1.03); }
}
.svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.svc-chips span {
  padding: 0.3rem 0.8rem;
  background: rgba(31,111,95,0.08);
  border: 1px solid rgba(31,111,95,0.18);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--forest);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ═══════════ INDUSTRY ══════════════════════ */
.industry-block {
  background: var(--bg-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 3rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: var(--t);
}
.industry-block:hover {
  box-shadow: var(--card-hover-shadow);
  border-color: rgba(31,111,95,0.22);
}
.ind-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(31,111,95,0.08);
}
.ind-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(31,111,95,0.1);
  line-height: 1;
  flex-shrink: 0;
}
.ind-title-block h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.ind-sub { font-size: 0.85rem; color: var(--teal); font-weight: 500; letter-spacing: 0.05em; }
.ind-body p { color: var(--text-mid); margin-bottom: 1rem; font-size: 0.95rem; }
.ind-body strong { color: var(--forest); font-weight: 600; }
.ind-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--forest-lt);
  border: 1px solid rgba(31,111,95,0.12);
  border-radius: var(--r-sm);
}
.ind-stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.ind-stat label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.ind-tags span {
  padding: 0.28rem 0.8rem;
  background: var(--mint-lt);
  border: 1px solid var(--mint-dk);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--forest);
  font-weight: 500;
}

/* ═══════════ ABOUT ═════════════════════════ */
.about-intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 4rem;
}
.about-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.about-text p { color: var(--text-mid); margin-bottom: 1rem; font-size: 0.95rem; }
.about-text strong { color: var(--forest); font-weight: 600; }

.about-cert { position: sticky; top: calc(var(--nav-h) + 2rem); }
.cert-wrap {
  background: var(--forest);
  border-radius: var(--r);
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(31,111,95,0.25);
}
.cert-icon-wrap {
  width: 72px; height: 72px;
  background: rgba(240,216,161,0.12);
  border: 1px solid rgba(240,216,161,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.cert-icon-wrap svg path { stroke: var(--gold); }
.cert-icon-wrap svg circle { stroke: rgba(240,216,161,0.5); }
.cert-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.cert-sub { font-size: 0.8rem; color: rgba(240,216,161,0.6); margin-bottom: 1.5rem; }
.cert-divider { width: 50%; height: 1px; background: rgba(240,216,161,0.2); margin: 0 auto 1.5rem; }
.cert-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(240,216,161,0.08);
  font-size: 0.82rem;
}
.cert-row span { color: rgba(240,216,161,0.55); }
.cert-row strong { color: var(--gold); font-weight: 500; }

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.vm-card {
  background: var(--bg-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}
.vm-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--teal));
}
.vm-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 1rem;
}
.vm-card p { color: var(--text-mid); font-size: 0.95rem; }
.mission-list { padding-left: 0; }
.mission-list li {
  color: var(--text-mid);
  font-size: 0.92rem;
  padding: 0.6rem 0 0.6rem 1.2rem;
  position: relative;
  border-bottom: 1px solid rgba(31,111,95,0.06);
}
.mission-list li:last-child { border-bottom: none; }
.mission-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05rem;
  width: 5px; height: 5px;
  background: var(--teal);
  border-radius: 50%;
}

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--t);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-hover-shadow);
}
.team-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 1rem;
  box-shadow: 0 4px 14px rgba(31,111,95,0.3);
}
.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.team-role {
  display: inline-block;
  font-size: 0.68rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.team-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ═══════════ CONTACT ═══════════════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
}
.contact-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  margin-bottom: 1.5rem;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(31,111,95,0.08);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(31,111,95,0.06);
}
.contact-item:last-child { border-bottom: none; }
.c-icon {
  width: 34px; height: 34px;
  background: var(--forest-lt);
  border: 1px solid rgba(31,111,95,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-item a { color: var(--forest); font-size: 0.9rem; font-weight: 500; transition: var(--t); }
.contact-item a:hover { color: var(--teal); }
.contact-item span { color: var(--text-mid); font-size: 0.9rem; }

.contact-states-card {
  background: var(--forest-lt);
  border: 1px solid rgba(31,111,95,0.15);
  border-radius: var(--r);
  padding: 1.5rem;
}
.contact-states-card h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.states-grid-sm { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.states-grid-sm span {
  padding: 0.2rem 0.65rem;
  background: rgba(31,111,95,0.08);
  border: 1px solid rgba(31,111,95,0.15);
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--forest);
  font-weight: 500;
}

.contact-form-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-page);
  border: 1px solid var(--card-border);
  border-radius: var(--r-sm);
  padding: 0.8rem 1rem;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--t);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  background: var(--forest-lt);
  box-shadow: 0 0 0 3px rgba(31,111,95,0.08);
}
.form-group select option { background: #fff; }
input::placeholder, textarea::placeholder { color: var(--text-muted); }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.form-success.visible { display: flex; animation: fadeUp 0.5s ease; }
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--forest);
}
.form-success p { color: var(--text-muted); }

/* ─── FOOTER ─────────────────────────────── */
.footer {
  background: var(--forest-dk);
  color: rgba(240,216,161,0.7);
  padding: 5rem 2rem 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(240,216,161,0.08);
  margin-bottom: 2rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 1.25rem;
  max-width: 280px;
  color: rgba(240,216,161,0.5);
}
.footer-cert { font-size: 0.72rem; color: rgba(240,216,161,0.35); margin-top: 0.5rem; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 0.82rem;
  color: rgba(240,216,161,0.45);
  margin-bottom: 0.5rem;
  transition: var(--t);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(240,216,161,0.3); }

/* ─── MOBILE ──────────────────────────────── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-aside { display: none; }
  .reach-wrap { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--forest-dk);
    border-bottom: 1px solid rgba(240,216,161,0.1);
    padding: 1.5rem 2rem;
    gap: 0.3rem;
    z-index: 999;
  }
  .nav-links.open .nav-link { color: rgba(240,216,161,0.7); padding: 0.65rem 0; border-radius: 0; border-bottom: 1px solid rgba(240,216,161,0.06); }
  .nav-links.open .nav-link:hover { color: var(--gold); background: none; }
  .has-drop:hover .dropdown { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ind-stats { gap: 1rem; }
  .hero-stats { gap: 1rem; }
  .stat-sep { display: none; }
}
@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .team-grid { grid-template-columns: 1fr; }
  .industry-block { padding: 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .footer-cols { grid-template-columns: 1fr; }
}

/* PARTNERS SECTION */
.partners-row {
  display: flex;
  gap: 100px;                 /* better spacing */
  margin: 50px 0;
  overflow: hidden;

  justify-content: center;
  align-items: center;
  width: 100%;
}

/* LOGO SIZE */
.partners-row img {
  height: 130px;              /* bigger logos */
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s;
}

.partners-row img:hover {
  filter: grayscale(0%);
  transform: scale(1.15);
}

/* 🔥 ANIMATIONS */

/* TOP ROW → RIGHT */
.partners-row.left {
  animation: moveRight 20s linear infinite;
}

/* BOTTOM ROW → LEFT */
.partners-row.right {
  animation: moveLeft 20s linear infinite;
}

/* 🔥 TRUE LOOP ANIMATION */

/* LEFT MOVEMENT */
@keyframes moveLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RIGHT MOVEMENT */
@keyframes moveRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
} 

.pillar-img-wrap {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.pillar-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}