/* ================================================================
   PRELOADER
================================================================ */
.esgreen-preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.6s, visibility 0.6s;
}
.esgreen-preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.esgreen-preloader-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-dark);
}
.esgreen-preloader-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--pale);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ================================================================
   SCROLL PROGRESS BAR
================================================================ */
.esgreen-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--light-green));
  z-index: 100;
  width: 0%;
  transition: width 0.1s linear;
}

/* ================================================================
   WAVE DIVIDER
================================================================ */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}
.wave-divider svg {
  width: 100%;
  height: 48px;
  display: block;
}
.wave-divider.flip {
  transform: rotate(180deg);
  margin-top: 0;
  margin-bottom: -1px;
}
.wave-divider path {
  animation: waveFlow 4s ease-in-out infinite;
}

/* ================================================================
   HEADER / NAVBAR
================================================================ */
.esgreen-navbar {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 32px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s;
}
.esgreen-navbar.scrolled {
  box-shadow: 0 2px 16px rgba(26, 61, 19, 0.08);
}
.esgreen-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.esgreen-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.esgreen-logo:hover { opacity: 0.8; }
.esgreen-logo-icon { height: 40px; width: auto; flex-shrink: 0; }
.esgreen-logo-text {
  font-family: var(--font-display) !important;
  font-weight: 600;
  font-size: 24px;
  color: var(--forest);
}
.esgreen-nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.esgreen-nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.3s;
}
.esgreen-nav-links a:hover,
.esgreen-nav-links a.current-menu-item {
  color: var(--brand);
  background: var(--pale);
}
.esgreen-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.esgreen-lang-btn {
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 16px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: none;
  transition: all 0.3s;
}
.esgreen-lang-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.esgreen-nav-cta {
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--brand);
  color: var(--white) !important;
  box-shadow: 0 2px 8px rgba(109, 192, 67, 0.2);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.esgreen-nav-cta:hover {
  background: var(--mid-green);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(109, 192, 67, 0.3);
  text-decoration: none;
}
.esgreen-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.esgreen-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.esgreen-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.esgreen-hamburger.open span:nth-child(2) { opacity: 0; }
.esgreen-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================================
   FOOTER
================================================================ */
.esgreen-footer {
  background: var(--forest);
  padding: 56px 0 24px;
  border-radius: 32px 32px 0 0;
}
.esgreen-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.esgreen-footer-logo-wrap { display: flex; align-items: center; gap: 4px; margin-bottom: 12px; }
.esgreen-footer-logo-icon { height: 36px; width: auto; flex-shrink: 0; filter: brightness(1.4); }
.esgreen-footer-logo-text { font-weight: 600; font-size: 24px; color: #fff; }
.esgreen-footer-slogan { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.6; }
.esgreen-footer-social { display: flex; gap: 10px; margin-top: 12px; }
.esgreen-footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; text-decoration: none;
  color: rgba(255,255,255,0.4);
}
.esgreen-footer-social a:hover { border-color: var(--brand); background: rgba(109,192,67,0.1); color: var(--brand); }
.esgreen-footer-col h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.esgreen-footer-col a, .esgreen-footer-col span { display: block; font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; padding: 3px 0; transition: color 0.3s; }
.esgreen-footer-col a:hover { color: var(--brand); }
.esgreen-nl-form { display: flex; gap: 8px; }
.esgreen-nl-form input { flex: 1; padding: 10px 16px; border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; background: rgba(255,255,255,0.06); color: var(--white); font-size: 13px; }
.esgreen-nl-form input::placeholder { color: rgba(255,255,255,0.3); }
.esgreen-nl-form input:focus { outline: none; border-color: var(--brand); }
.esgreen-nl-form button { width: 40px; height: 40px; border-radius: 50%; background: var(--brand); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; flex-shrink: 0; }
.esgreen-nl-form button:hover { background: var(--mid-green); }
.esgreen-nl-note { font-size: 10px; color: rgba(255,255,255,0.25); margin-top: 8px; }
.esgreen-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; padding-bottom: 64px; font-size: 11px; color: rgba(255,255,255,0.2); }
.esgreen-footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; margin-left: 16px; transition: color 0.3s; }
.esgreen-footer-bottom a:hover { color: var(--brand); }

