/* ==========================================
   UMMEED FOUNDATION — styles.css
   Theme: Teal/Green, Islamic-inspired, Trust
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --teal:        #0d8c7a;
  --teal-dark:   #096b5d;
  --teal-light:  #e6f7f5;
  --teal-mid:    #1ab59f;
  --gold:        #c9973a;
  --gold-light:  #fdf3e3;
  --text:        #1a2e2b;
  --text-light:  #4a6661;
  --white:       #ffffff;
  --off-white:   #f8fffe;
  --border:      #d0e8e4;
  --shadow-sm:   0 2px 12px rgba(13,140,122,.08);
  --shadow-md:   0 8px 32px rgba(13,140,122,.14);
  --shadow-lg:   0 20px 60px rgba(13,140,122,.18);
  --radius:      14px;
  --radius-sm:   8px;
  --font-head:   'Amiri', serif;
  --font-body:   'Plus Jakarta Sans', sans-serif;
  --transition:  all .32s cubic-bezier(.4,0,.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- ISLAMIC GEOMETRIC BG PATTERN ---- */
.geo-bg {
  background-color: var(--off-white);
  background-image:
    repeating-linear-gradient(60deg, transparent, transparent 30px, rgba(13,140,122,.04) 30px, rgba(13,140,122,.04) 31px),
    repeating-linear-gradient(-60deg, transparent, transparent 30px, rgba(13,140,122,.04) 30px, rgba(13,140,122,.04) 31px),
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(13,140,122,.03) 30px, rgba(13,140,122,.03) 31px);
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
.arabic-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: .5px;
  margin-bottom: .4rem;
  display: block;
}
.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: .6rem;
  display: block;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .82rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13,140,122,.3);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(13,140,122,.4); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: white; transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: white;
  box-shadow: 0 4px 20px rgba(201,151,58,.3);
}
.btn-gold:hover { background: #b8872e; transform: translateY(-2px); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* REMOVE old box styling */
.nav-logo {
  display: none;
}

/* NEW image logo styling */
.logo {
  height: 75px;
  width: auto;
  object-fit: contain;
}
/* Better text alignment */
.nav-brand-text {
  line-height: 1.5;
}
.nav-brand-text .name { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--text); }
.nav-brand-text .tagline { font-size: .7rem; color: var(--text-light); letter-spacing: .5px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.nav-links a {
  padding: .5rem .9rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: .88rem;
  color: var(--text-light);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-light); }
.nav-donate { margin-left: .5rem; padding: .55rem 1.4rem !important; background: var(--teal) !important; color: white !important; border-radius: 50px !important; }
.nav-donate:hover { background: var(--teal-dark) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ---- HERO CAROUSEL ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 70px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.15)
  );
}
.slide-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  color: #ffffff;
}
.slide-content .arabic-title {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #017A3D;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  font-style: italic;
  opacity: 0.95;
}
.slide-content h1 { color: white; margin-bottom: 1.2rem; text-shadow: 0 3px 12px rgba(0,0,0,0.5); }
.slide-content p { font-size: 1.2rem; opacity: .9; max-width: 520px; margin-bottom: 2rem; text-shadow: 0 2px 6px rgba(0,0,0,0.3); color: rgba(255,255,255,0.9); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.carousel-dots {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: .6rem;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active { background: white; transform: scale(1.3); }
.carousel-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
}
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  pointer-events: all;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: rgba(255,255,255,.35); }

/* ---- SECTION SHELL ---- */
.section { padding: 96px 1.5rem; }
.section-sm { padding: 64px 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { max-width: 560px; margin: 0 auto; color: var(--text-light); font-size: 1.05rem; }
.divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px;
  margin: 1rem auto;
}

