/* ============================================
   GOOGLE FONT IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ============================================
   GLOBAL RESET
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent ANY horizontal overflow on the whole page */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* ============================================
   GLOBAL TYPOGRAPHY — POPPINS FOR ALL HEADINGS
   Applied once here so every h1–h6 across every
   page inherits it automatically. Individual
   sections only need to override size/weight/color.
   Playfair Display overrides in gallery.css and
   contact.css are intentional decorative choices.
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

/* ============================================
   NAVBAR — OVERFLOW FIX
   The header must never be wider than the viewport.
   Without this, a wide logo image or long nav text
   can push the hamburger button off-screen on mobile.
   ============================================ */
#site-header {
  overflow: hidden;     /* clips anything wider than 100vw */
  width: 100%;
  max-width: 100vw;
}

/* The inner flex row needs min-width:0 on each child
   so flex items can shrink below their natural size */
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80rem;     /* matches Tailwind max-w-7xl (1280px) */
  margin: 0 auto;
  padding: 12px 16px;
  width: 100%;
  min-width: 0;         /* critical: allows flex children to shrink */
}

/* Logo wrapper — must not grow beyond available space */
.navbar-logo {
  flex-shrink: 0;       /* don't let it shrink so much it disappears */
  display: flex;
  align-items: center;
}

/* Logo image — constrain width on mobile so it can't push others off */
.navbar-logo img {
  height: 56px;         /* h-14 */
  width: auto;
  max-width: 160px;     /* hard cap — prevents wide landscape logos overflowing */
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .navbar-logo img {
    height: 64px;       /* md:h-16 */
    max-width: 200px;
  }
}

/* Desktop nav — shrink if needed, don't overflow */
.navbar-links {
  display: none;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
    gap: 2rem;
    font-weight: 500;
    color: #374151;
    flex-shrink: 1;
    min-width: 0;
  }

  .navbar-links a {
    text-decoration: none;
    color: #374151;
    white-space: nowrap;
    transition: color 0.2s;
  }

  .navbar-links a:hover {
    color: #166534;
  }
}

/* Desktop CTA */
.navbar-cta {
  display: none;
}

@media (min-width: 768px) {
  .navbar-cta {
    display: inline-block;
    background: #eab308;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s, transform 0.2s;
  }

  .navbar-cta:hover {
    background: #ca8a04;
    transform: scale(1.05);
  }
}

/* Hamburger button — always visible on mobile, never pushed off */
.navbar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;       /* never shrink — this is the key fix */
  color: #1f2937;
}

@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}

/* ============================================
   MOBILE MENU DRAWER
   Uses max-height transition — never pushes
   page content or causes layout shift.
   ============================================ */
.mobile-menu-drawer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  width: 100%;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}

.mobile-menu-drawer.is-open {
  max-height: 420px;
  opacity: 1;
}

@media (min-width: 768px) {
  .mobile-menu-drawer {
    display: none !important;
  }
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 24px 20px;
  gap: 2px;
}

.mobile-menu-link {
  display: block;
  padding: 11px 0;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu-link:hover {
  color: #166534;
  padding-left: 6px;
}

.mobile-menu-cta {
  display: block;
  margin-top: 14px;
  padding: 11px 0;
  background: #eab308;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.mobile-menu-cta:hover {
  background: #ca8a04;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.stat-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.stat-box-h3 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-box-p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 6px;
  text-align: center;
}

.card-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
}

