/* ============================================================
   FIRST BREATH COLLECTIVE — Main Stylesheet
   ============================================================ */

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

:root {
  --cream: #FDF0F6;
  --blush: #F2C4D8;
  --dusty-rose: #E8A0B4;
  --warm-terracotta: #C4607A;
  --deep: #1A2035;
  --muted-gold: #8FAFD4;
  --sage: #7B9EC2;
  --soft-white: #FDF7FA;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--soft-white);
  color: var(--deep);
  overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 1.4rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(253,247,250,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,96,122,0.15);
  transition: padding 0.4s;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--deep); text-decoration: none; opacity: 0.7; transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.6rem 1.6rem; border: 1.5px solid var(--warm-terracotta);
  color: var(--warm-terracotta); text-decoration: none;
  border-radius: 2px; transition: all 0.25s;
}
.nav-cta:hover { background: var(--warm-terracotta); color: white; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 80px; position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 4rem 6rem 6rem; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-gold); margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-eyebrow::before {
  content: ''; display: inline-block; width: 2.5rem; height: 1px;
  background: var(--muted-gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.05; color: var(--deep); margin-bottom: 2rem;
}
.hero-title em { font-style: italic; color: var(--warm-terracotta); }
.hero-sub {
  font-size: 1rem; line-height: 1.8; color: var(--deep); opacity: 0.65;
  max-width: 440px; margin-bottom: 3rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--warm-terracotta); color: white; text-decoration: none;
  padding: 0.9rem 2.2rem; font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 2px; transition: background 0.25s;
}
.btn-primary:hover { background: #a34d65; }
.btn-ghost {
  color: var(--deep); text-decoration: none; font-size: 0.8rem;
  letter-spacing: 0.08em; opacity: 0.6;
  display: flex; align-items: center; gap: 0.5rem; transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 1; }
.btn-ghost svg { width: 1rem; height: 1rem; }
.hero-right { position: relative; overflow: hidden; background: var(--cream); }
.hero-blob {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, var(--blush) 0%, var(--cream) 55%, #D8E8F5 100%);
}
.hero-circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(143,175,212,0.15); border: 1px solid rgba(143,175,212,0.35);
}
.hero-circle-2 {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(232,160,180,0.2); border: 1px solid rgba(232,160,180,0.45);
}
.hero-quote {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); text-align: center; width: 200px;
}
.hero-quote p {
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem;
  font-weight: 300; font-style: italic; line-height: 1.5; color: var(--warm-terracotta);
}
.hero-stat-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; border-top: 1px solid rgba(196,96,122,0.15);
}
.hero-stat {
  flex: 1; padding: 1.4rem 2rem;
  border-right: 1px solid rgba(196,96,122,0.15); text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  font-weight: 300; color: var(--warm-terracotta);
}
.hero-stat-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.5; margin-top: 0.2rem; }

/* ---- SECTION SHARED ---- */
section { padding: 7rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-gold); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.section-label::before { content: ''; width: 1.8rem; height: 1px; background: var(--muted-gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--warm-terracotta); }
.section-body { font-size: 0.95rem; line-height: 1.9; opacity: 0.65; font-weight: 300; }
.thin-divider { width: 3rem; height: 1px; background: var(--blush); margin: 2rem 0; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

/* ---- MISSION ---- */
.mission-section { background: var(--cream); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.value-card {
  padding: 1.4rem 1.6rem; background: white; border-radius: 4px;
  border-left: 3px solid var(--blush); transition: border-color 0.2s;
}
.value-card:hover { border-color: var(--warm-terracotta); }
.value-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  font-weight: 600; color: var(--warm-terracotta); margin-bottom: 0.3rem;
}
.value-desc { font-size: 0.82rem; line-height: 1.6; opacity: 0.6; font-weight: 300; }

/* ---- PROGRAMMES ---- */
.programmes-section { background: #1A2035; }
.programmes-section .section-label { color: var(--muted-gold); }
.programmes-section .section-label::before { background: var(--muted-gold); }
.programmes-section .section-title { color: var(--soft-white); }
.programmes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.programme-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 2.4rem 2rem; transition: background 0.3s, transform 0.3s;
}
.programme-card:hover { background: rgba(143,175,212,0.12); transform: translateY(-4px); }
.programme-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(196,96,122,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.2rem;
}
.programme-num { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-gold); margin-bottom: 0.8rem; }
.programme-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 400; color: white; line-height: 1.25; margin-bottom: 1rem;
}
.programme-desc { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.45); font-weight: 300; }
.programme-items { list-style: none; margin-top: 1.2rem; }
.programme-items li {
  font-size: 0.8rem; color: rgba(255,255,255,0.4); padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 0.5rem;
}
.programme-items li::before { content: '—'; color: var(--dusty-rose); font-size: 0.75rem; }

