/* ==========================================================================
   ECOFORA BIOFUELS — Stylesheet v2
   Layout: Split Hero | Stats Strip | Zigzag About | Process Timeline |
           Dark Services Grid | Staggered Gallery | CTA Banner
   Palette: Deep Forest Green #0d3320 | Leaf Green #5cb85c | Gold #f5b041
   ========================================================================== */

:root {
  --ef-dark:    #071f13;
  --ef-primary: #0d3320;
  --ef-mid:     #1a4d2e;
  --ef-green:   #5cb85c;
  --ef-lime:    #8cc63f;
  --ef-gold:    #f5b041;
  --ef-light:   #f4f9f5;
  --ef-muted:   #64748b;
  --ef-white:   #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', sans-serif;
  color: #1e2d27;
  background: #fff;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

img { display: block; width: 100%; object-fit: cover; }

/* ── Utility ── */
.ef-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.ef-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ef-green);
  margin-bottom: 12px;
}
.ef-label--light { color: var(--ef-lime); }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Buttons ── */
.ef-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  background: var(--ef-green); color: #fff;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: background .3s, transform .2s;
}
.ef-btn-primary:hover { background: #4cae4c; transform: translateY(-2px); }

.ef-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  border: 2px solid rgba(255,255,255,.35); color: #fff;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: background .3s, border-color .3s;
}
.ef-btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); }

.ef-btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  border: 2px solid rgba(255,255,255,.3); color: #fff;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: background .3s;
}
.ef-btn-ghost-light:hover { background: rgba(255,255,255,.1); }

/* ==========================================================================
   1. SPLIT HERO
   ========================================================================== */
.ef-hero {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
}

/* Left: dark green panel */
.ef-hero-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px;
  background: linear-gradient(160deg, var(--ef-primary) 0%, var(--ef-mid) 100%);
  position: relative;
  z-index: 1;
}

.ef-hero-left::before {
  content: "";
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(92,184,92,.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.ef-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ef-lime);
  background: rgba(140,198,63,.12);
  border: 1px solid rgba(140,198,63,.3);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.ef-hero-left h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.ef-hero-left h1 span {
  color: var(--ef-lime);
  font-style: italic;
}

.ef-hero-left > p {
  font-size: 16px;
  line-height: 1.8;
  color: #b2d4be;
  margin-bottom: 36px;
  max-width: 440px;
  position: relative;
  z-index: 1;
}

.ef-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.ef-mobile-stats { display: none; }

/* Right: image panel */
.ef-hero-right {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.ef-hero-right img {
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.ef-hero-right:hover img { transform: scale(1.04); }

.ef-hero-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.ef-hero-badge i {
  font-size: 28px;
  color: var(--ef-green);
}

.ef-hero-badge strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ef-primary);
}

.ef-hero-badge span {
  font-size: 12px;
  color: var(--ef-muted);
}

/* ==========================================================================
   2. IMPACT STATS STRIP
   ========================================================================== */
.ef-stats-strip {
  background: var(--ef-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 24px;
}

.ef-stat-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.ef-stat-item strong {
  display: block;
  font-size: 34px;
  font-weight: 700;
  color: var(--ef-lime);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}

.ef-stat-item span {
  font-size: 13px;
  color: #8aad97;
  letter-spacing: 0.5px;
}

.ef-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ==========================================================================
   3. ABOUT — ZIGZAG
   ========================================================================== */
.ef-about {
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}

.ef-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.ef-about-img {
  flex: 0 0 48%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13,51,32,.12);
}

.ef-about-img img {
  height: 520px;
  object-fit: cover;
}

.ef-about-text { flex: 1; }

.ef-about-text h2 {
  font-size: 44px;
  line-height: 1.2;
  color: var(--ef-primary);
  margin-bottom: 20px;
}

.ef-about-text h2 em { color: var(--ef-green); font-style: italic; }

.ef-about-text > p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ef-muted);
  margin-bottom: 36px;
}

