*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 
:root {
  --red: #C0392B;
  --red-dark: #922B21;
  --red-deep: #641E16;
  --red-light: #F1948A;
  --red-pale: #FDEDEC;
  --red-glow: rgba(192,57,43,0.15);
  --white: #FFFFFF;
  --off-white: #FEF9F9;
  --cream: #FDF3F3;
  --gray: #7B7B7B;
  --dark: #1A0A0A;
  --blue: #1565C0;
  --blue-light: #E3F0FF;
}
 
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}
 
/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(192,57,43,0.1);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(192,57,43,0.12); }
 
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-drop {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 15px rgba(192,57,43,0.4);
  animation: pulse-drop 2s ease-in-out infinite;

  overflow: hidden;
}

.logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;

  transform: rotate(45deg); /* fixes image rotation */
}

@keyframes pulse-drop {
  0%,100% {
    box-shadow: 0 4px 15px rgba(192,57,43,0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(192,57,43,0.7);
  }
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--red-dark);
}

.logo-text span {
  color: var(--red);
}
.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--dark);
  font-size: 0.9rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }
 
.nav-actions { display: flex; gap: 0.75rem; align-items: center; }
 
.btn-outline {
  padding: 0.5rem 1.3rem;
  border: 2px solid var(--red); color: var(--red);
  background: transparent; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s; text-decoration: none;
}
.btn-outline:hover { background: var(--red); color: white; transform: translateY(-1px); }
 
.btn-solid {
  padding: 0.5rem 1.3rem;
  background: var(--red); color: white;
  border: 2px solid var(--red); border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s; text-decoration: none;
}
.btn-solid:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
 
 
 /* ── PAGE HERO (inner pages: About, Awareness, Doctors etc.) ── */
.page-hero {
  min-height: 52vh;
  background: linear-gradient(135deg, var(--dark) 0%, #2a0a0a 55%, #3d0f0f 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 9rem 5% 5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900; color: white;
  line-height: 1.1; margin-bottom: 1.2rem;
  position: relative; z-index: 2;
  animation: fadeInUp 0.7s 0.1s ease both;
}
.page-hero h1 em {
  font-style: italic; color: var(--red-light); position: relative;
}
.page-hero h1 em::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 3px; background: var(--red); border-radius: 2px; opacity: 0.6;
}
.page-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
  max-width: 540px; line-height: 1.85; font-weight: 300;
  position: relative; z-index: 2;
  animation: fadeInUp 0.7s 0.2s ease both;
}

/* ── FLOATING PLUS SIGNS (inner page heroes) ── */
.f-plus {
  position: absolute; color: rgba(192,57,43,0.22);
  font-size: 1.5rem; font-weight: 300; pointer-events: none;
  animation: floatP 4s ease-in-out infinite;
}
.f-plus:nth-child(2) { top: 20%; left: 6%;     animation-delay: 0s; }
.f-plus:nth-child(3) { top: 65%; left: 4%;     animation-delay: 1s;   font-size: 1rem; }
.f-plus:nth-child(4) { top: 25%; right: 5%;    animation-delay: 2s;   font-size: 2rem; }
.f-plus:nth-child(5) { bottom: 20%; right: 8%; animation-delay: 0.5s; font-size: 0.9rem; }
@keyframes floatP {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.22; }
  50%      { transform: translateY(-12px) rotate(15deg); opacity: 0.45; }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--red-pale);
  border-bottom: 1px solid rgba(192,57,43,0.12);
  padding: 0.85rem 5%;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--gray);
}
.breadcrumb a { color: var(--red); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb svg { width: 14px; height: 14px; color: var(--red-light); }

/* ── HIGHLIGHT BLOCK (shared across inner pages) ── */
.highlight-block {
  background: var(--red-pale);
  border-left: 4px solid var(--red);
  padding: 1.1rem 1.4rem;
  border-radius: 0 12px 12px 0; margin: 2rem 0;
}
.highlight-block p {
  font-size: 0.97rem; color: var(--red-dark);
  font-weight: 500; line-height: 1.7; margin: 0;
}
 
 
/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1A0A0A 0%, #922B21 55%, #C0392B 100%);
}
 
/* Background decorative circles */
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: 30%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.1) 0%, transparent 70%);
  pointer-events: none;
}
 
