/* ================================================================
   GCIS CANADA — SHARED STYLES
   Multi-page site with light/dark theme toggle
   ================================================================ */

/* ======================== THEME VARIABLES ======================== */
:root {
  /* Dark theme (default) */
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-card: #1a1a1a;
  --bg-card-hover: #1f1f1f;
  --bg-input: #1a1a1a;
  --border: rgba(255,255,255,0.05);
  --border-hover: rgba(62,196,126,0.15);
  --border-input: rgba(255,255,255,0.08);
  --text-primary: #fafafa;
  --text-secondary: #bbb;
  --text-muted: #888;
  --text-faint: #555;
  --green-deep: #145235;
  --green: #1b7a4a;
  --green-mid: #2d8a5e;
  --green-bright: #3ec47e;
  --green-tint: rgba(62,196,126,0.08);
  --green-tint-border: rgba(62,196,126,0.2);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
  --nav-bg: rgba(10,10,10,0.75);
  --hero-overlay-start: rgba(10,10,10,0.92);
  --hero-overlay-mid: rgba(10,10,10,0.6);
  --hero-overlay-end: rgba(10,10,10,0.3);
  --hero-overlay-bottom: rgba(10,10,10,1);
  --logo-filter: none;
  --grid-line: rgba(255,255,255,0.025);
  --radius: 12px;
  --radius-lg: 20px;
}

[data-theme="light"] {
  --bg-primary: #f8f7f4;
  --bg-secondary: #ffffff;
  --bg-card: #f1efe9;
  --bg-card-hover: #ffffff;
  --bg-input: #f1efe9;
  --border: rgba(0,0,0,0.06);
  --border-hover: rgba(27,122,74,0.2);
  --border-input: #ddd8ce;
  --text-primary: #000000;
  --text-secondary: #1a1a1a;
  --text-muted: #2d2d2d;
  --text-faint: #b0a99d;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --nav-bg: rgba(248,247,244,0.85);
  --hero-overlay-start: rgba(20,82,53,0.95);
  --hero-overlay-mid: rgba(20,82,53,0.7);
  --hero-overlay-end: rgba(20,82,53,0.4);
  --hero-overlay-bottom: rgba(20,82,53,1);
  --logo-filter: brightness(0) saturate(100%);
  --grid-line: rgba(255,255,255,0.04);
}

/* ======================== RESET ======================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s ease, color 0.4s ease;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ======================== NAV ======================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
  filter: var(--logo-filter);
  transition: filter 0.4s;
}

.nav-links { display: flex; gap: 2rem; align-items: center; margin-left: auto; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--green-bright); }
.nav-links a.active { color: var(--green-bright); }

.nav-cta {
  padding: 0.6rem 1.5rem;
  background: var(--green-mid);
  color: #fff !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: all 0.3s !important;
  border: 1px solid transparent;
}
.nav-cta:hover {
  background: var(--green-deep) !important;
  color: #fff !important;
}

.nav-right { display: flex; align-items: center; gap: 1rem; }

/* Theme toggle */
.theme-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s;
  color: var(--text-muted);
  opacity: 0.5;
  margin-left: 0.5rem;
}
.theme-toggle:hover {
  border-color: var(--green-bright);
  color: var(--green-bright);
  opacity: 1;
}

/* Mobile menu button */
.nav-mobile-btn {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border-input);
  background: var(--bg-card);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.2rem;
}

/* ======================== HERO ======================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 8rem 3rem 4rem;
  overflow: hidden;
}

/* In light mode, hero has dark green bg */
[data-theme="light"] .hero { background: var(--green-deep); }

.hero,
.hero h1,
.hero .hero-sub,
.hero .hero-badge,
.hero .hero-stat p {
  /* Hero is always light text */
}
.hero { color: #fff; }

.hero-image-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
}
.hero-image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--hero-overlay-start) 0%, var(--hero-overlay-mid) 55%, var(--hero-overlay-end) 100%),
    linear-gradient(to top, var(--hero-overlay-bottom) 0%, transparent 25%);
  transition: background 0.4s;
}

.hero-grid-line {
  position: absolute;
  background: var(--grid-line);
  z-index: 1;
}
.hero-grid-line.v { width: 1px; top: 0; bottom: 0; }
.hero-grid-line.h { height: 1px; left: 0; right: 0; }

.hero-content { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.03em;
  max-width: 900px;
  color: #fff;
  animation: fadeUp 0.8s ease 0.15s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--green-bright);
}