.curve-card-yellow-1 {
  background: linear-gradient(135deg, #947600, #ffc720);
  height: 220px;
  border-radius: 120px 120px 120px 0;
}

.curve-card-yellow-2 {
  background: linear-gradient(135deg, #facc15, #bd8e01);
  height: 220px;
  border-radius: 120px 120px 120px 0;
}

.curve-card-green {
  background: linear-gradient(135deg, #104d27, #22c55e);
  height: 220px;
  border-radius: 120px 0 120px 120px;
}

.curve-card-dark {
  background: linear-gradient(135deg, #0f8565, #114e28);
  height: 220px;
  border-radius: 0 120px 120px 120px;
}

.curve-image-1 {
  overflow: hidden;
  height: 220px;
  border-radius: 0 120px 0 120px;
}

.curve-image-2 {
  overflow: hidden;
  height: 220px;
  border-radius: 0 120px 120px 120px;
}

@media screen and (max-width: 900px) {
  .stat-box {
    grid-template-columns: 1fr;
    min-width: auto;
  }

  .curve-card-yellow-1 {
    height: 150px;
    border-radius: 120px 120px 120px 0;
  }

  .curve-card-yellow-2 {
    height: 150px;
    border-radius: 0 120px 0 120px;
  }

  .curve-card-dark {
    height: 150px;
    border-radius: 120px 0 0 120px;
  }

  .curve-card-green {
    height: 150px;
    border-radius: 120px 0 120px 0;
  }

  .curve-image-1 {
    height: 220px;
    border-radius: 0 120px 120px 0;
  }

  .curve-image-2 {
    height: 220px;
    border-radius: 0 120px 120px 120px;
  }
}

/* ============================================
   WHAT WE DO SECTION
   ============================================ */
.focus-section {
  background: #ffffff;
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

.section-header p {
  margin-top: 12px;
  font-size: 16px;
  color: #555;
}

.section-header.light h2,
.section-header.light p {
  color: #fff;
}

.section-header.light p {
  opacity: 0.85;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.focus-card {
  background: #f9fafb;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.focus-icon {
  font-size: 48px;
  color: #166534;
  background: rgba(22, 101, 52, 0.08);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.focus-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.focus-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.focus-card:nth-child(1) { grid-column: span 2; }
.focus-card:nth-child(2) { grid-column: span 1; }
.focus-card:nth-child(3) { grid-column: span 1; }
.focus-card:nth-child(4) { grid-column: span 2; }

@media (max-width: 600px) {
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .focus-card {
    grid-column: span 1 !important;
  }

  .focus-section {
    padding: 60px 16px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 14px;
  }
}

/* ============================================
   FEATURED WORK SECTION
   ============================================ */
.work-section {
  background: #f9fafb;
  padding: 80px 20px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 260px;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
}

.work-card-overlay h3 {
  font-size: 18px;
  font-weight: 600;
}

.work-card-overlay p {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 4px;
}

.work-card:hover img {
  transform: scale(1.08);
}

.work-cta {
  text-align: center;
  margin-top: 40px;
}

.work-cta a {
  display: inline-block;
  padding: 12px 28px;
  background: #166534;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.work-cta a:hover {
  background: #14532d;
}

@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   GET INVOLVED / CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #166534, #22c55e);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 34px;
  font-weight: 700;
}

.cta-section p {
  margin-top: 16px;
  font-size: 16px;
  opacity: 0.95;
}

.cta-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.cta-btn.primary {
  background: #facc15;
  color: #111;
}

.cta-btn.primary:hover {
  background: #eab308;
}

.cta-btn.secondary {
  background: #ffffff;
  color: #166534;
}

.cta-btn.secondary:hover {
  background: #f3f4f6;
}

.cta-btn.outline {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.cta-btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 500px) {
  .cta-section h2 {
    font-size: 26px;
  }

  .cta-section p {
    font-size: 14px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #111;
  color: #ddd;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #aaa;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #222;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #fff;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: #166534;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
  height: 70vh;
  padding-top: 80px;
  background: url('../images/stats2.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 77, 39, 0.8), rgba(0, 0, 0, 0.7));
}

.about-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
}

.about-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
}

.about-hero-content p {
  margin-top: 12px;
  font-size: 18px;
  opacity: 0.9;
}

.story-section {
  padding: 100px 20px;
  background: #f9fafb;
}

.story-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.story-text p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.7;
}

.story-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
  transition: 0.4s;
}

.story-card img {
  width: 100%;
  display: block;
}

.story-card:hover {
  transform: rotate(0deg) scale(1.03);
}

.mv-section {
  padding: 100px 20px;
  background: #fff;
}

.mv-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  padding: 40px;
  border-radius: 20px;
  color: #fff;
  transition: 0.4s;
}

.mv-card:hover {
  transform: translateY(-10px);
}

.mv-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.mv-card p {
  line-height: 1.7;
  opacity: 0.95;
}

.mission {
  background: linear-gradient(135deg, #166534, #22c55e);
}

.vision {
  background: linear-gradient(135deg, #facc15, #eab308);
  color: #111 !important;
}

.vision h3,
.vision p {
  color: #111;
}

.values-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0f172a, #166534);
  color: #fff;
}

.values-section h2 {
  font-size: 36px;
  font-weight: 700;
}

.values-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
}

.value-card span {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
}

.value-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
}

.about-timeline-section {
  padding: 100px 20px;
  text-align: center;
}

.about-timeline-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

.about-timeline {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
}

.about-timeline::before {
  content: "";
  position: absolute;
  width: 4px;
  background: #22c55e;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about-timeline-item {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
  position: relative;
}

.about-timeline-content {
  width: 45%;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.about-timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.about-timeline-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.about-timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.about-circle {
  width: 20px;
  height: 20px;
  background: #22c55e;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  z-index: 1;
}

.impact-section {
  padding: 100px 20px;
  background: url('../images/stats2.jpeg') center/cover no-repeat;
  position: relative;
  text-align: center;
}

.impact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.impact-content {
  position: relative;
  color: #fff;
  max-width: 700px;
  margin: auto;
}

.impact-content h2 {
  font-size: 36px;
  font-weight: 700;
}

.impact-content p {
  margin-top: 15px;
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 768px) {
  .story-container,
  .mv-container,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-content h1 {
    font-size: 32px;
  }

  .about-timeline::before {
    left: 20px;
  }

  .about-circle {
    left: 20px;
  }

  .about-timeline-item,
  .about-timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
  }

  .about-timeline-content {
    width: 100%;
  }
}

/* ============================================
   OUR-WORK.CSS — Emfound Our Work Page
   Brand: green #166534 / #22c55e
          yellow #eab308 / #facc15
          dark   #111 / #0f172a
   ============================================ */


/* ── Shared eyebrow label ── */
.ow-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #eab308;
  margin-bottom: 12px;
}

.ow-eyebrow.light {
  color: #facc15;
}

/* ── Shared container ── */
.ow-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shared section wrapper ── */
.ow-section {
  padding: 90px 0;
  background: #f8faf9;
}

/* ── Shared section header ── */
.ow-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.ow-section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.2;
}

