/* ============================================================
   ORONGO MISSIONS INTERNATIONAL — REDESIGN CSS
   Modern, Professional, Responsive NGO Design
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:     #1b4d3e;   /* deep forest green */
  --primary-dark:#133628;
  --primary-light:#2e7d5f;
  --accent:      #d97706;   /* warm amber */
  --accent-light:#f59e0b;
  --accent-dark: #b45309;
  --text-dark:   #1a1a2e;
  --text-body:   #4a5568;
  --text-muted:  #718096;
  --bg-white:    #ffffff;
  --bg-light:    #f7f9fc;
  --bg-section:  #eef4f1;
  --border:      #e2e8f0;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.14);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font:        'Poppins', sans-serif;
  /* Boxed layout */
  --box-width:   1320px;
  --outer-bg:    #0f1c17;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--outer-bg);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(27,77,62,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(217,119,6,0.10) 0%, transparent 55%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
  background-attachment: fixed;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ====== BOXED WRAPPER ====== */
.site-wrapper {
  max-width: var(--box-width);
  margin: 0 auto;
  background: var(--bg-white);
  box-shadow: 0 0 80px rgba(0,0,0,0.55);
  position: relative;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

/* ---------- Utility ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.badge-label {
  display: inline-block;
  background: rgba(27,77,62,0.10);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title { margin-bottom: 50px; }
.section-title h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 14px; }
.section-title p  { color: var(--text-muted); max-width: 580px; font-size: 1.05rem; }
.section-title.centered { text-align: center; }
.section-title.centered p { margin: 0 auto; }

.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  border-radius: 2px;
  margin-bottom: 18px;
}
.centered .divider { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn-primary-omi,
.btn-outline-omi,
.btn-accent-omi {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary-omi {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary-omi:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27,77,62,.3);
}

.btn-outline-omi {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-omi:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn-accent-omi {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent-omi:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217,119,6,.35);
}

/* ---------- NAVBAR ---------- */
.omi-navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.omi-navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo img {
  height: 52px;
  width: auto;
}

.navbar-logo .brand-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  max-width: 180px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--primary);
  background: rgba(27,77,62,.07);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-cta .btn-donate {
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.navbar-cta .btn-donate:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217,119,6,.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: sticky;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active { background: var(--bg-section); color: var(--primary); }
.mobile-nav .btn-donate-mobile {
  display: block;
  margin-top: 12px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 13px;
  border-radius: 50px;
  font-weight: 700;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 520px;
  height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,40,29,0.82) 0%,
    rgba(27,77,62,0.65) 50%,
    rgba(0,0,0,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  animation: heroFadeUp 1s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content .badge-label {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1.18;
  margin-bottom: 20px;
}

.hero-content h1 span { color: var(--accent-light); }

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-indicators {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-indicators span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-indicators span.active {
  background: var(--accent-light);
  width: 28px;
  border-radius: 5px;
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--primary);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.stat-item:last-child { border-right: none; }

.stat-item .stat-number {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  display: block;
}

.stat-item .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  display: block;
}

/* ---------- ABOUT SECTION ---------- */
.about-section { background: var(--bg-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 450px;
}

.about-image-stack img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.about-image-stack .img-main {
  width: 75%;
  height: 380px;
  top: 0;
  left: 0;
  box-shadow: var(--shadow-lg);
}

.about-image-stack .img-accent {
  width: 55%;
  height: 250px;
  bottom: 0;
  right: 0;
  border: 5px solid var(--bg-white);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: 50px;
  left: -20px;
  background: var(--accent);
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-badge strong { display: block; font-size: 1.6rem; line-height: 1.1; }

/* ---------- MISSION / VISION / VALUES ---------- */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.mvv-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transition: var(--transition);
}

.mvv-card:nth-child(2)::before { background: var(--accent); }
.mvv-card:nth-child(3)::before { background: var(--primary-light); }

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.mvv-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.mvv-card h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--primary); }
.mvv-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ---------- PROGRAMS SECTION ---------- */
.programs-section { background: var(--bg-section); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.program-card .card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.program-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .card-image img { transform: scale(1.05); }

.program-card .card-image .card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.program-card .card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.program-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.program-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition);
}

.program-card .card-link:hover { gap: 12px; color: var(--accent); }