/* ================================================================
   HERO SECTION
================================================================ */
.esgreen-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.esgreen-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A3D13, #295B20, #1A3D13, #295B20);
  background-size: 300% 300%;
  animation: gradientMove 12s ease infinite;
}
.esgreen-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/wp-content/themes/flatsome-esgreen/images/hero-bg.png') center right / cover no-repeat;
  opacity: 0.6;
  mix-blend-mode: soft-light;
}
.esgreen-hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c-5 8-15 15-15 25s7 20 15 20 15-10 15-20S35 13 30 5z' fill='%236DC043' opacity='0.4'/%3E%3C/svg%3E") repeat;
}
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.esgreen-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}
.esgreen-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 20px;
  text-transform: uppercase;
  display: block;
}
.esgreen-hero h1 {
  font-family: var(--font-display) !important;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 8px;
  max-width: 650px;
}
.esgreen-typed {
  font-family: var(--font-display) !important;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.2;
  color: var(--light-green);
  margin-bottom: 20px;
  min-height: 1.3em;
}
.esgreen-cursor {
  color: var(--brand);
  font-weight: 400;
  transition: opacity 0.1s;
}
.esgreen-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}
.esgreen-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }
.esgreen-trust-bar { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 32px; }
.esgreen-trust-label { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 600; }
.esgreen-trust-logos { display: flex; gap: 16px; align-items: center; }
.esgreen-trust-logos img { height: 40px; background: rgba(255,255,255,0.9); padding: 4px 12px; border-radius: 8px; transition: all 0.3s; }
.esgreen-stats { display: flex; gap: 32px; margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.esgreen-stat-val { font-family: var(--font-display) !important; font-weight: 700; font-size: 28px; color: var(--brand); }
.esgreen-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ================================================================
   ABOUT SECTION
================================================================ */
.esgreen-about { padding: 100px 0; background: var(--pale); }
.esgreen-about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.esgreen-about-body { font-size: 14px; color: var(--text-body); line-height: 1.8; margin-top: 16px; }
.esgreen-about-body p { margin-bottom: 16px; }
.esgreen-about-body strong { color: var(--forest); }
.esgreen-about-right { position: relative; }
.esgreen-about-img { width: 100%; aspect-ratio: 4/3; border-radius: 20px; overflow: hidden; }
.esgreen-about-img img { width: 100%; height: 100%; object-fit: cover; }
.esgreen-stat-card {
  position: absolute; bottom: -24px; right: -16px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(16px);
  border-radius: 16px; padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(26,61,19,0.12); border: 1px solid rgba(255,255,255,0.3);
}
.esgreen-stat-card-val { font-family: var(--font-display) !important; font-weight: 700; font-size: 20px; color: var(--forest); }
.esgreen-stat-card-lab { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ================================================================
   VISION / MISSION SECTION
================================================================ */
.esgreen-vm { padding: 80px 0; background: var(--white); }
.esgreen-vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.esgreen-vm-card { border-radius: 20px; padding: 40px 36px; transition: all 0.4s; position: relative; overflow: hidden; }
.esgreen-vm-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(41,91,32,0.15); }
.esgreen-vm-watermark { position: absolute; top: -10px; right: 16px; font-weight: 700; font-size: 120px; opacity: 0.06; color: var(--brand); line-height: 1; pointer-events: none; }
.esgreen-vm-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: var(--pale); }
.esgreen-vm-card h3 { font-weight: 700; font-size: 20px; color: var(--forest); margin-bottom: 10px; }
.esgreen-vm-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }
.esgreen-vm-stat { margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--brand); }
.esgreen-vm-card.dark { background: var(--forest); border: 1px solid rgba(109,192,67,0.15); }
.esgreen-vm-card.dark h3 { color: var(--white); }
.esgreen-vm-card.dark p { color: rgba(255,255,255,0.7); }
.esgreen-vm-card.dark .esgreen-vm-icon { background: rgba(109,192,67,0.15); }
.esgreen-vm-card.light { background: var(--white); border-left: 4px solid var(--brand); border-top: 1px solid var(--border); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ================================================================
   SERVICES SECTION
================================================================ */
.esgreen-svc { padding: 80px 0; }
.esgreen-svc.bg-pale { background: var(--pale); }
.esgreen-svc.bg-white { background: var(--white); }
.esgreen-svc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.esgreen-svc-layout.reverse { direction: rtl; }
.esgreen-svc-layout.reverse > * { direction: ltr; }
.esgreen-svc-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }
.esgreen-svc-title { font-weight: 700; font-size: clamp(24px, 3vw, 32px); color: var(--forest); margin-bottom: 12px; line-height: 1.25; }
.esgreen-svc-desc { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 24px; }
.esgreen-svc-features { list-style: none; margin-bottom: 24px; padding: 0; }
.esgreen-svc-features li { font-size: 13px; color: var(--text-body); line-height: 1.6; padding: 10px 0 10px 32px; position: relative; border-bottom: 1px solid var(--border); }
.esgreen-svc-features li:last-child { border-bottom: none; }
.esgreen-svc-features li::before { content: '✓'; position: absolute; left: 0; top: 10px; width: 20px; height: 20px; border-radius: 50%; background: var(--pale); color: var(--brand); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.esgreen-svc-features li strong { color: var(--forest); font-weight: 600; display: block; }
.esgreen-svc-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Dashboard mockup */
.esgreen-dash { width: 100%; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); border-radius: 16px; box-shadow: 0 12px 48px rgba(26,61,19,0.15); overflow: hidden; border: 1px solid rgba(255,255,255,0.3); }
.esgreen-dash-header { background: var(--forest); padding: 12px 20px; display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 700; }
.esgreen-dash-badge { font-size: 11px; border: 1px solid var(--brand); color: var(--brand); padding: 4px 12px; border-radius: 12px; }
.esgreen-dash-img { width: 100%; height: auto; display: block; border-radius: 0 0 16px 16px; }