.ow-section-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.ow-section-header.light h2 {
  color: #fff;
}

.ow-section-header.light p {
  color: rgba(255,255,255,0.82);
}


/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.ow-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, #0a2e18 0%, #166534 55%, #14532d 100%);
}

.ow-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(234,179,8,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 40%, rgba(34,197,94,0.09) 0%, transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 60%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.ow-hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ow-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.ow-shape-1 {
  width: 500px;
  height: 500px;
  background: #22c55e;
  top: -140px;
  right: -100px;
  animation: owFloat 9s ease-in-out infinite;
}

.ow-shape-2 {
  width: 260px;
  height: 260px;
  background: #eab308;
  bottom: -70px;
  left: -50px;
  animation: owFloat 12s ease-in-out infinite reverse;
}

@keyframes owFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(16px, -16px) scale(1.05); }
}

.ow-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 680px;
  padding: 0 24px;
}

.ow-hero-content h1 {
  font-size: clamp(40px, 8vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.ow-hero-content p {
  font-size: clamp(15px, 2.4vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

/* Quick-jump pills */
.ow-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.ow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.ow-pill .material-icons {
  font-size: 17px;
}

.ow-pill:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}


/* ════════════════════════════════════════════
   IMPACT STRIP
════════════════════════════════════════════ */
.ow-impact-strip {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.ow-impact-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.ow-impact-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 120px;
}

.ow-impact-stat .material-icons {
  font-size: 26px;
  color: #166534;
  margin-bottom: 2px;
}

.ow-impact-stat strong {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  line-height: 1;
}

.ow-impact-stat span:last-child {
  font-size: 12px;
  color: #888;
  text-align: center;
}

.ow-strip-divider {
  width: 1px;
  height: 48px;
  background: #e5e7eb;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .ow-impact-strip-inner { justify-content: center; }
  .ow-strip-divider { display: none; }
  .ow-impact-stat { width: 45%; flex: none; }
}


/* ════════════════════════════════════════════
   PAST EVENTS
════════════════════════════════════════════ */
.past-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.past-event-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.past-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.11);
}

/* Flyer image area */
.past-event-flyer {
  position: relative;
  overflow: hidden;
  height: 240px;
  flex-shrink: 0;
}

.past-event-flyer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.past-event-card:hover .past-event-flyer img {
  transform: scale(1.06);
}

/* Completed badge on flyer */
.past-event-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.past-event-badge.completed {
  background: #166534;
  color: #fff;
}

.past-event-badge .material-icons {
  font-size: 14px;
}

/* Info body */
.past-event-info {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.past-event-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

/* Category tag chips */
.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-tag .material-icons { font-size: 13px; }

.hospital-tag  { background: rgba(220,38,38,0.10); color: #dc2626; }
.school-tag    { background: rgba(22,101,52,0.10);  color: #166534; }
.outreach-tag  { background: rgba(234,179,8,0.12);  color: #92640c; }

.meta-location {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: #888;
  margin-left: auto;
}

.meta-location .material-icons { font-size: 14px; color: #dc2626; }

.past-event-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.3;
}

.past-event-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

/* Highlights */
.past-event-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #f3f4f6;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #444;
  font-weight: 500;
}

.highlight-item .material-icons {
  font-size: 17px;
  color: #166534;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .past-events-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 560px) {
  .past-events-grid { max-width: 100%; }
  .past-event-flyer { height: 200px; }
}


/* ════════════════════════════════════════════
   ONGOING PROGRAMS — REGION BLOCKS
════════════════════════════════════════════ */
.ow-ongoing-section {
  padding: 90px 0;
  background: linear-gradient(160deg, #0a2e18 0%, #166534 60%, #1a5c36 100%);
}

.region-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 36px;
  margin-bottom: 40px;
  backdrop-filter: blur(6px);
  transition: background 0.3s;
}

.region-block:last-child { margin-bottom: 0; }

.region-block:hover {
  background: rgba(255,255,255,0.10);
}

/* Region label pill */
.region-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eab308;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.region-label .material-icons {
  font-size: 16px;
  color: #7a4f00;
}

/* Two-column layout inside region */
.region-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: center;
}

/* Alt layout — details left, flyer right */
.region-block-alt .region-inner {
  grid-template-columns: 1.2fr 1fr;
}

/* Flyer image */
.region-flyer-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.region-flyer-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.region-block:hover .region-flyer-frame img {
  transform: scale(1.04);
}

/* "Active Now" ribbon on flyer */
.region-flyer-ribbon {
  position: absolute;
  top: 16px;
  left: 0;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px 6px 12px;
  border-radius: 0 20px 20px 0;
  box-shadow: 0 4px 12px rgba(34,197,94,0.4);
}

/* Details text side */
.region-details h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.region-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 22px;
}

/* Tags */
.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.rtag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
}

.rtag .material-icons { font-size: 15px; color: #facc15; }

/* Stats row */
.region-stats {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  background: rgba(0,0,0,0.2);
  border-radius: 14px;
  overflow: hidden;
}

.rstat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 10px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.rstat:last-child { border-right: none; }

.rstat strong {
  font-size: 22px;
  font-weight: 800;
  color: #facc15;
  line-height: 1;
  margin-bottom: 4px;
}

.rstat span {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  text-align: center;
}

/* CTA button group */
.region-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.region-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  white-space: nowrap;
}

.region-btn .material-icons { font-size: 18px; }

.region-btn:hover {
  transform: translateY(-3px);
}

/* Donate — yellow */
.donate-btn {
  background: #eab308;
  color: #111;
  box-shadow: 0 4px 16px rgba(234,179,8,0.35);
}

.donate-btn:hover {
  background: #fbbf24;
  box-shadow: 0 8px 24px rgba(234,179,8,0.45);
}

/* Partner — white */
.partner-btn {
  background: #fff;
  color: #166534;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.partner-btn:hover {
  background: #f0fdf4;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

/* Volunteer — outline */
.volunteer-btn {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.volunteer-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

/* Responsive region blocks */
@media (max-width: 860px) {
  .region-inner,
  .region-block-alt .region-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* On alt blocks, push flyer to top on mobile */
  .region-block-alt .region-details {
    order: 2;
  }
  .region-block-alt .region-flyer {
    order: 1;
  }

  .region-flyer-frame img { height: 280px; }

  .region-block { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .region-cta-group { flex-direction: column; }
  .region-btn { justify-content: center; }
  .region-flyer-frame img { height: 220px; }
}


/* ════════════════════════════════════════════
   UPCOMING EVENTS — TREE STRUCTURE
════════════════════════════════════════════ */
.ow-upcoming-section {
  padding: 90px 0;
  background: #f8faf9;
}

/* Tree wrapper */
.upcoming-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}

/* ── ROOT NODE ── */
.tree-root {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 2px solid #166534;
  border-radius: 16px;
  padding: 16px 28px;
  box-shadow: 0 6px 24px rgba(22,101,52,0.12);
  width: 100%;
  max-width: 420px;
}

.tree-root-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #166534, #22c55e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tree-root-icon .material-icons {
  font-size: 26px;
  color: #fff;
}

.tree-root-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tree-root-label strong {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.tree-root-label span {
  font-size: 12px;
  color: #888;
}

/* ── TRUNK LINE ── */
.tree-trunk {
  width: 3px;
  height: 50px;
  background: linear-gradient(to bottom, #166534, #22c55e);
  border-radius: 2px;
  flex-shrink: 0;
}

.tree-trunk.short {
  height: 30px;
}

/* ── BRANCHES ROW ── */
.tree-branches {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.tree-branch-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  justify-content: center;
}

/* Horizontal connector arm */
.branch-connector {
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, #22c55e, #166534);
  margin-top: 38px;
  flex-shrink: 0;
  border-radius: 2px;
}

/* ── EVENT NODE CARD ── */
.tree-event-node {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 28px;
  flex: 1;
  max-width: 640px;
  transition: box-shadow 0.3s;
}

.tree-event-node:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* Planning badge */
.planning-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(234,179,8,0.12);
  border: 1.5px solid rgba(234,179,8,0.4);
  color: #92640c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.planning-badge .material-icons { font-size: 15px; }

/* Month pill */
.tree-month-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #166534;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.tree-month-pill .material-icons { font-size: 16px; color: #facc15; }

.tree-event-node h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 22px;
  line-height: 1.2;
}

/* Detail rows */
.tree-event-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.tree-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #f8faf9;
  border-radius: 14px;
  border-left: 4px solid transparent;
  transition: background 0.2s;
}

.tree-detail-row:hover { background: #f0fdf4; }

/* Left icon bubble */
.tree-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tree-detail-icon .material-icons { font-size: 20px; color: #fff; }

.theme-icon   { background: linear-gradient(135deg, #eab308, #fbbf24); border-left-color: #eab308; }
.purpose-icon { background: linear-gradient(135deg, #166534, #22c55e); border-left-color: #166534; }
.status-icon  { background: linear-gradient(135deg, #0f172a, #334155); border-left-color: #0f172a; }

/* Adjust border on the row itself */
.tree-detail-row:nth-child(1) { border-left-color: #eab308; }
.tree-detail-row:nth-child(2) { border-left-color: #166534; }
.tree-detail-row:nth-child(3) { border-left-color: #0f172a; }

.tree-detail-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.tree-detail-body strong {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tree-detail-body span {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Notify me button */
.tree-notify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #166534, #22c55e);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(22,101,52,0.3);
  transition: transform 0.22s, box-shadow 0.22s;
}

.tree-notify-btn .material-icons { font-size: 19px; color: #facc15; }

.tree-notify-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(22,101,52,0.4);
}

/* ── MORE TO COME NODE ── */
.tree-more-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.tree-more-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px dashed #22c55e;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.tree-more-badge .material-icons {
  font-size: 20px;
  color: #22c55e;
}

/* Responsive tree */
@media (max-width: 600px) {
  .branch-connector { display: none; }

  .tree-branch-item {
    justify-content: flex-start;
    padding: 0 8px;
  }

  .tree-event-node {
    padding: 20px 16px;
    max-width: 100%;
  }

  .tree-root {
    max-width: 100%;
    padding: 14px 18px;
  }

  .tree-detail-row { padding: 12px; }

  .tree-more-badge {
    font-size: 12px;
    padding: 10px 16px;
    text-align: center;
  }
}

/* ============================================
   GALLERY.CSS — Emfound Gallery Page
   Follows brand: green #166534, yellow #eab308,
   dark #111. Consistent with style.css patterns.
   ============================================ */

/* ── SHARED LABEL STYLE (reused across sections) ── */
.gallery-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #eab308;
  margin-bottom: 12px;
}

.gallery-label.light {
  color: #facc15;
}

/* ════════════════════════════════════════════
   HERO BANNER
════════════════════════════════════════════ */
.gallery-hero {
  position: relative;
  height: 80vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* Deep green-to-black gradient as base —
     images are added via the grid below */
  background: linear-gradient(135deg, #0a2e18 0%, #166534 50%, #1a4a2a 100%);
  padding-top: 80px; /* offset fixed navbar */
}

/* Layered gradient overlay for depth */
.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(234,179,8,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(34,197,94,0.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

/* Decorative floating blobs */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.08;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: #22c55e;
  top: -100px;
  right: -100px;
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: #eab308;
  bottom: -60px;
  left: -60px;
  animation: floatShape 10s ease-in-out infinite reverse;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -20px) scale(1.05); }
}

/* Hero content */
.gallery-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 0 24px;
}

.gallery-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  /* Subtle text shadow for depth */
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.gallery-hero-content p {
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* Animated scroll hint arrow */
.scroll-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  margin-top: 8px;
  animation: bounceDown 2s ease-in-out infinite;
}

.scroll-hint .material-icons {
  font-size: 24px;
  color: rgba(255,255,255,0.8);
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%       { transform: translateY(8px); opacity: 1; }
}


/* ════════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════════ */
.gallery-stats-strip {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.stats-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.strip-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 120px;
}

.strip-icon {
  font-size: 28px;
  color: #166534;
  margin-bottom: 4px;
}

.strip-stat strong {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  line-height: 1;
}

.strip-stat span:last-child {
  font-size: 13px;
  color: #777;
  text-align: center;
}

.strip-divider {
  width: 1px;
  height: 50px;
  background: #e5e7eb;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats-strip-inner {
    justify-content: center;
  }

  .strip-divider {
    display: none;
  }

  .strip-stat {
    width: 45%;
    flex: none;
  }
}


/* ════════════════════════════════════════════
   GALLERY SECTION WRAPPER
════════════════════════════════════════════ */
.gallery-section {
  padding: 80px 20px 60px;
  background: #f8faf9;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section header */
.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.gallery-subtext {
  font-size: 16px;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid #e5e7eb;
  background: #fff;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn .material-icons {
  font-size: 18px;
}

.filter-btn:hover {
  border-color: #166534;
  color: #166534;
  background: rgba(22,101,52,0.05);
}

.filter-btn.active {
  background: #166534;
  border-color: #166534;
  color: #fff;
  box-shadow: 0 4px 14px rgba(22,101,52,0.3);
}

.filter-btn.active .material-icons {
  color: #fff;
}


/* ── MASONRY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

/* Tall card spans 2 rows */
.gallery-item.tall {
  grid-row: span 2;
}

/* Wide card spans 2 columns */
.gallery-item.wide {
  grid-column: span 2;
}

/* ── GALLERY ITEM ── */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  background: #1a1a1a;
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: brightness(0.92);
}

/* Hover — lift + zoom + brighten */
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.6);
}

/* Filter-out animation */
.gallery-item.hidden-item {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

/* ── OVERLAY (shown on hover) ── */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.4) 50%,
    transparent 100%
  );
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Category tag chip */
.overlay-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #eab308;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: fit-content;
}

.overlay-tag .material-icons {
  font-size: 14px;
}

.gallery-item-overlay h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.gallery-item-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.overlay-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

.overlay-meta .material-icons {
  font-size: 14px;
  color: #eab308;
}

/* ── NO RESULTS ── */
.no-results {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 20px;
  color: #999;
  font-size: 16px;
}

.no-results .material-icons {
  font-size: 56px;
  color: #ccc;
}

/* ── RESPONSIVE GRID ── */

/* 2-col tablet */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  /* Reset all span overrides */
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Re-apply tall to first item only for visual interest */
  .gallery-item:first-child {
    grid-row: span 2;
  }
}

/* 1-col mobile */
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Always show overlay on mobile (no hover) */
  .gallery-item-overlay {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.2) 60%,
      transparent 100%
    );
  }

  /* Hide the description on small screens to save space */
  .gallery-item-overlay p {
    display: none;
  }

  .filter-btn {
    font-size: 13px;
    padding: 8px 14px;
  }
}


/* ════════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════════ */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 901;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-content img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lightbox-caption strong {
  font-size: 18px;
  font-weight: 700;
}

.lightbox-caption span {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

/* Close button */
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 902;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
  transform: rotate(90deg);
}

/* Prev / Next navigation */
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 902;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }

.lightbox-nav .material-icons {
  font-size: 28px;
}


/* ════════════════════════════════════════════
   QUOTE SECTION
════════════════════════════════════════════ */
.gallery-quote-section {
  background: linear-gradient(135deg, #0f172a 0%, #166534 100%);
  padding: 80px 24px;
}

.quote-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  font-size: 52px;
  color: #eab308;
  margin-bottom: 20px;
  display: block;
  opacity: 0.9;
}

blockquote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
  margin-bottom: 24px;
}

