/* =========================================================
   SAGARMATHA PESTGUARD — PREMIUM CONSULTING-GRADE THEME
   ========================================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #FFFFFF;
  color: #10201A;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== COLOUR TOKENS ===== */
:root {
  --forest-950: #071811;
  --forest-900: #0A2318;
  --forest-800: #0F3324;
  --forest-700: #154A34;
  --primary:    #1B5E3F;   /* core brand green */
  --primary-dark: #0F3324;
  --primary-light: #2C7A52;
  --sage-50:  #F5F8F5;
  --sage-100: #E8F0EA;
  --cream:    #FBFAF6;
  --gold:     #B08D52;     /* muted brass accent */
  --gold-light: #E4D3AE;
  --gold-accent: #C6973F;  /* warm harvest gold — trust-number highlight only */
  --bg-white: #FFFFFF;
  --bg-light: var(--sage-50);
  --border-color: #E2E8E3;
  --text-dark: #10201A;
  --text-muted: #5C6B62;
  --shadow-sm: 0 2px 8px -2px rgba(10,35,24,0.06);
  --shadow-md: 0 12px 28px -8px rgba(10,35,24,0.10);
  --shadow-lg: 0 24px 48px -12px rgba(10,35,24,0.14);
  --shadow-xl: 0 32px 64px -16px rgba(10,35,24,0.20);
  --radius: 4px;
  --radius-sm: 3px;
  --radius-lg: 6px;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s var(--ease);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); font-weight: 500; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-weight: 600; font-family: 'Inter', sans-serif; }
em { font-style: italic; font-weight: 500; color: var(--primary); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow-light { color: var(--gold-light); }
.eyebrow-light::before { background: var(--gold-light); }

/* ===== LAYOUT ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.section { padding: clamp(5.5rem, 10vw, 9rem) 0; position: relative; overflow: hidden; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 4.5rem; display: flex; flex-direction: column; align-items: center; }
.section-heading { margin-bottom: 1.4rem; }
.section-intro { color: var(--text-muted); font-size: 1.12rem; }
.light-heading { color: white; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem;
  padding: 1.05rem 2.2rem; border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  cursor: pointer; border: 1px solid transparent; transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap; position: relative; overflow: hidden; will-change: transform;
}
.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 6px 20px -4px rgba(27,94,63,.4);
}
.btn-primary svg { transition: transform 0.4s var(--ease-out); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--primary-dark);
  box-shadow: 0 10px 30px -6px rgba(15,51,36,.5);
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary {
  background: white; color: var(--primary-dark); border: 1.5px solid var(--gold-accent);
  box-shadow: 0 4px 14px -6px rgba(198,151,63,.25);
}
.btn-secondary svg { transition: transform 0.4s var(--ease-out); color: var(--gold-accent); }
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--gold-accent); color: white; border-color: var(--gold-accent);
  box-shadow: 0 10px 28px -6px rgba(198,151,63,.45);
}
.btn-secondary:hover svg { color: white; transform: translateY(2px); }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; gap: 1rem; padding: 0 clamp(1.25rem, 4vw, 3rem); max-width: 1440px; margin: 0 auto;
  transition: height var(--transition);
}
.navbar.scrolled .nav-inner { height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 0.85rem; }
.logo-img { width: 42px; height: 42px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.2rem;
  color: var(--text-dark); letter-spacing: 0;
}
.logo-sub { font-size: 0.62rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a {
  position: relative;
  color: var(--text-dark); font-size: 0.82rem; font-weight: 600;
  padding: 0.6rem 1.1rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: color var(--transition);
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute; left: 1.1rem; right: 1.1rem; bottom: 0.35rem;
  height: 1px; background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta):focus-visible::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--primary); }
.nav-cta {
  background: var(--primary) !important; color: white !important;
  padding: 0.7rem 1.4rem !important; border-radius: var(--radius-sm) !important;
  transition: background var(--transition), transform 0.4s var(--ease-out) !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-2px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text-dark);
  border-radius: 1px; transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 85% 0%, rgba(27,94,63,0.07), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--sage-50) 100%);
  min-height: 94vh; display: flex; align-items: center;
  padding-top: 84px; position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(15,51,36,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,51,36,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 60% 30%, black 20%, transparent 75%);
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem; align-items: center;
  padding: clamp(3rem, 8vh, 6rem) clamp(1.25rem, 4vw, 3rem);
  max-width: 1240px; margin: 0 auto; width: 100%; position: relative; z-index: 1;
}
.hero-content { max-width: 680px; }

/* Hero load-in animation */
.hero-anim { opacity: 0; transform: translateY(22px); animation: heroIn 0.9s var(--ease-out) forwards; animation-delay: calc(var(--d, 0) * 0.11s); }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

.hero-heading { display: flex; flex-direction: column; margin-bottom: 1.5rem; }
.hero-heading .line { display: block; }
.hero-sub { color: var(--text-muted); font-size: 1.18rem; margin-bottom: 2.75rem; max-width: 560px; border-left: 2px solid var(--gold); padding-left: 1.25rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.25rem; }

.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius); width: fit-content; max-width: 100%;
  box-shadow: var(--shadow-sm);
}
.stat {
  text-align: center; padding: 1.35rem 1.75rem; display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);
}
.stat:nth-child(2n) { border-right: none; }
.stat:nth-last-child(-n+2) { border-bottom: none; }
.stat-num { display: block; font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600; color: var(--gold-accent); line-height: 1; margin-bottom: 0.35rem; }
.stat-label { font-size: 0.68rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== HERO VISUAL / SHIELD SEAL ===== */
.hero-visual { display: flex; justify-content: flex-end; align-items: center; }
.guarantee-seal {
  background: white; border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 2.75rem; text-align: center;
  box-shadow: var(--shadow-xl); position: relative;
  transition: transform 0.5s var(--ease-out);
}
.guarantee-seal::before {
  content: "";
  position: absolute; inset: -1px; border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--gold-light), transparent 40%, transparent 60%, var(--primary-light));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.seal-inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; }