/* ESG Rating visual */
.esgreen-rating-wrap { padding: 24px; }
.esgreen-rating-bars { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.esgreen-rating-bar { background: rgba(255,255,255,0.8); backdrop-filter: blur(8px); border: 1px solid var(--border); border-radius: 12px; padding: 16px; transition: all 0.3s; }
.esgreen-rating-bar:hover { border-color: var(--brand); box-shadow: 0 4px 16px rgba(109,192,67,0.08); }
.esgreen-rating-bar-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.esgreen-rating-label { font-size: 13px; font-weight: 600; color: var(--forest); }
.esgreen-rating-score { font-weight: 700; font-size: 14px; color: var(--brand); }
.esgreen-rating-track { height: 6px; background: var(--pale); border-radius: 3px; overflow: hidden; }
.esgreen-rating-fill { height: 100%; border-radius: 3px; transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1); width: 0; }
.esgreen-grade { background: linear-gradient(135deg, var(--gold), #D4AF37); color: var(--white); border-radius: 16px; padding: 24px; text-align: center; box-shadow: 0 8px 24px rgba(184,155,40,0.2); }
.esgreen-grade-label { font-size: 11px; font-weight: 700; opacity: 0.8; }
.esgreen-grade-val { font-weight: 700; font-size: 48px; line-height: 1; }
.esgreen-grade-sub { font-size: 10px; opacity: 0.7; margin-top: 4px; }

/* Net Zero visual */
.esgreen-nz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.esgreen-nz-img { border-radius: 16px; overflow: hidden; min-height: 120px; }
.esgreen-nz-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.esgreen-nz-tall { grid-row: span 2; }
.esgreen-nz-stat { border-radius: 16px; padding: 20px; display: flex; flex-direction: column; justify-content: center; }
.esgreen-nz-val { font-weight: 700; font-size: 28px; }
.esgreen-nz-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ================================================================
   JOURNEY SECTION
================================================================ */
.esgreen-journey { padding: 80px 0; background: var(--pale); }
.esgreen-steps { display: flex; align-items: flex-start; gap: 0; margin-top: 48px; position: relative; }
.esgreen-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: var(--pale-green); }
.esgreen-step { flex: 1; text-align: center; position: relative; z-index: 1; }
.esgreen-step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--brand); color: var(--white); font-weight: 700; font-size: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(109,192,67,0.25); transition: all 0.3s; }
.esgreen-step:hover .esgreen-step-num { transform: scale(1.1); box-shadow: 0 6px 24px rgba(109,192,67,0.35); }
.esgreen-step-title { font-weight: 700; font-size: 14px; color: var(--forest); margin-bottom: 6px; }
.esgreen-step-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; padding: 0 8px; }
.esgreen-step-chip { display: inline-block; font-size: 10px; font-weight: 700; background: var(--pale-green); color: var(--text-dark); padding: 3px 10px; border-radius: 10px; margin-top: 8px; }