/* cross-pattern subtle overlay */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
 
/* Plus signs floating */
.hero-plus {
  position: absolute;
  color: rgba(192,57,43,0.25);
  font-size: 1.5rem;
  font-weight: 300;
  pointer-events: none;
  animation: float-plus 4s ease-in-out infinite;
}
.hero-plus:nth-child(2) { top: 15%; left: 8%; animation-delay: 0s; }
.hero-plus:nth-child(3) { top: 70%; left: 3%; animation-delay: 1s; font-size: 1rem; }
.hero-plus:nth-child(4) { top: 30%; right: 5%; animation-delay: 2s; font-size: 2rem; }
.hero-plus:nth-child(5) { top: 80%; right: 10%; animation-delay: 0.5s; font-size: 0.9rem; }
@keyframes float-plus {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.25; }
  50% { transform: translateY(-14px) rotate(15deg); opacity: 0.5; }
}
 
.hero-content { position: relative; z-index: 2; }
 
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.4);
  color: var(--red-light);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--red-light);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: 0.2; }
}
 
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s 0.1s ease both;
}
h1 em {
  font-style: italic;
  color: var(--red-light);
  position: relative;
  display: inline-block;
}
h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px; opacity: 0.6;
}
 
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeInUp 0.7s 0.2s ease both;
}
 
/* ── SEARCH BAR ── */
.hero-search {
  display: flex;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0,0,0,0.35);
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s 0.3s ease both;
  max-width: 560px;
}
.hero-search input {
  flex: 1;
  padding: 1rem 1.2rem;
  border: none; outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: transparent;
}
.hero-search input::placeholder { color: #aaa; }
.hero-search select {
  padding: 0 1rem;
  border: none; border-left: 1px solid #eee;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--gray);
  background: transparent;
  cursor: pointer;
}
.hero-search button {
  padding: 0.9rem 1.8rem;
  background: var(--red);
  color: white; border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer;
  transition: background 0.25s;
  display: flex; align-items: center; gap: 7px;
}
.hero-search button:hover { background: var(--red-dark); }
.hero-search button svg { width: 16px; height: 16px; }
 
.hero-trust {
  display: flex; gap: 2rem; flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.4s ease both;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.trust-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(192,57,43,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 16px; height: 16px; color: var(--red-light); }
.trust-item strong { color: rgba(255,255,255,0.85); display: block; font-size: 0.88rem; font-weight: 600; }
 
/* ── HERO RIGHT ── */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 1s 0.3s ease both;
  z-index: 2;
}
.hero-img-container {
  position: relative;
  width: 100%; max-width: 500px;
}
.hero-img-container img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.hero-img-overlay {
  position: absolute; inset: 0;
  border-radius: 24px;
  background: linear-gradient(to top, rgba(100,30,22,0.45) 0%, transparent 55%);
}
 
.floating-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 10px;
}
.card-left {
  bottom: 50px; left: -45px;
  animation: float 3.2s ease-in-out infinite;
}
.card-right {
  top: 55px; right: -35px;
  animation: float 3s ease-in-out infinite 1.5s;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--red-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.card-icon svg { width: 20px; height: 20px; color: var(--red); }
.card-text-title { font-size: 0.72rem; color: var(--gray); }
.card-text-val { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
 
/* ── QUICK SERVICES ── */
.quick-services {
  background: white;
  padding: 0;
  position: relative;
  z-index: 10;
}
.qs-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  gap: 0;
  border-radius: 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.1);
  border-top: 3px solid var(--red);
  scrollbar-width: none;
}
.qs-inner::-webkit-scrollbar { display: none; }
 
.qs-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.25s;
  border-right: 1px solid rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
}
.qs-item:last-child { border-right: none; }
.qs-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--red);
  transition: all 0.3s;
}
.qs-item:hover::after { left: 0; right: 0; }
.qs-item:hover {
  background: var(--red-pale);
}
.qs-item:hover .qs-icon { background: var(--red); }
.qs-item:hover .qs-icon svg { color: white; }
.qs-item:hover .qs-label { color: var(--red-dark); }
 