.hero-sub {
  margin-top: 2rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  font-weight: 300;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-actions {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s both;
}

/* ======================== BUTTONS ======================== */
.btn {
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s ease;
  border: 1.5px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-primary-hero {
  background: #fff;
  color: var(--green-deep);
  border-color: #fff;
}
.btn-primary-hero:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-outline-hero {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-hero:hover {
  border-color: #fff;
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
}
.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(27,122,74,0.2);
}

/* ======================== HERO STATS ======================== */
.hero-stats {
  display: flex;
  gap: 4rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.8s ease 0.6s both;
}
.hero-stat h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: var(--green-bright);
  font-weight: 400;
}
.hero-stat p {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease 0.8s both;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--green-bright), transparent);
  animation: scrollDown 2s infinite;
}

/* ======================== PAGE HERO (inner pages) ======================== */
.page-hero {
  padding: 10rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
[data-theme="light"] .page-hero { background: var(--green-deep); }
.page-hero { color: #fff; }

.page-hero .hero-image-bg img { opacity: 0.25; }

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  animation: fadeUp 0.8s ease both;
}
.page-hero p {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  font-weight: 300;
  animation: fadeUp 0.8s ease 0.15s both;
}

/* ======================== SECTIONS ======================== */
section { padding: 3.5rem 3rem; }
.section-inner { max-width: 1400px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
[data-theme="light"] .section-label { color: var(--green); }
.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--green-bright);
}
[data-theme="light"] .section-label::before { background: var(--green); }

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 700px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
  font-weight: 300;
  margin-top: 1.5rem;
}

.bg-primary { background: var(--bg-primary); }
.bg-secondary { background: var(--bg-secondary); }

/* ======================== CHECKMARKS SECTION ======================== */
.intro-section {
  background: var(--bg-secondary);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: center;
}

.intro-text p {
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.check-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-tint);
  border: 1px solid var(--green-tint-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg {
  width: 14px; height: 14px;
  stroke: var(--green-bright);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
[data-theme="light"] .check-icon svg { stroke: var(--green); }

.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ======================== SERVICES GRID (icon cards) ======================== */
.services-icon-section { background: var(--bg-primary); }

.services-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-icon-card {
  padding: 2.25rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
  cursor: default;
}
.service-icon-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--bg-card-hover);
}

.service-icon-card .sic-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-tint);
  border: 1px solid var(--green-tint-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.service-icon-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.service-icon-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ======================== DETAILED SERVICES (What We Do page) ======================== */
.service-detail {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
}

.service-detail-num {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--green-bright);
  opacity: 0.25;
  line-height: 1;
}
[data-theme="light"] .service-detail-num { color: var(--green); }

.service-detail h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.service-detail .service-tagline {
  color: var(--green-bright);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
[data-theme="light"] .service-detail .service-tagline { color: var(--green); }

.service-detail p {
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1rem;
}

.service-detail ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-detail ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.service-detail ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
  flex-shrink: 0;
  margin-top: 0.5rem;
}
[data-theme="light"] .service-detail ul li::before { background: var(--green); }

.service-detail .btn {
  margin-top: 1rem;
}

/* ======================== LEADERSHIP / TEAM ======================== */
.leadership-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  margin-top: 4rem;
  align-items: center;
}

.leadership-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.leadership-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.leadership-content blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  font-style: italic;
  line-height: 1.4;
  max-width: 520px;
}
.leader-info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.leader-info .name {
  font-weight: 600;
  font-size: 1rem;
}
.leader-info .role {
  font-size: 0.85rem;
  color: var(--green-bright);
  font-weight: 500;
}
[data-theme="light"] .leader-info .role { color: var(--green); }

.leadership-content p.bio {
  margin-top: 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 500px;
}

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

.team-card {
  background: var(--bg-card);
  border: 2.5px solid rgba(62,196,126,0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: 0 4px 24px rgba(62,196,126,0.15), 0 2px 8px rgba(62,196,126,0.1);
}
.team-card:hover {
  border-color: rgba(62,196,126,0.6);
  box-shadow: 0 12px 40px rgba(62,196,126,0.25), 0 6px 16px rgba(62,196,126,0.15);
  transform: translateY(-4px);
}

.team-card-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s;
}
.team-card:hover .team-card-photo img {
  transform: scale(1.03);
}

.team-card-body {
  padding: 2rem;
}
.team-card-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.team-card-body .team-role {
  font-size: 0.85rem;
  color: var(--green-bright);
  font-weight: 500;
  margin-bottom: 1rem;
}
[data-theme="light"] .team-card-body .team-role { color: var(--green); }

.team-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