cite {
  font-size: 14px;
  color: #eab308;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: normal;
}


/* ════════════════════════════════════════════
   SPOTLIGHT SECTION
════════════════════════════════════════════ */
.spotlight-section {
  background: #f8faf9;
  padding: 100px 24px;
}

.spotlight-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.spotlight-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.25;
}

.spotlight-text p {
  color: #555;
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 14px;
}

/* Fact list */
.spotlight-facts {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.fact-item .material-icons {
  font-size: 20px;
  color: #166534;
  flex-shrink: 0;
}

/* Stacked card visual */
.spotlight-card-stack {
  position: relative;
  height: 400px;
}

.stack-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Back card — slightly rotated and offset */
.stack-back {
  width: 78%;
  height: 340px;
  bottom: 0;
  right: 0;
  transform: rotate(4deg);
  opacity: 0.7;
}

/* Front card — main visible card */
.stack-front {
  width: 80%;
  height: 360px;
  bottom: 20px;
  left: 0;
  transition: transform 0.4s ease;
}

.stack-front:hover {
  transform: rotate(-1deg) scale(1.02);
}

/* Impact badge on front card */
.stack-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #eab308;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(234,179,8,0.4);
}

.stack-badge .material-icons {
  font-size: 18px;
}

@media (max-width: 800px) {
  .spotlight-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .spotlight-card-stack {
    height: 320px;
  }

  .stack-back  { height: 280px; }
  .stack-front { height: 300px; }
}