.seal-badge { background: var(--bg-light); border-radius: var(--radius-sm); padding: 1rem 1.25rem; width: 100%; border-left: 3px solid var(--primary); }
.seal-type { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
.seal-value { display: block; font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 600; color: var(--gold-accent); }
.seal-shield svg { width: 116px; color: var(--primary); filter: drop-shadow(0 10px 20px rgba(27,94,63,.22)); }

/* ===== COVERAGE / SERVICE AREA ===== */
.coverage-section { background: var(--primary-dark); padding: 1.75rem 0; }
.coverage-inner { display: flex; align-items: center; gap: 1.25rem; }
.coverage-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: var(--gold-light); }
.coverage-icon svg { width: 20px; height: 20px; }
.coverage-label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.25rem; }
.coverage-text p { color: rgba(255,255,255,.8); font-size: 0.92rem; }
.coverage-text a { color: white; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,.4); transition: text-decoration-color 0.3s var(--ease); }
.coverage-text a:hover { text-decoration-color: white; }

/* ===== TRUSTED BAR / MARQUEE ===== */
.trusted-bar {
  background: white;
  border-bottom: 1px solid var(--border-color);
  padding: 3rem 0 3.25rem;
}
.trusted-inner {
  display: flex; justify-content: center;
  max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,3rem) 2rem;
}
.trusted-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex; gap: 1.5rem; width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.client-logo-card {
  background: var(--bg-light); border: 1px solid var(--border-color); border-radius: var(--radius-sm);
  padding: 1.25rem; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 1rem;
  width: 170px; flex-shrink: 0; text-align: center; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.client-logo-card:hover { border-color: var(--primary-light); transform: translateY(-3px); }
.client-logo-card img { width: 100%; height: 70px; object-fit: contain; mix-blend-mode: multiply; margin-top: auto; filter: grayscale(100%); transition: filter 0.3s; }
.client-logo-card:hover img { filter: grayscale(0%); }
.client-logo-card span { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); line-height: 1.3; margin-top: auto; }

/* ===== METHODOLOGY SECTION ===== */
.methodology-section { background: var(--bg-white) url('assets/process-pattern.svg') repeat; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.process-card {
  background: var(--bg-light); border: 1px solid var(--border-color); border-radius: var(--radius);
  padding: 2.75rem 2.5rem; position: relative; z-index: 1; transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); background: white; border-color: var(--primary-light); }