/* ================================================================
   DIFFERENTIATORS SECTION
================================================================ */
.esgreen-diff { padding: 100px 0; background: var(--white); }
.esgreen-diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.esgreen-diff-card { background: var(--white); border-radius: 20px; padding: 32px 28px; transition: all 0.4s; border: 1px solid var(--border); }
.esgreen-diff-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,61,19,0.08); border-color: var(--pale-green); }
.esgreen-diff-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: var(--pale); font-size: 24px; }
.esgreen-diff-card h4 { font-size: 17px; font-weight: 700; color: var(--forest); margin-bottom: 4px; }
.esgreen-diff-stat { font-size: 13px; color: var(--brand); font-weight: 700; margin-bottom: 8px; }
.esgreen-diff-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }
.esgreen-diff-cta { margin-top: 48px; background: var(--forest); border-radius: 16px; padding: 32px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.esgreen-diff-cta p { color: var(--white); font-size: 15px; font-weight: 600; max-width: 620px; line-height: 1.6; }

/* ================================================================
   TEAM SECTION
================================================================ */
.esgreen-team { padding: 100px 0; background: var(--pale); }
.esgreen-team-subtitle { font-size: 15px; color: var(--text-muted); max-width: 550px; margin: 8px auto 0; text-align: center; }
.esgreen-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.esgreen-team-card { text-align: center; transition: all 0.4s; }
.esgreen-team-card:hover { transform: translateY(-4px); }
.esgreen-team-img-wrap { width: 100%; max-width: 240px; aspect-ratio: 3/4; border-radius: 20px; background: var(--forest); margin: 0 auto 20px; overflow: hidden; transition: all 0.4s; position: relative; }
.esgreen-team-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,61,19,0.7), transparent); opacity: 0; transition: opacity 0.4s; border-radius: 20px; }
.esgreen-team-card:hover .esgreen-team-img-wrap::after { opacity: 1; }
.esgreen-team-card:hover .esgreen-team-img-wrap { box-shadow: 0 12px 40px rgba(26,61,19,0.12); }
.esgreen-team-photo { width: 100%; height: 100%; object-fit: cover; }
.esgreen-team-name { font-weight: 700; font-size: 17px; color: var(--forest); margin-bottom: 12px; }
.esgreen-team-bio { font-size: 13px; color: var(--text-body); line-height: 1.6; text-align: left; }
.esgreen-team-highlight { font-size: 12px; color: var(--text-dark); font-weight: 600; margin-top: 8px; text-align: left; display: flex; align-items: flex-start; gap: 6px; }
.esgreen-team-values { margin-top: 40px; text-align: center; background: var(--pale-green); border-radius: 12px; padding: 20px 32px; display: inline-block; font-size: 15px; color: var(--text-body); }
.esgreen-team-values span { font-weight: 700; color: var(--forest); }

/* ================================================================
   BLOG PREVIEW SECTION
================================================================ */
.esgreen-blog-preview { padding: 80px 0; background: var(--white); }
.esgreen-blog-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.esgreen-blog-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border); transition: all 0.3s; }
.esgreen-blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,61,19,0.1); }
.esgreen-blog-card-img img { width: 100%; height: 180px; object-fit: cover; display: block; }
.esgreen-blog-card-body { padding: 20px; }
.esgreen-blog-card-badge { display: inline-block; padding: 3px 12px; border-radius: 100px; font-size: 11px; font-weight: 600; margin-bottom: 8px; }
.esgreen-blog-card-title { font-weight: 700; font-size: 16px; color: var(--forest); margin-bottom: 6px; line-height: 1.4; }
.esgreen-blog-card-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 8px; }
.esgreen-blog-card-meta { font-size: 12px; color: var(--text-muted); }
.esgreen-blog-preview-cta { text-align: center; margin-top: 32px; }