.ef-about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ef-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--ef-light);
  border-radius: 12px;
  border-left: 3px solid var(--ef-green);
}

.ef-pillar i {
  color: var(--ef-green);
  font-size: 18px;
  width: 36px;
  height: 36px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.ef-pillar span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ef-primary);
}

/* ==========================================================================
   4. PROCESS TIMELINE
   ========================================================================== */
.ef-process {
  padding: 100px 0;
  background: var(--ef-light);
}

.ef-section-head {
  text-align: center;
  margin-bottom: 70px;
}

.ef-section-head h2 {
  font-size: 42px;
  color: var(--ef-primary);
  margin-top: 10px;
}

.ef-section-head p {
  font-size: 16px;
  color: var(--ef-muted);
  margin-top: 14px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.ef-section-head--light h2 { color: #fff; }
.ef-section-head--light p  { color: #a8c5b2; }

.ef-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.ef-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.ef-step-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ef-green);
  margin-bottom: 16px;
}

.ef-step-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: var(--ef-green);
  box-shadow: 0 12px 30px rgba(13,51,32,.1);
  border: 2px solid rgba(92,184,92,.2);
  transition: all .3s ease;
}

.ef-step:hover .ef-step-icon {
  background: var(--ef-green);
  color: #fff;
  transform: translateY(-4px);
}

.ef-step h3 {
  font-size: 22px;
  color: var(--ef-primary);
  margin-bottom: 12px;
}

.ef-step p {
  font-size: 14px;
  color: var(--ef-muted);
  line-height: 1.7;
}

.ef-step-connector {
  flex: 0 0 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--ef-green), var(--ef-lime));
  margin-top: 116px; /* aligns with center of icon */
  border-radius: 2px;
  opacity: .4;
}

/* ==========================================================================
   5. SERVICES — DARK GRID
   ========================================================================== */
.ef-services {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--ef-dark) 0%, var(--ef-primary) 100%);
  position: relative;
  overflow: hidden;
}

.ef-services::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(92,184,92,.08) 0%, transparent 70%);
  border-radius: 50%;
}

.ef-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.ef-scard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background .3s, transform .3s, border-color .3s;
}

.ef-scard:hover {
  background: rgba(92,184,92,.1);
  border-color: rgba(92,184,92,.3);
  transform: translateY(-6px);
}

.ef-scard-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,.04);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  transition: color .3s;
}

.ef-scard:hover .ef-scard-num { color: rgba(92,184,92,.12); }

.ef-scard-icon {
  width: 56px;
  height: 56px;
  background: rgba(92,184,92,.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ef-lime);
  margin-bottom: 22px;
  transition: background .3s, color .3s;
}

.ef-scard:hover .ef-scard-icon {
  background: var(--ef-green);
  color: #fff;
}

.ef-scard h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}

.ef-scard p {
  font-size: 14px;
  color: #8aad97;
  line-height: 1.65;
}

/* ==========================================================================
   6. STAGGERED GALLERY
   ========================================================================== */
.ef-gallery {
  padding: 100px 0;
  background: #fff;
}

.ef-gallery-grid {
  display: flex;
  gap: 16px;
  margin-top: 50px;
  height: 520px;
}

.ef-gcard {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  cursor: pointer;
}

.ef-gcard--tall { flex: 1.4; }

.ef-gcard img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.ef-gcard:hover img { transform: scale(1.06); }

.ef-gcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,31,19,.75) 0%, transparent 55%);
  z-index: 1;
}

.ef-gcard-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.ef-gcard-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ef-lime);
  margin-bottom: 6px;
}

.ef-gcard-overlay h3 {
  font-size: 22px;
  color: #fff;
  line-height: 1.2;
}

.ef-gallery-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ef-gallery-right .ef-gcard {
  flex: 1;
}

/* ==========================================================================
   7. CTA BANNER
   ========================================================================== */