/* ---- IMPACT ---- */
.impact-section { background: var(--soft-white); }
.sdg-strip { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }
.sdg-pill {
  padding: 0.5rem 1.2rem; border: 1px solid var(--blush); border-radius: 50px;
  font-size: 0.75rem; letter-spacing: 0.06em; color: var(--warm-terracotta);
  background: rgba(196,96,122,0.06);
}
.impact-quote-block {
  margin-top: 4rem; padding: 3rem 3.5rem;
  background: var(--cream); border-radius: 6px; position: relative;
}
.impact-quote-block::before {
  content: '\201C'; font-family: 'Cormorant Garamond', serif;
  font-size: 7rem; color: var(--blush);
  position: absolute; top: -1.5rem; left: 2rem; line-height: 1;
}
.impact-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem;
  font-weight: 300; font-style: italic; line-height: 1.45;
  color: var(--deep); position: relative; z-index: 1; max-width: 700px;
}
.impact-attr { margin-top: 1.2rem; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.45; }

/* ---- TEAM ---- */
.team-section { background: var(--cream); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.team-card {
  background: white; border-radius: 6px; padding: 2rem 1.8rem;
  border-bottom: 3px solid transparent; transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover { border-color: var(--warm-terracotta); transform: translateY(-3px); }
.team-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--cream));
  border: 2px solid var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 300; color: var(--warm-terracotta); margin-bottom: 1.2rem;
}
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--deep); margin-bottom: 0.25rem; }
.team-role { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-terracotta); margin-bottom: 0.8rem; }
.team-desc { font-size: 0.82rem; line-height: 1.7; opacity: 0.55; font-weight: 300; }

/* ---- OUTREACH ---- */
.outreach-section { background: var(--soft-white); }
.outreach-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; margin-top: 4rem; }
.outreach-card {
  background: white; border-radius: 8px; overflow: hidden;
  box-shadow: 0 2px 20px rgba(26,32,53,0.06); transition: transform 0.3s, box-shadow 0.3s;
}
.outreach-card:hover { transform: translateY(-5px); box-shadow: 0 8px 36px rgba(26,32,53,0.1); }
.outreach-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.outreach-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 50%, #a8c4d8 100%);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.8rem; position: relative; overflow: hidden;
}
.outreach-img-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.08) 20px, rgba(255,255,255,0.08) 40px);
}
.placeholder-icon { font-size: 2.8rem; position: relative; z-index: 1; }
.placeholder-text { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm-terracotta); opacity: 0.7; position: relative; z-index: 1; }
.outreach-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--warm-terracotta); color: white;
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 2px; z-index: 2;
}
.outreach-body { padding: 1.8rem 1.8rem 2rem; }
.outreach-meta { display: flex; gap: 1.2rem; margin-bottom: 0.9rem; flex-wrap: wrap; }
.outreach-meta-item {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted-gold); display: flex; align-items: center; gap: 0.35rem;
}
.outreach-meta-item svg { width: 0.8rem; height: 0.8rem; opacity: 0.7; }
.outreach-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--deep); line-height: 1.25; margin-bottom: 0.8rem; }
.outreach-summary { font-size: 0.875rem; line-height: 1.8; color: var(--deep); opacity: 0.6; font-weight: 300; }
.outreach-tag-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.2rem; }
.outreach-tag {
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 50px;
  background: var(--cream); color: var(--warm-terracotta); border: 1px solid var(--blush);
}
.add-event-card {
  border: 2px dashed var(--blush); border-radius: 8px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 3rem 2rem; text-align: center;
  gap: 0.8rem; min-height: 300px; color: var(--warm-terracotta);
  opacity: 0.6; transition: opacity 0.2s;
}
.add-event-card:hover { opacity: 1; }
.add-event-icon { font-size: 2rem; margin-bottom: 0.4rem; }
.add-event-label { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; font-style: italic; }
.add-event-sub { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

/* ---- SUPPORT CTA ---- */
.support-section { background: linear-gradient(135deg, #C4607A 0%, #8FAFD4 100%); padding: 6rem 0; }
.support-section .container { text-align: center; }
.support-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; color: white; margin-bottom: 1.2rem; }
.support-title em { font-style: italic; opacity: 0.8; }
.support-sub { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.8; font-weight: 300; }
.support-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: white; color: var(--warm-terracotta); text-decoration: none;
  padding: 0.9rem 2.2rem; font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 2px; font-weight: 500; transition: background 0.2s;
}
.btn-white:hover { background: var(--cream); }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.5); color: white; text-decoration: none;
  padding: 0.9rem 2.2rem; font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 2px; transition: border-color 0.2s;
  display: flex; align-items: center; gap: 0.5rem;
}
.btn-outline-white:hover { border-color: white; }