/* ================================================================
   CTA BANNER
================================================================ */
.esgreen-cta-banner { padding: 0 32px; margin: 60px 0; }
.esgreen-cta-inner {
  background: linear-gradient(135deg, #1A3D13, #295B20, #1A3D13);
  background-size: 200% 200%;
  animation: gradientMove 8s ease infinite;
  border-radius: 24px; padding: 64px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.esgreen-cta-glow { position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(109,192,67,0.15), transparent); animation: glowPulse 3s ease-in-out infinite; pointer-events: none; }
.esgreen-cta-inner h2 { font-weight: 700; font-size: clamp(28px, 3vw, 40px); color: var(--white); margin-bottom: 12px; line-height: 1.2; position: relative; }
.esgreen-cta-inner p { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; position: relative; }
.esgreen-cta-btns { display: flex; gap: 12px; justify-content: center; position: relative; }

/* ================================================================
   CONTACT SECTION
================================================================ */
.esgreen-contact { padding: 100px 0; background: var(--pale); }
.esgreen-contact-grid { display: grid; grid-template-columns: 55fr 45fr; gap: 48px; align-items: stretch; }
.esgreen-contact h2 { font-weight: 700; font-size: 28px; color: var(--forest); margin-bottom: 4px; }
.esgreen-contact-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

/* CF7 form overrides */
.esgreen-contact .wpcf7-form input[type="text"],
.esgreen-contact .wpcf7-form input[type="email"],
.esgreen-contact .wpcf7-form input[type="tel"],
.esgreen-contact .wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body) !important;
  font-size: 14px;
  color: var(--forest);
  transition: all 0.3s;
  background: var(--white);
}
.esgreen-contact .wpcf7-form input:focus,
.esgreen-contact .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(109, 192, 67, 0.12);
}
.esgreen-contact .wpcf7-form textarea { min-height: 100px; resize: vertical; }
.esgreen-contact .wpcf7-submit {
  background: var(--brand);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(109, 192, 67, 0.25);
}
.esgreen-contact .wpcf7-submit:hover { background: var(--mid-green); transform: translateY(-1px); }
.esgreen-contact-map { border-radius: 20px; overflow: hidden; min-height: 280px; }
.esgreen-contact-map iframe { width: 100%; height: 280px; border: 0; border-radius: 20px; }
.esgreen-contact-info { margin-top: 20px; background: var(--white); border-radius: 16px; padding: 20px 24px; border: 1px solid var(--border); }
.esgreen-contact-info-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 13px; color: var(--text-body); }

/* ================================================================
   STICKY CTA BAR
================================================================ */
.esgreen-sticky-cta {
  position: fixed;
  bottom: -60px;
  left: 0; right: 0;
  z-index: 40;
  background: var(--forest);
  padding: 12px 32px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  transition: bottom 0.4s ease;
  box-shadow: 0 -4px 20px rgba(26,61,19,0.2);
}
.esgreen-sticky-cta.visible { bottom: 0; }
.esgreen-sticky-cta-text { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 600; }
.esgreen-sticky-cta-btn {
  background: var(--brand); color: var(--white); font-size: 13px; font-weight: 700;
  padding: 8px 20px; border-radius: 20px; text-decoration: none; white-space: nowrap;
  transition: all 0.3s;
}
.esgreen-sticky-cta-btn:hover { background: var(--mid-green); color: var(--white); }
.esgreen-sticky-cta-close { background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; font-size: 18px; line-height: 1; margin-left: 8px; }

/* ================================================================
   FLOAT PHONE BUTTON
================================================================ */
.esgreen-float-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 45;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(109,192,67,0.35);
  text-decoration: none;
  animation: floatBounce 2s ease-in-out infinite;
}
.esgreen-float-btn:hover { background: var(--mid-green); }