.qs-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--red-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
  transition: all 0.25s;
}
.qs-icon svg { width: 26px; height: 26px; color: var(--red); transition: color 0.25s; }
.qs-label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--dark); transition: color 0.25s;
  text-align: center; line-height: 1.3;
}
.qs-sub { font-size: 0.72rem; color: var(--gray); margin-top: 3px; text-align: center; }
 
/* ── SECTION COMMONS ── */
section { padding: 5.5rem 5%; }
 
.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--red); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--dark); margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--red); }
.section-subtitle {
  font-size: 1rem; color: var(--gray);
  line-height: 1.8; max-width: 520px; margin-bottom: 3.5rem;
}
 
/* ── SERVICES GRID ── */
.services { background: var(--cream); text-align: center; }
.services .section-subtitle { margin: 0 auto 3.5rem; }
 
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-decoration: none;
  color: var(--dark);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
  display: flex; flex-direction: column;
  align-items: flex-start;
  position: relative; overflow: hidden;
  text-align: left;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: 0 12px 50px rgba(192,57,43,0.12);
  transform: translateY(-5px);
}
.sc-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--red-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  transition: all 0.3s;
}
.sc-icon svg { width: 28px; height: 28px; color: var(--red); }
.service-card:hover .sc-icon { background: var(--red); }
.service-card:hover .sc-icon svg { color: white; }
.sc-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.sc-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin-bottom: 1.2rem; flex: 1; }
.sc-link {
  font-size: 0.82rem; font-weight: 600;
  color: var(--red);
  display: flex; align-items: center; gap: 5px;
}
.sc-link svg { width: 14px; height: 14px; transition: transform 0.25s; }
.service-card:hover .sc-link svg { transform: translateX(4px); }
 
/* ── STORY / ABOUT ── */
.story {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.story-images {
  position: relative; height: 500px;
}
.story-img-main {
  position: absolute; top: 0; left: 0;
  width: 70%; height: 400px;
  object-fit: cover; border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.story-img-secondary {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 260px;
  object-fit: cover; border-radius: 20px;
  border: 6px solid white;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.story-quote {
  position: absolute;
  bottom: 130px; left: -15px;
  background: var(--red); color: white;
  padding: 1rem 1.25rem; border-radius: 14px;
  max-width: 190px; font-size: 0.82rem;
  font-weight: 500; line-height: 1.5;
  box-shadow: 0 10px 30px rgba(192,57,43,0.4);
}
.story-quote::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; line-height: 1;
  display: block; margin-bottom: 4px; opacity: 0.6;
}
.story-desc {
  font-size: 1rem; color: #555; line-height: 1.9;
  margin-bottom: 1.5rem; font-weight: 300;
}
.story-highlight {
  background: var(--red-pale);
  border-left: 4px solid var(--red);
  padding: 1.1rem 1.4rem;
  border-radius: 0 12px 12px 0; margin: 2rem 0;
}
.story-highlight p {
  font-size: 0.95rem; color: var(--red-dark);
  font-weight: 500; line-height: 1.7;
}
 
/* ── IMPACT ── */
.impact {
  background: var(--dark); color: white; text-align: center;
}
.impact .section-title { color: white; }
.impact .section-label { color: var(--red-light); }
.impact .section-subtitle { color: rgba(255,255,255,0.55); margin: 0 auto 4rem; }
 
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 900px; margin: 0 auto;
}
.impact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px; padding: 2.2rem 1.8rem;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.impact-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.15) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.impact-card:hover::before { opacity: 1; }
.impact-card:hover { border-color: rgba(192,57,43,0.5); transform: translateY(-5px); }
.impact-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(192,57,43,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.impact-icon svg { width: 26px; height: 26px; color: var(--red-light); }
.impact-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--red-light); line-height: 1; margin-bottom: 0.5rem;
}
.impact-label { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
 
/* ── HOW IT WORKS ── */
.how { background: var(--cream); text-align: center; }
.how .section-subtitle { margin: 0 auto 4rem; }
 
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 52px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 1.8rem 1.2rem; }
.step-num {
  width: 54px; height: 54px;
  background: white; border: 3px solid var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--red);
  margin: 0 auto 1.3rem;
  transition: all 0.3s;
  box-shadow: 0 0 0 6px var(--cream);
}
.step:hover .step-num { background: var(--red); color: white; box-shadow: 0 0 0 6px var(--red-pale), 0 8px 25px rgba(192,57,43,0.3); }
.step-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.83rem; color: var(--gray); line-height: 1.7; }
 