.process-step-num {
  font-family: 'Fraunces', serif; font-size: 3.25rem; font-weight: 500; font-style: italic;
  color: var(--border-color); line-height: 1; margin-bottom: 1.25rem; transition: color 0.4s var(--ease);
}
.process-card:hover .process-step-num { color: var(--gold); }
.process-title { font-size: 1.3rem; margin-bottom: 1rem; }
.process-desc { color: var(--text-muted); font-size: 0.96rem; }

/* ===== TEAM SECTION ===== */
.team-section { background: var(--bg-light); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.team-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: 4.5rem; align-items: start; }
.team-members { display: flex; flex-direction: column; gap: 2.25rem; margin-top: 3rem; }
.team-member { display: flex; gap: 1.5rem; align-items: flex-start; transition: transform 0.4s var(--ease-out); }
.team-member:hover { transform: translateX(4px); }
.member-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: white; border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0; box-shadow: var(--shadow-sm);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.team-member:hover .member-icon { background: var(--primary); color: white; }
.member-icon svg { width: 28px; height: 28px; }
.member-details h4 { font-size: 1.2rem; margin-bottom: 0.3rem; font-family: 'Fraunces', serif; font-weight: 600; }
.member-role { display: inline-block; font-size: 0.72rem; font-weight: 700; color: var(--primary); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.85rem; padding: 0.25rem 0.65rem; background: rgba(27,94,63,0.08); border-radius: var(--radius-sm); }
.member-details p { font-size: 0.96rem; color: var(--text-muted); }

.team-visual { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 1.5rem; }
.lab-badge {
  background: white; border: 1px solid var(--border-color); border-radius: var(--radius);
  padding: 2.25rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.lab-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lab-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--primary);
}
.lab-icon svg { width: 30px; height: 30px; display: block; }
.lab-badge h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.lab-badge p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== SERVICES ===== */
.services-section { background: var(--bg-white); }
.services-stack { display: flex; flex-direction: column; gap: 2.5rem; }
.service-detailed-card {
  background: white; border: 1px solid var(--border-color); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.service-detailed-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary-light); transform: translateY(-2px); }
#service-termite, #service-pest { background: white url('assets/termite-pattern.svg') repeat; }
#service-agri { background: white url('assets/agri-pattern.svg') repeat; }
.sdc-header {
  display: flex; align-items: flex-start; gap: 1.75rem; padding: 2.75rem;
  background: var(--bg-light); border-bottom: 1px solid var(--border-color);
}
.service-icon {
  width: 64px; height: 64px; border-radius: var(--radius-sm); background: white;
  display: flex; align-items: center; justify-content: center; color: var(--primary);
  box-shadow: var(--shadow-sm); flex-shrink: 0;
}
.service-icon svg { width: 32px; height: 32px; }
.service-title { font-size: 1.55rem; margin-bottom: 0.6rem; }
.service-desc { color: var(--text-muted); font-size: 1rem; max-width: 800px; }
.sdc-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 2.75rem;
}
.sdc-column h4 { font-size: 1.02rem; color: var(--primary); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.06em; font-family: 'Inter', sans-serif; }
.sdc-column > p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.sdc-column h5 { font-size: 0.9rem; margin-bottom: 1rem; color: var(--text-dark); font-family: 'Inter', sans-serif; font-weight: 700; }
.sdc-list { display: grid; gap: 0.75rem; }
.sdc-list li {
  position: relative; padding-left: 1.25rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.45;
}
.sdc-list li::before {
  content: ""; position: absolute; left: 0; top: 0.45rem;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.grid-list-1 { grid-template-columns: 1fr; }
.grid-list-2 { grid-template-columns: 1fr 1fr; }
.grid-list-3 { grid-template-columns: repeat(3, 1fr); }
.crops-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; }
.sidebar-col { background: var(--bg-light); padding: 2rem; border-radius: var(--radius-sm); border: 1px solid var(--border-color); }

