/* ── WOMEN EMPOWERMENT PAGE SPECIFIC STYLES ── */

:root {
  --navy: #003366;
  --navy-deep: #0f2a4a;
  --teal: #1a7a6e;
  --gold: #c8a84b;
  --green: #4caf50;
  --light-green: #e8f5e9;
  --tan: #fdf5e6;
  --white: #ffffff;
  --text: #2c3e35;
  --muted: #6b7c75;
  --bg-gray: #f9fbfb;
  --border: #eef2f5;
}

/* ── HERO ────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.hero-text {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  display: inline-block;
  background: #8bc34a;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  align-self: flex-start;
}

.hero-title {
  font-family: 'Merriweather', serif;
  font-size: 3.8rem;
  font-weight: 950;
  color: var(--navy-deep);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.35rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.hero-img {
  height: 100%;
  min-height: 400px;
  background: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?w=800&q=80') center/cover no-repeat;
}

/* ── STATS ROW ───────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 60px 80px;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 0 20px;
}

.stat-val {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy-deep);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ── STORY CONTENT ──────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.story-text {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 40px;
}

.story-text::first-letter {
  float: left;
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.8;
  padding-right: 15px;
  color: #999;
}

/* Objectives Box */
.objectives-box {
  background: var(--bg-gray);
  padding: 50px;
  border-radius: 4px;
  border-left: 5px solid var(--navy-deep);
  margin-bottom: 40px;
}

.objectives-box h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy-deep);
  margin-bottom: 30px;
}

.obj-list {
  list-style: none;
}

.obj-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
}

.obj-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--green);
  stroke-width: 3;
}

/* Info Cards */
.info-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card {
  padding: 30px;
  border-radius: 4px;
}

.ic-green {
  background: var(--light-green);
}

.ic-tan {
  background: var(--tan);
}

.ic-icon {
  margin-bottom: 20px;
  color: #2c3e35;
}

.info-card h4 {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--navy-deep);
}

.info-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}

/* Sidebar */
.media-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-img-box {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.sidebar-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.support-box {
  background: var(--navy-deep);
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
}

.support-box h4 {
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.support-box p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.btn-download {
  display: inline-block;
  width: 100%;
  background: #fff;
  color: var(--navy-deep);
  border: none;
  padding: 15px 0;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s;
}

.btn-download:hover {
  background: #f0f0f0;
}

/* ── REGIONAL METRICS ───────────────────────── */
.metrics-sec {
  background: var(--bg-gray);
  padding: 100px 80px;
}

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

.metrics-sec h2 {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy-deep);
  margin-bottom: 60px;
}

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

.metric-card {
  background: #fff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.metric-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
  display: block;
}

.label-blue {
  color: #1565c0;
}

.label-green {
  color: #2e7d32;
}

.label-brown {
  color: #795548;
}

.m-bar-wrap {
  height: 6px;
  background: #f0f0f0;
  border-radius: 3px;
  margin-bottom: 25px;
  overflow: hidden;
}

.m-bar-fill {
  height: 100%;
  border-radius: 3px;
}

.bg-blue {
  background: #1565c0;
}

.bg-green {
  background: #2e7d32;
}

.bg-brown {
  background: #795548;
}

.metric-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FOOTER WOMEN EMPOWERMENT ────────────────── */
footer {
  padding: 80px 80px 40px;
  background: #f8fafd;
  border-top: 1px solid #eef2f5;
  color: #333;
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.fb-logo {
  font-family: 'Merriweather', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy-deep);
  margin-bottom: 24px;
}

.fb-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 450px;
}

.fb-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.fb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003152;
  text-decoration: none;
  transition: opacity 0.2s;
}

.fb-icon:hover {
  opacity: 0.7;
}

.fb-icon svg {
  width: 20px;
  height: 20px;
  stroke: #003152;
  fill: none;
  stroke-width: 2;
}

.fc h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.fc a {
  display: block;
  text-decoration: none;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 12px;
  font-weight: 500;
  transition: color 0.2s;
}

.fc a:hover {
  color: var(--navy-deep);
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 40px;
  font-size: 0.85rem;
  color: #777;
}

.footer-btm-links {
  display: flex;
  gap: 20px;
}

.footer-btm-links a {
  text-decoration: none;
  color: #777;
  transition: color 0.2s;
}

.footer-btm-links a:hover {
  color: var(--navy-deep);
}

/* ── RESPONSIVE WOMEN EMPOWERMENT ─────────────── */
@media (max-width: 1024px) {
  .hero-text {
    padding: 80px 40px;
  }
}

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

  .hero-text {
    padding: 80px 40px;
  }

  .hero-img {
    height: 300px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 60px 40px;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .hero-text,
  .stats-row,
  .story-grid,
  .metrics-sec,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .info-cards-row {
    grid-template-columns: 1fr;
  }

  .ft-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ft-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}