.team-card-links {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.team-card-links a {
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.3s;
}
.team-card-links .team-linkedin {
  background: var(--green-tint);
  border: 1px solid var(--green-tint-border);
  color: var(--green-bright);
}
[data-theme="light"] .team-card-links .team-linkedin { color: var(--green); }
.team-card-links .team-linkedin:hover {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
}

/* ======================== WHY / DIFFERENTIATORS ======================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.why-card {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
}
.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card-hover);
}

.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.why-card h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ======================== PHOTO BREAK ======================== */
.photo-break { padding: 0; background: var(--bg-primary); }
.photo-break-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.photo-break-text h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  line-height: 1.25;
  max-width: 480px;
}
.photo-break-text h3 em {
  font-style: italic;
  color: var(--green-bright);
}
[data-theme="light"] .photo-break-text h3 em { color: var(--green); }

.photo-break-text p {
  margin-top: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 460px;
}
.photo-break-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.photo-break-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ======================== HARVEX ======================== */
.harvex-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.harvex-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
}
.harvex-content h3 span { color: var(--green-bright); }
.harvex-content p { margin-top: 1.5rem; color: rgba(255,255,255,0.95); line-height: 1.7; font-weight: 300; }
.harvex-content .btn {
  margin-top: 2rem;
  background: #fff;
  color: var(--green-deep);
  border-color: #fff;
}
.harvex-content .btn:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}
.harvex-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.harvex-feat {
  padding: 1.5rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
}
.harvex-feat h5 { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; color: #fff; }
.harvex-feat p { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.55; margin-top: 0; }

/* ======================== MISSION ======================== */
.mission-list {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
}
.mission-item {
  display: grid;
  grid-template-columns: 80px 280px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: default;
}
.mission-item:hover {
  padding-left: 1rem;
  background: var(--green-tint);
}
.mission-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--green-bright);
  opacity: 0.35;
}
[data-theme="light"] .mission-num { color: var(--green); }
.mission-name { font-weight: 600; font-size: 1.05rem; }
.mission-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* ======================== FAQ ======================== */
.faq-list {
  max-width: 800px;
  margin-top: 3rem;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  gap: 1rem;
}
.faq-question:hover { color: var(--green-bright); }
[data-theme="light"] .faq-question:hover { color: var(--green); }

.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--text-muted);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}
.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  font-size: 0.92rem;
}

/* ======================== CONTACT ======================== */
.contact-section { text-align: center; }
.contact-section .section-label { justify-content: center; }
.contact-section .section-label::before { display: none; }
.contact-section .section-title { margin: 0 auto; max-width: 900px; }
.contact-section .section-desc { margin: 1.5rem auto 0; }

.contact-form {
  max-width: 640px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
}
.contact-form .full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--bg-input);
  border: 1px solid var(--border-input);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-bright);
  background: var(--bg-card-hover);
}
[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group textarea:focus { border-color: var(--green); }

.form-group textarea { min-height: 120px; resize: vertical; }

.form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 0.5rem;
}

/* ======================== FOOTER ======================== */
footer {
  padding: 3rem;
  background: var(--green-deep);
  color: #fff;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}
.footer-links { display: flex; gap: 2rem; align-items: center; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: #fff; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.3);
  color: #fff;
}
.footer-bottom {
  max-width: 1400px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ======================== ANIMATIONS ======================== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 1; }
}

/* Intro section logo: white in dark, green in light */
.intro-logo-dark { display: block; }
.intro-logo-light { display: none; }
[data-theme="light"] .intro-logo-dark { display: none; }
[data-theme="light"] .intro-logo-light { display: block; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr; }
  .harvex-card { grid-template-columns: 1fr !important; }
  .mission-item { grid-template-columns: 60px 1fr; }
  .mission-desc { grid-column: 1 / -1; }
  .leadership-grid { grid-template-columns: 1fr; }
  .leadership-photo { max-width: 360px; }
  .photo-break-inner { grid-template-columns: 1fr; }
  .photo-break-image { max-width: 100%; }
  .service-detail-grid { grid-template-columns: 100px 1fr; }
  .service-detail-num { font-size: 3rem; }
}

/* Mobile menu overlay */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--bg-primary);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-mobile-menu a:hover { color: var(--green-bright); }
.nav-mobile-menu .nav-cta {
  padding: 0.8rem 2rem;
  background: var(--green-mid);
  color: #fff !important;
  border-radius: 100px;
  font-weight: 600 !important;
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
  section { padding: 2.5rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .check-list { flex-direction: column !important; align-items: flex-start; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full { grid-column: 1; }
  footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { flex-direction: column; gap: 1rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .harvex-card { padding: 2.5rem 2rem; }
  .photo-break-inner { padding: 4rem 1.5rem; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-num { font-size: 2rem; }
  .team-grid { grid-template-columns: 1fr; }
  .leadership-photo { max-width: 100%; }
}