/* ── CHILDREN / AWARENESS GALLERY ── */
.children { background: white; text-align: center; }
.children .section-subtitle { margin: 0 auto 3rem; }
 
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.gallery-item {
  position: relative; border-radius: 18px;
  overflow: hidden; cursor: pointer;
  transition: transform 0.3s;
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img {
  width: 100%; height: 100%; min-height: 190px;
  object-fit: cover; display: block;
  transition: transform 0.5s;
}
.gallery-item:first-child img { min-height: 100%; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(100,30,22,0.85) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-name { color: white; font-size: 0.88rem; font-weight: 600; }
.gallery-age { color: var(--red-light); font-size: 0.78rem; }
 
/* ── TESTIMONIAL ── */
.testimonial { background: var(--cream); padding: 5rem 5%; }
.testimonial-inner {
  max-width: 820px; margin: 0 auto; text-align: center;
}
.big-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700; font-style: italic;
  color: var(--dark); line-height: 1.65;
  margin-bottom: 2.2rem; position: relative;
}
.big-quote::before {
  content: '\201C';
  font-size: 7rem; color: var(--red-pale);
  position: absolute; top: -35px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  line-height: 1; z-index: -1;
}
.quote-author {
  display: flex; align-items: center;
  justify-content: center; gap: 1rem;
}
.author-img {
  width: 52px; height: 52px;
  border-radius: 50%; object-fit: cover;
  border: 3px solid var(--red-light);
}
.author-name { font-weight: 700; font-size: 0.95rem; }
.author-role { font-size: 0.82rem; color: var(--gray); }
 
/* ── DONATE CTA ── */
.donate-cta {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-deep) 100%);
  color: white; text-align: center;
  padding: 6rem 5%; position: relative; overflow: hidden;
}
.donate-cta::before {
  content: '';
  position: absolute; top: -300px; left: -300px;
  width: 800px; height: 800px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.donate-cta::after {
  content: '';
  position: absolute; bottom: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.donate-cta .section-label { color: var(--red-light); }
.donate-cta .section-title { color: white; max-width: 620px; margin: 0 auto 1.3rem; }
.donate-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  max-width: 500px; margin: 0 auto 2.8rem; line-height: 1.8;
}
.donate-actions {
  display: flex; justify-content: center; gap: 1rem;
  flex-wrap: wrap; position: relative; z-index: 1;
}
.btn-white {
  padding: 0.95rem 2.3rem;
  background: white; color: var(--red-dark);
  border: none; border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.35); }
.btn-white svg { width: 17px; height: 17px; color: var(--red); }
.btn-white-outline {
  padding: 0.95rem 2.3rem;
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.45); border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px;
}
.btn-white-outline:hover {
  border-color: white; background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-white-outline svg { width: 17px; height: 17px; }
 
/* ── FOOTER ── */
footer {
  background: var(--dark); color: rgba(255,255,255,0.55);
  padding: 3rem 5%; text-align: center;
}
.footer-logo {
  display: flex; align-items: center;
  justify-content: center; gap: 10px; margin-bottom: 1.5rem;
}
.footer-drop {
  width: 26px; height: 26px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: white; font-weight: 700;
}
.footer-links {
  display: flex; justify-content: center;
  gap: 2rem; margin-bottom: 1.5rem;
  list-style: none; flex-wrap: wrap;
}
.footer-links a {
  text-decoration: none; color: rgba(255,255,255,0.45);
  font-size: 0.87rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--red-light); }
.footer-apps {
  display: flex; justify-content: center;
  gap: 1rem; margin-bottom: 1.5rem;
}
.footer-apps a {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: white; transition: all 0.3s;
}
.footer-apps a:hover { background: var(--red); transform: translateY(-3px); }
.footer-apps svg { width: 22px; height: 22px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
 
/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
 
/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
 
/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 7rem; }
  .hero-sub, .hero-search { margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; }
  .hero-visual { margin-top: 3rem; }
  .card-left { left: 0; } .card-right { right: 0; }
  .story { grid-template-columns: 1fr; }
  .story-images { height: 320px; }
  .impact-grid { grid-template-columns: 1fr; max-width: 340px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-row: auto; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}