/* ---- FOOTER ---- */
footer { background: #1A2035; padding: 4rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-logo { height: 80px; width: auto; object-fit: contain; margin-bottom: 0.5rem; border-radius: 8px; background: white; padding: 6px; }
.footer-motto { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-gold); margin-bottom: 1rem; }
.footer-tagline { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.35); font-weight: 300; }
.footer-col-title { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.2rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--blush); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.founded-badge { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.2); display: flex; align-items: center; gap: 0.5rem; }
.founded-badge::before { content: ''; width: 1rem; height: 1px; background: rgba(255,255,255,0.2); }

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  display: flex; align-items: center; gap: 0.7rem;
  background: #25D366; color: white; text-decoration: none;
  padding: 0.75rem 1.3rem 0.75rem 1rem; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 1.3rem; height: 1.3rem; flex-shrink: 0; }
.wa-label { white-space: nowrap; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.15s; opacity: 0; }
.delay-2 { animation-delay: 0.30s; opacity: 0; }
.delay-3 { animation-delay: 0.45s; opacity: 0; }
.delay-4 { animation-delay: 0.60s; opacity: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 4rem 2rem; }
  .split-layout { grid-template-columns: 1fr; gap: 3rem; }
  .programmes-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   DONATE MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(26,32,53,0.7);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.active { display: flex; }

.modal {
  background: white; border-radius: 16px;
  width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 60px rgba(26,32,53,0.2);
  animation: modalIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  padding: 2rem 2rem 1.2rem;
  border-bottom: 1px solid var(--blush);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
}
.modal-header-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; color: var(--deep); margin-bottom: 0.3rem;
}
.modal-header-text h2 em { font-style: italic; color: var(--warm-terracotta); }
.modal-header-text p { font-size: 0.82rem; opacity: 0.5; line-height: 1.5; }
.modal-close {
  background: var(--cream); border: none; cursor: pointer;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem; color: var(--deep);
  transition: background 0.2s;
}
.modal-close:hover { background: var(--blush); }

/* Amount selector */
.modal-section { padding: 1.4rem 2rem; border-bottom: 1px solid #f0e8ed; }
.modal-section:last-child { border-bottom: none; }
.modal-section-title {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.modal-section-title::before { content:''; width:1.2rem; height:1px; background:var(--muted-gold); }

.amount-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.6rem; margin-bottom: 0.8rem; }
.amount-btn {
  border: 1.5px solid var(--blush); background: white; border-radius: 8px;
  padding: 0.6rem 0.4rem; font-size: 0.85rem; font-weight: 500;
  color: var(--deep); cursor: pointer; transition: all 0.2s; text-align: center;
}
.amount-btn:hover, .amount-btn.selected {
  background: var(--warm-terracotta); border-color: var(--warm-terracotta); color: white;
}
.custom-amount-wrap { position: relative; }
.custom-amount-wrap span {
  position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%);
  font-size: 0.9rem; color: var(--warm-terracotta); font-weight: 500;
}
.custom-amount-wrap input {
  width: 100%; padding: 0.65rem 0.9rem 0.65rem 2rem;
  border: 1.5px solid var(--blush); border-radius: 8px;
  font-size: 0.9rem; color: var(--deep); outline: none;
  transition: border-color 0.2s; font-family: 'DM Sans', sans-serif;
}
.custom-amount-wrap input:focus { border-color: var(--warm-terracotta); }
.custom-amount-wrap input::placeholder { color: #bbb; }

/* Payment method tabs */
.method-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.method-tab {
  border: 1.5px solid var(--blush); background: white; border-radius: 50px;
  padding: 0.45rem 1.1rem; font-size: 0.75rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--deep); cursor: pointer;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif; font-weight: 500;
}
.method-tab:hover, .method-tab.active {
  background: var(--deep); border-color: var(--deep); color: white;
}

/* Payment detail panels */
.payment-panel { display: none; }
.payment-panel.active { display: block; }