/* ---- ABOUT STRIP ---- */
.about-strip {
  background: var(--teal-light);
  border-top: 3px solid var(--teal);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrapper img { width: 100%; height: 420px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--gold);
  color: white;
  padding: .8rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .85rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge span { display: block; font-size: 1.5rem; font-family: var(--font-head); }
.about-content h2 { margin-bottom: 1.2rem; }
.about-content p { color: var(--text-light); margin-bottom: 1.5rem; }
.about-points { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
.about-point { display: flex; align-items: flex-start; gap: .8rem; }
.about-point-icon { width: 28px; height: 28px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .15rem; }
.about-point-icon svg { width: 14px; height: 14px; fill: none; stroke: white; stroke-width: 2.5; }

/* ---- WHAT WE DO ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  background: var(--teal-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.6rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--teal); }
.service-card h3 { margin-bottom: .6rem; font-size: 1.15rem; }
.service-card p { color: var(--text-light); font-size: .92rem; }

/* ---- WHY US ---- */
.why-section { background: var(--teal); position: relative; overflow: hidden; }
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.03) 40px, rgba(255,255,255,.03) 41px);
}
.why-section .section-head h2, .why-section .section-head p, .why-section .section-label { color: white; }
.why-section .divider { background: linear-gradient(90deg, rgba(255,255,255,.5), var(--gold)); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.why-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.why-card:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
.why-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { color: white; margin-bottom: .5rem; }
.why-card p { color: rgba(255,255,255,.8); font-size: .9rem; }

/* ---- IMPACT STATS ---- */
.impact-section { background: var(--off-white); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--teal);
  font-weight: 700;
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label { color: var(--text-light); font-size: .9rem; font-weight: 500; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-mid) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner h2 { color: white; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 2.5rem; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 120px 1.5rem 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(60deg, transparent, transparent 40px, rgba(255,255,255,.04) 40px, rgba(255,255,255,.04) 41px),
    repeating-linear-gradient(-60deg, transparent, transparent 40px, rgba(255,255,255,.04) 40px, rgba(255,255,255,.04) 41px);
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: .5rem; color: rgba(255,255,255,.65); font-size: .85rem; margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.65); } .breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ---- ABOUT PAGE ---- */
.about-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-full-grid img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.mv-card {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.8rem;
}
.mv-card h3 { color: var(--teal-dark); margin-bottom: .7rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  text-align: center;
  padding: 2rem 1.2rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.value-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.value-card h4 { color: var(--teal); margin-bottom: .5rem; }
.value-card p { font-size: .88rem; color: var(--text-light); }

/* ---- SERVICES PAGE ---- */
.services-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-full-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-top {
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  padding: 2.5rem 2rem 3rem;
  color: white;
  position: relative;
}
.service-card-top .s-icon { font-size: 3rem; margin-bottom: 1rem; }
.service-card-top h3 { color: white; font-size: 1.4rem; }
.service-card-body { padding: 2rem; }
.service-card-body p { color: var(--text-light); margin-bottom: 1.2rem; }
.service-card-body ul { padding-left: 0; }
.service-card-body ul li { display: flex; align-items: center; gap: .5rem; color: var(--text-light); font-size: .9rem; padding: .25rem 0; }
.service-card-body ul li::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* ---- DONATE PAGE ---- */
.donate-section { background: var(--off-white); min-height: calc(100vh - 70px); }
.donate-wrapper { max-width: 700px; margin: 0 auto; }
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 0;
}
.step-item { display: flex; align-items: center; gap: .5rem; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-light);
  font-weight: 700;
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.step-num.active { background: var(--teal); color: white; box-shadow: 0 0 0 4px var(--teal-light); }
.step-num.done { background: var(--teal-dark); color: white; }
.step-label { font-size: .8rem; color: var(--text-light); font-weight: 600; white-space: nowrap; }
.step-label.active { color: var(--teal); }
.step-line { width: 60px; height: 2px; background: var(--border); margin: 0 .3rem; transition: var(--transition); flex-shrink: 0; }
.step-line.done { background: var(--teal); }
.donate-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.donate-card h3 { margin-bottom: .5rem; color: var(--teal-dark); }
.donate-card > p { color: var(--text-light); margin-bottom: 2rem; font-size: .95rem; }
.donation-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1rem; }
.dtype-btn {
  border: 2px solid var(--border);
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 1.2rem .8rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.dtype-btn:hover { border-color: var(--teal); background: var(--teal-light); }
.dtype-btn.selected { border-color: var(--teal); background: var(--teal-light); }
.dtype-btn .dtype-icon { font-size: 1.6rem; margin-bottom: .4rem; }
.dtype-btn .dtype-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.dtype-btn .dtype-desc { font-size: .72rem; color: var(--text-light); margin-top: .2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; color: var(--text); margin-bottom: .5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: white;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,140,122,.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; margin-bottom: .8rem; }
.amount-chip {
  border: 1.5px solid var(--border);
  background: var(--off-white);
  border-radius: 6px;
  padding: .6rem .4rem;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  font-size: .88rem;
  transition: var(--transition);
}
.amount-chip:hover, .amount-chip.selected { border-color: var(--teal); background: var(--teal-light); color: var(--teal); }
.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pay-btn {
  border: 2px solid var(--border);
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.pay-btn:hover { border-color: var(--teal); }
.pay-btn.selected { border-color: var(--teal); background: var(--teal-light); }
.pay-icon { font-size: 1.8rem; margin-bottom: .4rem; }
.pay-label { font-weight: 600; font-size: .85rem; }
.info-box {
  background: var(--teal-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  margin-top: 1.5rem;
}
.info-box p { font-size: .9rem; color: var(--text-light); }
.info-box strong { color: var(--teal-dark); }
.bank-details { margin-top: 1.2rem; }
.bank-row { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px dashed var(--border); }
.bank-row:last-child { border-bottom: none; }
.bank-row .k { font-weight: 600; font-size: .88rem; color: var(--text-light); }
.bank-row .v { font-weight: 700; font-size: .9rem; color: var(--text); }
.step-btns { display: flex; justify-content: space-between; margin-top: 2rem; gap: 1rem; }
.step-btns .btn { flex: 1; justify-content: center; }
.hidden { display: none !important; }

/* ---- RECEIPT ---- */
.receipt-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.receipt-modal.open { display: flex; }
.receipt-box {
  background: white;
  border-radius: var(--radius);
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: popIn .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.receipt-header {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 2rem;
  text-align: center;
  color: white;
}
.receipt-header h3 { color: white; font-size: 1.4rem; }
.receipt-header p { font-size: .85rem; opacity: .8; margin-top: .3rem; }
.receipt-body { padding: 2rem; }
.receipt-row { display: flex; justify-content: space-between; align-items: center; padding: .7rem 0; border-bottom: 1px solid var(--teal-light); }
.receipt-row:last-child { border-bottom: none; }
.receipt-row .rk { font-size: .82rem; color: var(--text-light); font-weight: 600; }
.receipt-row .rv { font-size: .92rem; font-weight: 700; color: var(--text); text-align: right; }
.receipt-row.highlight .rv { color: var(--teal); font-size: 1.1rem; }
.receipt-num { font-size: .75rem; color: var(--text-light); text-align: center; margin-bottom: 1rem; font-family: monospace; }
.receipt-footer { padding: 1.5rem 2rem; border-top: 1px solid var(--border); display: flex; gap: 1rem; }
.receipt-footer .btn { flex: 1; justify-content: center; font-size: .88rem; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-info-item h4 { font-size: .95rem; color: var(--teal-dark); margin-bottom: .3rem; }
.contact-info-item p, .contact-info-item a { color: var(--text-light); font-size: .9rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 2rem; }
.contact-form-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.8);
  padding: 60px 1.5rem 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { background: var(--teal); margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.footer-col h4 { color: white; font-size: .95rem; margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--teal-mid); }
.footer-contact p { font-size: .88rem; margin-bottom: .6rem; display: flex; align-items: center; gap: .5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: var(--teal-mid); }
.footer-logo {
  height: 75px;
  width: auto;
  margin-bottom: 1rem;
  border-radius: 50%; /* optional */
}

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.5); }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
}
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ---- ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-grid, .about-full-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mission-vision-grid, .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: white; padding: 1.5rem; flex-direction: column; gap: .3rem; box-shadow: var(--shadow-md); border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .donation-type-grid { grid-template-columns: repeat(3, 1fr); }
  .payment-grid { grid-template-columns: repeat(3, 1fr); }
  .donate-card { padding: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .step-label { display: none; }
}
@media (max-width: 480px) {
  .donation-type-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .step-btns { flex-direction: column-reverse; }
}

/* ---- SUCCESS CHECK ---- */
.success-screen {
  text-align: center;
  padding: 2rem 1rem;
}
.success-icon {
  width: 80px; height: 80px;
  background: var(--teal-light);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  animation: popIn .4s ease;
}
.success-screen h3 { color: var(--teal-dark); margin-bottom: .5rem; }
.success-screen p { color: var(--text-light); }

/* Affiliation strip */
.affiliation-strip {
  background: var(--gold-light);
  border-bottom: 1px solid #e8d4a8;
  text-align: center;
  padding: .5rem;
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .3px;
}