/* ===== AMC BANNER ===== */
.amc-banner {
  background:
    radial-gradient(ellipse 70% 80% at 90% 50%, rgba(176,141,82,0.14), transparent 60%),
    var(--primary-dark);
  padding: clamp(3rem, 6vw, 4rem) 0;
}
.amc-inner { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.amc-text { max-width: 640px; }
.amc-text .section-heading { margin-bottom: 0.6rem; }
.amc-desc { color: rgba(255,255,255,.75); font-size: 1.05rem; }
.amc-trust-note { margin-top: 1rem; font-size: 0.85rem; color: rgba(255,255,255,.55); font-style: italic; }

/* ===== CASE STUDIES ===== */
.case-studies-section { background: var(--bg-light); }
.case-study-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.case-study-card {
  background: white; border: 1px solid var(--border-color); border-radius: var(--radius);
  padding: 2.5rem; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.case-study-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case-study-title { font-size: 1.3rem; margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border-color); }
.case-study-row { margin-bottom: 1.25rem; }
.case-study-row:last-child { margin-bottom: 0; }
.case-label {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 0.4rem;
}
.case-study-row p { color: var(--text-muted); font-size: 0.95rem; }
.case-study-row p em { font-style: italic; color: var(--text-muted); font-weight: 400; }

/* ===== GUARANTEE SECTION ===== */
.guarantee-section { background: var(--bg-white); }
.guarantee-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }

/* ===== CONFIRM PLACEHOLDER ===== */
.confirm-placeholder {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-style: italic; font-weight: 700;
  color: var(--gold); background: rgba(176,141,82,0.12);
  border: 1px dashed var(--gold); border-radius: var(--radius-sm);
  padding: 0.3rem 0.65rem; white-space: normal;
}

/* ===== FAQ ===== */
.faq-section { background: var(--bg-light); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-item:first-child { border-top: 1px solid var(--border-color); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: none; border: none; text-align: left; cursor: pointer;
  padding: 1.5rem 0.25rem; font-family: 'Fraunces', serif; font-size: 1.08rem; font-weight: 600; color: var(--text-dark);
}
.faq-question:hover { color: var(--primary); }
.faq-chevron { flex-shrink: 0; color: var(--primary); transition: transform 0.4s var(--ease-out); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--ease-out); }
.faq-answer-inner { overflow: hidden; }
.faq-answer p { padding: 0 0.25rem 1.5rem; color: var(--text-muted); font-size: 0.96rem; max-width: 760px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

/* ===== CONTACT ===== */
.contact {
  background:
    radial-gradient(ellipse 70% 60% at 15% 0%, rgba(176,141,82,0.10), transparent 60%),
    var(--primary-dark);
  position: relative;
}
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; position: relative; z-index: 1; }
.contact-body { color: rgba(255,255,255,.72); font-size: 1.12rem; margin-bottom: 2.75rem; }
.contact-phones { display: flex; flex-direction: column; gap: 1rem; }
.phone-row {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm);
  padding: 1.1rem 1.35rem; color: white;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.phone-row:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); transform: translateX(4px); }
.phone-row svg { color: var(--gold-light); flex-shrink: 0; }
.phone-label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }
.phone-num { display: block; font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 600; }
.contact-note { color: rgba(255,255,255,.55); font-size: 0.88rem; margin-top: 1rem; font-style: italic; }
.contact-meta { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.75rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.1); }
.contact-brochure-btn { margin-top: 2rem; }
.meta-row { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.meta-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }
.meta-value { color: rgba(255,255,255,.88); font-weight: 600; font-size: 0.92rem; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,.35); transition: text-decoration-color 0.3s var(--ease); }
.meta-value:hover { text-decoration-color: white; }
.contact-form-wrap { background: white; border-radius: var(--radius); padding: 2.75rem; box-shadow: var(--shadow-xl); }
.form-title { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-sub { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.25rem; font-weight: 500; }
.response-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(27,94,63,0.08); color: var(--primary-dark);
  border: 1px solid rgba(27,94,63,0.18); border-radius: var(--radius-sm);
  padding: 0.55rem 0.9rem; font-size: 0.82rem; font-weight: 700; margin-bottom: 1.75rem;
}
.callback-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.55rem; }
.form-group label { font-size: 0.75rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.06em; }
.label-optional { text-transform: none; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.9rem 1.1rem; border: 1px solid var(--border-color); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text-dark); background: var(--sage-50);
  outline: none; transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235C6B62' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.85rem center;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); background-color: white; box-shadow: 0 0 0 3px rgba(27,94,63,0.1); }