/* ════════════════════════════════════════════
   DONATE & PARTNER CTA SECTION
════════════════════════════════════════════ */
.gallery-cta-section {
  background: linear-gradient(135deg, #0a2e18 0%, #166534 60%, #1f7a45 100%);
  padding: 90px 24px;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative ring */
.gallery-cta-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.05);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.gallery-cta-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.04);
  bottom: -150px;
  left: -100px;
  pointer-events: none;
}

.gallery-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Text side */
.gallery-cta-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.gallery-cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 500px;
}

/* Button group */
.gallery-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

/* Base CTA button */
.gallery-cta-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border-radius: 16px;
  text-decoration: none;
  min-width: 260px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.gallery-cta-btn .material-icons {
  font-size: 30px;
  flex-shrink: 0;
}

.gallery-cta-btn span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gallery-cta-btn strong {
  font-size: 16px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.gallery-cta-btn small {
  font-size: 12px;
  opacity: 0.8;
  font-weight: 400;
}

/* Donate button — yellow */
.gallery-cta-btn.donate {
  background: #eab308;
  color: #111;
  box-shadow: 0 8px 28px rgba(234,179,8,0.35);
}

.gallery-cta-btn.donate:hover {
  background: #fbbf24;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(234,179,8,0.45);
}

.gallery-cta-btn.donate .material-icons {
  color: #7a4f00;
}

/* Partner button — white outline */
.gallery-cta-btn.partner {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.gallery-cta-btn.partner:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.gallery-cta-btn.partner .material-icons {
  color: #86efac;
}

/* Responsive — stack vertically on mobile */
@media (max-width: 820px) {
  .gallery-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .gallery-cta-text p {
    margin: 0 auto;
  }

  .gallery-cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-cta-btn {
    min-width: 220px;
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .gallery-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gallery-cta-btn {
    width: 100%;
    max-width: 320px;
  }

  .gallery-cta-section {
    padding: 70px 20px;
  }
}

/* ============================================
   CONTACT.CSS — Emfound Contact Page
   Brand: green #166534 / #22c55e
          yellow #eab308 / #facc15
          dark   #111 / #0f172a
   ============================================ */

/* ── Shared eyebrow label ── */
.contact-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #eab308;
  margin-bottom: 12px;
}


/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.contact-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px; /* fixed navbar offset */
  background: linear-gradient(135deg, #0a2e18 0%, #166534 55%, #14532d 100%);
}

/* Multi-layer gradient overlay for depth */
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(234,179,8,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 40%, rgba(34,197,94,0.09) 0%, transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 60%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}

/* Decorative floating geometric shapes */
.contact-hero-shapes { position: absolute; inset: 0; z-index: 0; }

.c-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.c-shape-1 {
  width: 520px;
  height: 520px;
  background: #22c55e;
  top: -160px;
  right: -120px;
  animation: cFloat 9s ease-in-out infinite;
}

.c-shape-2 {
  width: 280px;
  height: 280px;
  background: #eab308;
  bottom: -80px;
  left: -60px;
  animation: cFloat 12s ease-in-out infinite reverse;
}

.c-shape-3 {
  width: 160px;
  height: 160px;
  background: #fff;
  top: 40%;
  left: 15%;
  animation: cFloat 7s ease-in-out infinite 2s;
}

@keyframes cFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(18px, -18px) scale(1.06); }
}