/* ---------- IMPACT / CTA SECTION ---------- */
.impact-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.impact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.impact-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.impact-cta h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.impact-cta p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
}

.impact-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- BLOG / NEWS ---------- */
.blog-section { background: var(--bg-white); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.blog-card .card-image {
  height: 190px;
  overflow: hidden;
}

.blog-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .card-image img { transform: scale(1.06); }

.blog-card .card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.blog-card h3 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
}

.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.blog-card .read-more:hover { color: var(--accent); gap: 10px; }

/* ---------- GALLERY SECTION ---------- */
.gallery-section { background: var(--bg-section); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,77,62,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .overlay { opacity: 1; }

.gallery-item .overlay i {
  font-size: 2rem;
  color: #fff;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.8;
  transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; transform: scale(1.1); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  background: rgba(255,255,255,.1);
  border: none;
  padding: 12px 18px;
  border-radius: 50%;
  transition: var(--transition);
  opacity: 0.8;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.2); opacity: 1; }

/* ---------- DONATE PAGE ---------- */
.donate-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  padding: 120px 0 80px;
  text-align: center;
  color: #fff;
}

.donate-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.donate-hero p  { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 560px; margin: 16px auto 0; }

.donate-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.donate-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.donate-card h2 { font-size: 1.35rem; margin-bottom: 24px; color: var(--primary); }

.bank-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.bank-detail:last-child { border-bottom: none; }
.bank-detail .label { color: var(--text-muted); font-weight: 500; }
.bank-detail .value { font-weight: 700; color: var(--text-dark); }

.sponsor-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.sponsor-option {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.sponsor-option:hover,
.sponsor-option.selected {
  border-color: var(--primary);
  background: rgba(27,77,62,.04);
}

.sponsor-option .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.sponsor-option .desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.contact-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(27,77,62,.08);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-info-card .icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: rgba(27,77,62,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-info-card h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 600;
  word-break: break-all;
}

/* ---------- PAGE HEADER (Breadcrumb) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--bg-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-header h1 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
}

.breadcrumb-omi {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
}

.breadcrumb-omi a { color: rgba(255,255,255,.85); font-weight: 600; }
.breadcrumb-omi a:hover { color: var(--accent-light); }
.breadcrumb-omi .sep { opacity: 0.5; }
.breadcrumb-omi .current { color: var(--accent-light); }

/* ---------- TEAM SECTION ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  background: var(--bg-white);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-card .team-info { padding: 22px 20px; }
.team-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.82rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- FOOTER ---------- */
.omi-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img { height: 60px; margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover { color: var(--accent-light); }

.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
}

.footer-col .contact-item i {
  color: var(--accent-light);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.83rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--accent-light); }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 36px;
  left: max(calc((100vw - var(--box-width)) / 2 + 20px), 20px);
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  z-index: 998;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 36px;
  right: max(calc((100vw - var(--box-width)) / 2 + 20px), 20px);
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 998;
  border: none;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ---------- ABOUT PAGE DETAIL ---------- */
.about-detail-text { font-size: 0.97rem; line-height: 1.9; color: var(--text-body); }
.about-detail-text p { margin-bottom: 20px; }

/* ---------- ANIMATIONS / AOS-like ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- BLOG POST CONTENT ---------- */
.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}
.blog-post-content h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 20px; }
.blog-post-content img { width: 100%; border-radius: var(--radius); margin: 28px 0; }
.blog-post-content p { margin-bottom: 18px; font-size: 1rem; line-height: 1.85; }

/* ---------- RESPONSIVE ---------- */

/* Outer vertical breathing room on large screens */
@media (min-width: 1380px) {
  body { padding: 40px 0; }
  .site-wrapper { border-radius: 12px; overflow: hidden; }
  .omi-navbar { border-radius: 12px 12px 0 0; }
}

/* Box collapses to full width on smaller viewports */
@media (max-width: 1340px) {
  body { padding: 0; }
  .site-wrapper { box-shadow: none; }
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .stats-grid .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.12); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-stack { height: 320px; }
  .about-image-stack .img-main { width: 70%; height: 290px; }
  .about-image-stack .img-accent { width: 50%; height: 200px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-cta-inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 60px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-options { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.12); }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.8rem; }
  .team-grid { grid-template-columns: 1fr; }
}