.form-error { color: #C0392B; font-size: 0.85rem; font-weight: 600; min-height: 0; }
.form-botcheck { display: none; }

.form-success-panel {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.75rem; padding: 2.5rem 1.5rem; color: var(--primary-dark);
}
.form-success-panel svg { color: var(--primary); }
.form-success-panel h3 { font-size: 1.35rem; margin: 0; }
.form-success-panel p { color: var(--text-muted); font-size: 0.95rem; margin: 0; max-width: 34ch; }

.whatsapp-alt-link {
  display: flex; align-items: center; justify-content: center; gap: 0.55rem;
  margin-top: 1.5rem; padding: 0.85rem 1rem; border: 1px dashed var(--border-color);
  border-radius: var(--radius-sm); color: var(--text-muted); font-size: 0.88rem;
  font-weight: 500; text-decoration: none; transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.whatsapp-alt-link svg { color: #25D366; flex-shrink: 0; }
.whatsapp-alt-link strong { color: var(--text-dark); font-weight: 700; }
.whatsapp-alt-link:hover { border-color: #25D366; color: var(--text-dark); }

/* ===== FOOTER ===== */
.footer { background: var(--forest-950); padding: 5rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; max-width: 340px; }
.footer-logo { display: flex; align-items: center; gap: 0.85rem; }
.footer-logo-name { color: white; }
.footer-logo-sub { color: rgba(255,255,255,.5); }
.footer-tagline { font-size: 0.92rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.footer-col { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-heading {
  font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.4rem;
}
.footer-col a {
  font-size: 0.92rem; color: rgba(255,255,255,.6); width: fit-content;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease); display: inline-block;
}
.footer-col a:hover { color: white; transform: translateX(3px); }
.footer-note { font-size: 0.82rem; color: rgba(255,255,255,.4); font-style: italic; margin-top: 0.25rem; }
.footer-confirm { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: rgba(255,255,255,.55); flex-wrap: wrap; }
.footer-confirm a { color: rgba(255,255,255,.75); text-decoration: underline; text-underline-offset: 2px; transition: color 0.3s var(--ease); }
.footer-confirm a:hover { color: white; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding: 1.75rem 0 2rem;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,.35); font-weight: 500; }
.footer-credit { font-size: 0.82rem; color: rgba(255,255,255,.35); font-weight: 500; }

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25D366; color: white; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.4); transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.float-wa:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 14px 34px rgba(37,211,102,.5); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 0.09s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner, .team-grid, .contact-inner { grid-template-columns: 1fr; }
  .process-grid, .case-study-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr 1fr; }
  .coverage-inner { flex-wrap: wrap; text-align: center; justify-content: center; }
  .amc-inner { justify-content: center; text-align: center; }
  .amc-text { margin: 0 auto; }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-heading { align-items: center; }
  .hero-sub { border-left: none; padding-left: 0; margin: 0 auto 2.5rem; }
  .hero-buttons, .hero-stats { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero-visual { display: none; }
  .team-visual { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .sdc-body, .crops-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { max-width: 100%; grid-column: 1 / -1; }
  .eyebrow { justify-content: center; }
}

@media (max-width: 640px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 999; background: white; flex-direction: column; padding: 1.5rem; gap: 0.5rem; border-bottom: 1px solid var(--border-color); box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; padding: 1rem; }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .hamburger { display: flex; }
  .hero-stats { grid-template-columns: 1fr; width: 100%; }
  .stat { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-color); }
  .stat:last-child { border-bottom: none; }
  .team-visual { grid-template-columns: 1fr; }
  .float-wa { bottom: 1.25rem; right: 1.25rem; width: 56px; height: 56px; }
  .sdc-header { flex-direction: column; }
  .grid-list-2, .grid-list-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col { align-items: center; }
  .footer-brand { align-items: center; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-confirm { justify-content: center; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .meta-row { justify-content: center; }
}

/* WHERE WE WORK / CLIENT MAP */
.map-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
#clientMap {
  width: 100%;
  height: 450px;
  background: var(--bg-light);
}
.leaflet-container { width: 100%; height: 100%; }
.client-pin { background: transparent; border: none; }
.leaflet-popup-content-wrapper { border-radius: var(--radius-sm); box-shadow: var(--shadow-md); }
.leaflet-popup-content { font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--text-dark, #16241C); margin: 0.7rem 0.9rem; }
.leaflet-popup-content strong { color: var(--primary); }
.map-footnote {
  text-align: center;
  margin-top: 1.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--primary);
}

@media (max-width: 640px) {
  #clientMap { height: 300px; }
}

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