/* Hero text */
.contact-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 640px;
  padding: 0 24px;
}

.contact-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(44px, 9vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.contact-hero-content p {
  font-size: clamp(15px, 2.4vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto;
}


/* ════════════════════════════════════════════
   INTRO STRIP
════════════════════════════════════════════ */
.contact-intro-strip {
  background: #166534;
  padding: 22px 24px;
}

.intro-strip-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.intro-strip-icon {
  font-size: 28px;
  color: #facc15;
  flex-shrink: 0;
}

.intro-strip-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.90);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .intro-strip-inner {
    flex-direction: column;
    text-align: center;
  }
}


/* ════════════════════════════════════════════
   MAIN CONTACT SECTION (cards + map)
════════════════════════════════════════════ */
.contact-main-section {
  padding: 90px 24px;
  background: #f8faf9;
}

.contact-main-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

/* ── Left column header ── */
.contact-section-label {
  margin-bottom: 32px;
}

.contact-section-label h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.25;
}

.contact-section-label p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  max-width: 420px;
}

/* ── Contact Cards ── */
.contact-cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  text-decoration: none;
  cursor: default;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.10);
  border-color: #d1fae5;
}

/* Icon bubble */
.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon .material-icons {
  font-size: 26px;
}

.email-icon    { background: rgba(22,101,52,0.1);  }
.email-icon    .material-icons { color: #166534; }

.phone-icon    { background: rgba(234,179,8,0.12); }
.phone-icon    .material-icons { color: #92640c; }

.location-icon { background: rgba(239,68,68,0.10); }
.location-icon .material-icons { color: #dc2626; }

.social-icon   { background: rgba(99,102,241,0.10); }
.social-icon   .material-icons { color: #4f46e5; }

/* Card text */
.contact-card-body {
  flex: 1;
  min-width: 0;
}

.contact-card-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
}

.contact-card-body p {
  font-size: 12px;
  color: #999;
  margin-bottom: 6px;
  line-height: 1.4;
}

.contact-card-body a {
  font-size: 14px;
  font-weight: 600;
  color: #166534;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card-body a:hover {
  color: #14532d;
  text-decoration: underline;
}

/* Arrow icon on right */
.contact-card-arrow {
  font-size: 20px;
  color: #ccc;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}

.contact-card:hover .contact-card-arrow {
  color: #166534;
  transform: translateX(4px);
}

/* Social card special layout */
.social-card {
  align-items: flex-start;
}

.social-card .contact-card-icon {
  margin-top: 4px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  background: #f3f4f6;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-pill .material-icons {
  font-size: 15px;
}

.social-pill:hover {
  background: #166534;
  color: #fff;
}


/* ── Map column ── */
.contact-map-col {
  position: sticky;
  top: 100px; /* stays visible while scrolling cards */
}

.map-wrapper {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  border: 1px solid #e5e7eb;
}

.map-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: #166534;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.map-header .material-icons {
  font-size: 20px;
  color: #facc15;
}

.map-frame {
  height: 420px;
  width: 100%;
  position: relative;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.map-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #f9fafb;
  border-top: 1px solid #f0f0f0;
  font-size: 12px;
  color: #888;
}

.map-footer .material-icons {
  font-size: 16px;
  color: #166534;
  flex-shrink: 0;
}

/* Responsive — stack on tablet and below */
@media (max-width: 900px) {
  .contact-main-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map-col {
    position: static;
  }

  .map-frame {
    height: 340px;
  }
}


/* ════════════════════════════════════════════
   WAYS TO CONNECT
════════════════════════════════════════════ */
.ways-section {
  padding: 90px 24px;
  background: #fff;
}

.ways-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ways-header {
  text-align: center;
  margin-bottom: 50px;
}

.ways-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.ways-header p {
  font-size: 16px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Way card */
.way-card {
  background: #f8faf9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.way-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.09);
}

/* Coloured top strip with icon */
.way-card-top {
  padding: 28px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.way-card-top .material-icons {
  font-size: 40px;
  color: #fff;
}

.way-card-top.yellow  { background: linear-gradient(135deg, #947600, #eab308); }
.way-card-top.green   { background: linear-gradient(135deg, #166534, #22c55e); }
.way-card-top.dark    { background: linear-gradient(135deg, #0f172a, #1e3a5f); }
.way-card-top.teal    { background: linear-gradient(135deg, #0f8565, #10b981); }

.way-card-body {
  padding: 20px 20px 24px;
}

.way-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.way-card-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.way-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #166534;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.way-link .material-icons {
  font-size: 16px;
  transition: transform 0.2s;
}

.way-link:hover {
  color: #14532d;
}

.way-link:hover .material-icons {
  transform: translateX(4px);
}

@media (max-width: 860px) {
  .ways-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ways-grid {
    grid-template-columns: 1fr;
  }
}


/* ════════════════════════════════════════════
   RESPONSE PROMISE BANNER
════════════════════════════════════════════ */
.promise-section {
  background: linear-gradient(135deg, #0f172a 0%, #166534 100%);
  padding: 60px 24px;
}

.promise-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

/* Clock icon bubble */
.promise-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(234,179,8,0.15);
  border: 2px solid rgba(234,179,8,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promise-icon-wrap .material-icons {
  font-size: 34px;
  color: #eab308;
}

/* Promise text */
.promise-text {
  flex: 1;
  min-width: 200px;
}

.promise-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.promise-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
}

.promise-text strong {
  color: #facc15;
}

/* Badge group */
.promise-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.promise-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  white-space: nowrap;
}

.promise-badge .material-icons {
  font-size: 18px;
  color: #4ade80;
}

@media (max-width: 700px) {
  .promise-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 24px;
  }

  .promise-meta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}