.ef-cta {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--ef-mid) 0%, var(--ef-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ef-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/ecofora_agri.png') center/cover no-repeat;
  opacity: .08;
}

.ef-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.ef-cta-inner h2 {
  font-size: 48px;
  color: #fff;
  line-height: 1.2;
  margin: 14px 0 18px;
}

.ef-cta-inner h2 em { color: var(--ef-lime); font-style: italic; }

.ef-cta-inner p {
  font-size: 17px;
  color: #a8c5b2;
  margin-bottom: 40px;
  line-height: 1.7;
}

.ef-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.ef-footer {
  background: var(--ef-dark);
  padding: 80px 0 0;
}

.ef-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
}

.ef-footer-brand h2 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 16px;
}

.ef-footer-brand h2 span { color: var(--ef-green); }

.ef-footer-brand p {
  font-size: 15px;
  color: #8aad97;
  line-height: 1.8;
}

.ef-footer-nav h3,
.ef-footer-contact h3 {
  font-size: 16px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}

.ef-footer-nav ul { list-style: none; }

.ef-footer-nav ul li { margin-bottom: 10px; }

.ef-footer-nav ul li a {
  color: #8aad97;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}

.ef-footer-nav ul li a:hover { color: var(--ef-green); }

.ef-footer-contact p {
  font-size: 14px;
  color: #8aad97;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ef-footer-contact p i { color: var(--ef-green); margin-top: 3px; flex-shrink: 0; }

.ef-footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.ef-footer-contact a:hover { color: var(--ef-green); }

.ef-footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  text-align: center;
}

.ef-footer-bottom p { font-size: 13px; color: #4a6654; }

/* ==========================================================================
   RESPONSIVE — Large Desktop (≥1440px)
   ========================================================================== */
@media (min-width: 1440px) {
  .ef-hero-left { padding: 140px 80px 100px; }
  .ef-hero-left h1 { font-size: 62px; }
  .ef-stats-strip { padding: 50px 60px; }
  .ef-stat-item strong { font-size: 42px; }
}

/* ==========================================================================
   RESPONSIVE — Tablet Landscape (≤1200px)
   ========================================================================== */
@media (max-width: 1200px) {
  .ef-hero-left { padding: 110px 44px 70px; }
  .ef-hero-left h1 { font-size: 44px; }
  .ef-about-text h2 { font-size: 38px; }
  .ef-cta-inner h2 { font-size: 40px; }
}

/* ==========================================================================
   RESPONSIVE — Tablet Portrait (≤992px)
   ========================================================================== */
@media (max-width: 992px) {
  /* Hero: stacks vertically */
  .ef-hero { flex-direction: column; min-height: auto; }
  .ef-hero-left { flex: none; padding: 110px 32px 60px; }
  .ef-hero-right { flex: none; height: 50vw; min-height: 300px; }

  /* About */
  .ef-about-inner { flex-direction: column; gap: 40px; }
  .ef-about-img { flex: none; }
  .ef-about-img img { height: 320px; }
  .ef-about-text h2 { font-size: 34px; }

  /* Process timeline: vertical */
  .ef-timeline { flex-direction: column; align-items: center; gap: 0; }
  .ef-step { max-width: 420px; width: 100%; padding: 20px 24px; }
  .ef-step-connector {
    width: 2px; height: 36px;
    background: linear-gradient(180deg, var(--ef-green), var(--ef-lime));
    margin: 0 auto;
    border-radius: 2px;
    opacity: .4;
  }

  /* Services */
  .ef-services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .ef-gallery-grid { height: auto; flex-direction: column; }
  .ef-gallery-right { flex-direction: row; gap: 16px; }
  .ef-gcard, .ef-gcard--tall { height: 280px; flex: 1; }

  /* Footer */
  .ef-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ef-footer-brand { grid-column: 1 / -1; }
}

/* ==========================================================================
   RESPONSIVE — Mobile Large (≤768px)
   ========================================================================== */
@media (max-width: 768px) {
  /* ── Hero ── */
  body { /* no sticky CTA padding needed */ }

  .ef-hero { flex-direction: column; }

  .ef-hero-left {
    flex: none;
    padding: 100px 20px 50px;
    min-height: 100dvh;
    justify-content: center;
  }

  .ef-tag { font-size: 10px; padding: 7px 14px; }

  .ef-hero-left h1 { font-size: 32px; line-height: 1.22; margin-bottom: 14px; }

  .ef-hero-left h1 span {
    background: linear-gradient(90deg, var(--ef-lime), #c5e86a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
  }

  .ef-hero-left > p { font-size: 14px; line-height: 1.75; margin-bottom: 24px; }

  .ef-hero-actions { flex-direction: column; gap: 10px; }

  .ef-btn-primary,
  .ef-btn-ghost,
  .ef-btn-ghost-light {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
    border-radius: 10px;
  }

  /* Mobile glassmorphism stats strip inside hero */
  .ef-mobile-stats {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 28px;
    position: relative;
    z-index: 1;
  }

  .ef-mstat { flex: 1; text-align: center; padding: 13px 8px; }
  .ef-mstat + .ef-mstat { border-left: 1px solid rgba(255,255,255,.1); }
  .ef-mstat strong { display: block; font-size: 18px; font-weight: 700; color: var(--ef-lime); line-height: 1; margin-bottom: 4px; }
  .ef-mstat span { font-size: 9px; color: #b2d4be; text-transform: uppercase; letter-spacing: .5px; }

  /* Right panel image: show below hero on mobile */
  .ef-hero-right { flex: none; height: 55vw; min-height: 200px; }
  .ef-hero-badge { bottom: 14px; left: 14px; padding: 10px 14px; gap: 10px; border-radius: 10px; }
  .ef-hero-badge i { font-size: 20px; }
  .ef-hero-badge strong { font-size: 13px; }
  .ef-hero-badge span { font-size: 11px; }

  /* ── Impact Stats Strip ── */
  .ef-stats-strip { flex-wrap: wrap; gap: 0; padding: 0; }
  .ef-stat-divider { display: none; }
  .ef-stat-item {
    flex: 0 0 50%;
    padding: 28px 20px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .ef-stat-item:nth-child(1),
  .ef-stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.06); }
  .ef-stat-item strong { font-size: 28px; }
  .ef-stat-item span { font-size: 12px; }

  /* ── About ── */
  .ef-about { padding: 60px 0; }
  .ef-about-inner { padding: 0 20px; gap: 32px; }
  .ef-about-img { border-radius: 16px; }
  .ef-about-img img { height: 260px; }
  .ef-about-text h2 { font-size: 28px; margin-bottom: 16px; }
  .ef-about-text > p { font-size: 14px; line-height: 1.75; margin-bottom: 24px; }

  /* Pillars: centered column on mobile */
  .ef-about-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ef-pillar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 10px;
    gap: 10px;
    border-left: none;
    border-top: 3px solid var(--ef-green);
    border-radius: 12px;
  }

  .ef-pillar i {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .ef-pillar span {
    font-size: 13px;
    font-weight: 600;
    color: var(--ef-primary);
    line-height: 1.3;
  }

  /* ── Process ── */
  .ef-process { padding: 60px 0; }
  .ef-section-head { margin-bottom: 48px; padding: 0 20px; }
  .ef-section-head h2 { font-size: 26px; }
  .ef-section-head p { font-size: 14px; margin-top: 10px; }
  .ef-timeline { padding: 0 20px; }
  .ef-step { max-width: 100%; padding: 16px 0; }
  .ef-step-num { font-size: 11px; }
  .ef-step-icon { width: 64px; height: 64px; font-size: 26px; margin-bottom: 16px; }
  .ef-step h3 { font-size: 19px; margin-bottom: 10px; }
  .ef-step p { font-size: 14px; }
  .ef-step-connector { height: 28px; }

  /* ── Services ── */
  .ef-services { padding: 60px 0; }
  .ef-services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 20px; }
  .ef-scard {
    padding: 22px 16px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
  }
  .ef-scard-icon { width: 46px; height: 46px; font-size: 18px; border-radius: 12px; margin-bottom: 14px; }
  .ef-scard h3 { font-size: 14px; line-height: 1.3; margin-bottom: 0; font-family: 'Poppins', sans-serif; font-weight: 600; }
  .ef-scard p { display: none; }
  .ef-scard-num { font-size: 28px; top: 12px; right: 14px; }

  /* ── Gallery ── */
  .ef-gallery { padding: 60px 0; overflow: hidden; }
  .ef-gallery .ef-container { padding: 0; }
  .ef-gallery .ef-section-head { padding: 0 20px; }
  .ef-gallery-grid {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: auto;
    gap: 12px;
    padding: 20px 20px 28px;
    margin-top: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .ef-gallery-grid::-webkit-scrollbar { display: none; }
  .ef-gcard,
  .ef-gcard--tall {
    flex: 0 0 78vw;
    max-width: 300px;
    height: 260px;
    scroll-snap-align: start;
    border-radius: 16px;
  }
  .ef-gallery-right {
    flex-direction: row;
    flex: 0 0 auto;
    gap: 12px;
    display: contents; /* flatten into parent flex */
  }
  .ef-gallery-right .ef-gcard { display: flex; flex: 0 0 78vw; max-width: 300px; }

  /* ── CTA Banner ── */
  .ef-cta { padding: 70px 20px; }
  .ef-cta-inner h2 { font-size: 28px; margin-bottom: 14px; }
  .ef-cta-inner p { font-size: 14px; margin-bottom: 28px; }
  .ef-cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }

  /* ── Footer ── */
  .ef-footer { padding: 56px 0 0; }
  .ef-footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .ef-footer-brand { grid-column: auto; }
  .ef-footer-brand h2 { font-size: 26px; }
  .ef-footer-brand p { font-size: 14px; }
  .ef-footer-bottom { margin-top: 36px; padding: 18px 20px; }
}

/* ==========================================================================
   RESPONSIVE — Mobile Small (≤480px)
   ========================================================================== */
@media (max-width: 480px) {
  .ef-hero-left h1 { font-size: 28px; }
  .ef-hero-left > p { font-size: 13px; }
  .ef-about-img img { height: 220px; }
  .ef-about-pillars { grid-template-columns: 1fr 1fr; }
  .ef-section-head h2 { font-size: 24px; }
  .ef-services-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ef-scard { padding: 18px 12px; }
  .ef-scard-icon { width: 40px; height: 40px; font-size: 16px; margin-bottom: 10px; }
  .ef-scard h3 { font-size: 13px; }
  .ef-gcard, .ef-gcard--tall { flex: 0 0 84vw; height: 240px; }
  .ef-cta-inner h2 { font-size: 24px; }
  .ef-stat-item strong { font-size: 24px; }
}

/* ==========================================================================
   RESPONSIVE — Extra Small (≤360px)
   ========================================================================== */
@media (max-width: 360px) {
  .ef-hero-left h1 { font-size: 24px; }
  .ef-tag { font-size: 9px; letter-spacing: 1px; }
  .ef-section-head h2 { font-size: 22px; }
  .ef-about-text h2 { font-size: 22px; }
  .ef-services-grid { gap: 6px; }
  .ef-scard { padding: 14px 10px; border-radius: 12px; }
  .ef-gcard, .ef-gcard--tall { flex: 0 0 90vw; height: 220px; }
  .ef-cta-inner h2 { font-size: 22px; }
  .ef-mstat strong { font-size: 15px; }
}