.payment-card {
  background: var(--cream); border-radius: 12px;
  padding: 1.4rem 1.6rem; border-left: 4px solid var(--warm-terracotta);
}
.payment-card.blue { border-left-color: var(--muted-gold); }
.payment-card.green { border-left-color: #25D366; }

.payment-card-header {
  display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem;
}
.payment-card-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; background: white; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.payment-card-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.5; }
.payment-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--deep); }

.payment-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 0; border-bottom: 1px solid rgba(196,96,122,0.1);
}
.payment-row:last-child { border-bottom: none; padding-bottom: 0; }
.payment-row-label { font-size: 0.75rem; opacity: 0.5; text-transform: uppercase; letter-spacing: 0.08em; }
.payment-row-value { font-size: 0.9rem; font-weight: 500; color: var(--deep); display: flex; align-items: center; gap: 0.5rem; }

.copy-btn {
  background: none; border: none; cursor: pointer; opacity: 0.4;
  padding: 0.2rem; transition: opacity 0.2s; color: var(--warm-terracotta);
}
.copy-btn:hover { opacity: 1; }
.copy-btn svg { width: 0.9rem; height: 0.9rem; display: block; }

.ussd-box {
  background: var(--deep); border-radius: 8px; padding: 0.9rem 1.2rem;
  margin-top: 1rem; display: flex; align-items: center; justify-content: space-between;
}
.ussd-code { font-family: monospace; font-size: 1rem; color: var(--dusty-rose); letter-spacing: 0.06em; }
.ussd-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-top: 0.2rem; }

.payment-note {
  margin-top: 1rem; font-size: 0.78rem; line-height: 1.6;
  color: var(--deep); opacity: 0.55; background: white;
  border-radius: 8px; padding: 0.8rem 1rem;
}
.payment-note strong { color: var(--warm-terracotta); opacity: 1; }

/* Confirm via WhatsApp */
.wa-confirm-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  width: 100%; padding: 0.9rem; background: #25D366; color: white;
  border: none; border-radius: 10px; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.06em; cursor: pointer; text-decoration: none;
  margin-top: 1.2rem; transition: background 0.2s;
}
.wa-confirm-btn:hover { background: #1ebe5d; }
.wa-confirm-btn svg { width: 1.1rem; height: 1.1rem; }

.copied-toast {
  position: fixed; bottom: 5rem; left: 50%; transform: translateX(-50%);
  background: var(--deep); color: white; padding: 0.6rem 1.4rem;
  border-radius: 50px; font-size: 0.78rem; letter-spacing: 0.08em;
  opacity: 0; transition: opacity 0.3s; pointer-events: none; z-index: 2000;
}
.copied-toast.show { opacity: 1; }

@media (max-width: 600px) {
  .modal { border-radius: 16px 16px 0 0; max-height: 95vh; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .amount-grid { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   OUTREACH PHOTO SLIDESHOW
   ============================================================ */
.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
}
.slideshow-slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.slideshow-slide {
  min-width: 100%;
  height: 100%;
}
.slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Prev / Next arrows */
.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(26,32,53,0.15);
  transition: background 0.2s, transform 0.2s;
  color: var(--deep);
}
.slideshow-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.08);
}
.slideshow-btn.prev { left: 0.7rem; }
.slideshow-btn.next { right: 0.7rem; }
.slideshow-btn svg { width: 1rem; height: 1rem; }

/* Dot indicators */
.slideshow-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}
.slideshow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.slideshow-dot.active {
  background: white;
  transform: scale(1.25);
}

/* Counter badge */
.slideshow-counter {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(26,32,53,0.55);
  color: white;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  z-index: 10;
}

/* ============================================================
   ADVISORS & AMBASSADORS
   ============================================================ */
.advisors-block {
  margin-top: 4rem;
  padding: 2.5rem 3rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--blush);
}
.advisors-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.advisors-label::before {
  content: '';
  width: 1.8rem; height: 1px;
  background: var(--muted-gold);
}
.advisors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.advisor-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cream);
  border: 1px solid var(--blush);
  border-radius: 50px;
  padding: 0.5rem 1.2rem 0.5rem 0.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.advisor-pill:hover {
  border-color: var(--warm-terracotta);
  transform: translateY(-2px);
}
.advisor-initials {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--cream));
  border: 1.5px solid var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm-terracotta);
  flex-shrink: 0;
}
.advisor-pill span {
  font-size: 0.88rem;
  color: var(--deep);
  font-weight: 400;
  white-space: nowrap;
}
