/* ============================================================
   PAICA — Stylesheet
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #2d2d2d;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- CSS Variables ---------- */
:root {
  --blue:    #3A7BD5;
  --blue-dark: #1e5fb8;
  --purple:  #7B4FBE;
  --yellow:  #F5A623;
  --green:   #27AE60;
  --light:   #F8F7FD;
  --white:   #ffffff;
  --dark:    #1A1A2E;
  --gray:    #6c757d;
  --border:  #e0dff0;
  --shadow:  0 4px 24px rgba(58,123,213,.12);
  --radius:  12px;
  --radius-lg: 20px;
  --trans:   0.3s ease;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: .82rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar a { color: #ccc; transition: color var(--trans); }
.top-bar a:hover { color: #fff; }

.top-bar__contact { display: flex; align-items: center; gap: 18px; }
.top-bar__contact i { margin-right: 5px; color: var(--yellow); }

.top-bar__social { display: flex; gap: 12px; }
.top-bar__social a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
  font-size: .85rem;
}
.top-bar__social a:hover { background: var(--blue); color: #fff; }

/* ---------- Container ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Header / Nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

header.scrolled { box-shadow: 0 2px 32px rgba(58,123,213,.15); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.logo__text { line-height: 1.15; }
.logo__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.3px;
}
.logo__sub {
  font-size: .7rem;
  color: var(--blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  transition: color var(--trans);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width var(--trans);
}

.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }

.nav-links .btn-donate {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  transition: opacity var(--trans), transform var(--trans);
}
.nav-links .btn-donate::after { display: none; }
.nav-links .btn-donate:hover { opacity: .9; transform: translateY(-1px); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--trans);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .93rem;
  cursor: pointer;
  transition: all var(--trans);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58,123,213,.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
}
.btn-yellow:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,.4);
  color: var(--dark);
}

/* ---------- Section Titles ---------- */
.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  background: rgba(58,123,213,.1);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  position: relative;
  top: -15px;
}

.section-tag.purple { color: var(--purple); background: rgba(123,79,190,.1); }
.section-tag.yellow { color: #c47a00; background: rgba(245,166,35,.15); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2a5e 0%, #1e4db7 50%, #6b35a8 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .25;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__shapes span {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  background: #fff;
  animation: float 8s ease-in-out infinite;
}

.hero__shapes span:nth-child(1) { width: 320px; height: 320px; top: -80px; right: -60px; animation-delay: 0s; }
.hero__shapes span:nth-child(2) { width: 180px; height: 180px; bottom: 60px; left: -40px; animation-delay: 2s; }
.hero__shapes span:nth-child(3) { width: 90px; height: 90px; top: 40%; left: 35%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero__content {}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero__badge i { color: var(--yellow); }

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 30px;
}

.hero__title span {
  background: linear-gradient(90deg, #f5a623, #f9d423);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5em;
}

.hero__desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero__stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.hero__image {
  position: relative;
}

.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

.hero__img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero__img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.hero__img-badge-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero__img-badge-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

.hero__img-badge-text span {
  font-size: .78rem;
  color: var(--gray);
}

/* ---------- Info Cards (About Row) ---------- */
.info-cards {
  background: var(--light);
  padding: 60px 0;
}

.info-cards .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
  border-top: 4px solid transparent;
  cursor: pointer;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(58,123,213,.18);
}

.info-card:nth-child(1) { border-color: var(--blue); }
.info-card:nth-child(2) { border-color: var(--purple); }
.info-card:nth-child(3) { border-color: var(--yellow); }

.info-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.info-card:nth-child(1) .info-card__icon { background: rgba(58,123,213,.1); color: var(--blue); }
.info-card:nth-child(2) .info-card__icon { background: rgba(123,79,190,.1); color: var(--purple); }
.info-card:nth-child(3) .info-card__icon { background: rgba(245,166,35,.1); color: #c47a00; }

.info-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.info-card p  { font-size: .9rem; color: var(--gray); line-height: 1.65; }

/* ---------- About Section ---------- */
.about {
  padding: 0;
  overflow: hidden;
}

.about .container {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.about__images {
  position: relative;
  min-height: 560px;
}

.about__main-img {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.about__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__secondary-img {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
  border: 5px solid var(--white);
}

.about__secondary-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.about__years {
  position: absolute;
  top: 24px;
  left: -24px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(58,123,213,.4);
}

.about__years-num { font-size: 2rem; font-weight: 900; line-height: 1; }
.about__years-label { font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; opacity: .9; }

.about__content {
  padding: 80px 60px 80px 70px;
  background: var(--white);
}

.about__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 24px 0 32px;
}

.about__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 8px;
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark);
  transition: background var(--trans), border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  cursor: default;
  /* fixed height so all cards are identical */
  height: 90px;
}

.about__card:hover {
  background: var(--white);
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(58,123,213,.15);
}

.about__card-icon {
  font-size: 1.3rem;
  color: var(--blue);
  line-height: 1;
}

/* ---------- Mission / Values ---------- */
.mission {
  background: var(--light);
  padding: 100px 0;
}

.mission .container { }

.mission__header { text-align: center; margin-bottom: 60px; }

.mission__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mission-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--trans);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}

.mission-card:nth-child(1)::before { background: var(--blue); }
.mission-card:nth-child(2)::before { background: var(--purple); }
.mission-card:nth-child(3)::before { background: var(--yellow); }

.mission-card:hover { transform: translateY(-4px); }

.mission-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}

.mission-card:nth-child(1) .mission-card__icon { background: rgba(58,123,213,.1); color: var(--blue); }
.mission-card:nth-child(2) .mission-card__icon { background: rgba(123,79,190,.1); color: var(--purple); }
.mission-card:nth-child(3) .mission-card__icon { background: rgba(245,166,35,.15); color: #c47a00; }

.mission-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.mission-card p  { font-size: .92rem; color: var(--gray); line-height: 1.7; }

/* ---------- Stats Counter ---------- */
.stats {
  background: linear-gradient(135deg, #0f2a5e, #1e4db7 60%, #6b35a8);
  padding: 70px 0;
  color: #fff;
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {}

.stat-item__num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(90deg, #f5a623, #f9d423);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item__label {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-item__icon {
  font-size: 1.6rem;
  opacity: .5;
  margin-bottom: 10px;
}

/* ---------- Programs ---------- */
.programs {
  padding: 100px 0;
}

.programs__header {
  text-align: center;
  margin-bottom: 60px;
}

.programs__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.program-card {
  width: calc(25% - 21px);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(58,123,213,.2);
}

.program-card__img {
  position: relative;
  overflow: hidden;
  height: 210px;
}

.program-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.program-card:hover .program-card__img img { transform: scale(1.06); }

.program-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
}

.program-card__body { padding: 24px; }

.program-card__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.program-card__body p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 18px;
}

.program-card__link {
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--trans);
}

.program-card:hover .program-card__link { gap: 10px; }

/* ---------- Partners ---------- */
.partners {
  background: var(--light);
  padding: 80px 0;
}

.partners__header { text-align: center; margin-bottom: 50px; }

.partners__tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.partners__tab {
  padding: 8px 22px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  color: var(--gray);
  background: var(--white);
  transition: all var(--trans);
}

.partners__tab.active,
.partners__tab:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.partners__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.partner-logo {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 36px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border: 1px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 100px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .65;
  transition: filter var(--trans), opacity var(--trans);
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.12);
  border-color: var(--blue);
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ---------- CTA Support ---------- */
.cta-support {
  padding: 100px 0;
  background: var(--white);
}

.cta-support .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.cta-support__content {}
.cta-support__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

.cta-support__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.cta-support__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.cta-support__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,20,60,.6));
}

.cta-support__image-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: #fff;
}

.cta-support__image-caption strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cta-support__image-caption span { font-size: .85rem; opacity: .85; }

/* ---------- Volunteer ---------- */
.volunteer {
  background: linear-gradient(135deg, #0f2a5e, #1e4db7 60%, #6b35a8);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.volunteer::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -150px; right: -150px;
}

.volunteer .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.volunteer__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

.volunteer__img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.volunteer__content {}
.volunteer__content .section-title { color: #fff; }
.volunteer__content .section-desc  { color: rgba(255,255,255,.75); max-width: 100%; }

.volunteer__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px;
}

.volunteer__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
}

.volunteer__feature-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 100px 0;
  background: var(--light);
}

.faq .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.faq__content {}

.faq__illustration {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.faq__illustration__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq__illustration__img-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.faq__illustration p {
  text-align: center;
  color: var(--gray);
  font-size: .92rem;
}

.faq__list { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }

.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  gap: 12px;
  transition: color var(--trans);
}

.faq__question:hover { color: var(--blue); }

.faq__question i {
  flex-shrink: 0;
  color: var(--blue);
  transition: transform var(--trans);
  font-size: .85rem;
}

.faq__item.open .faq__question i { transform: rotate(180deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding var(--trans);
  padding: 0 24px;
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
}

.faq__item.open .faq__answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  padding: 80px 0;
  color: #fff;
}

.newsletter .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter__content {}
.newsletter__content h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.newsletter__content p  { color: rgba(255,255,255,.8); }

.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 440px;
  width: 100%;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}

.newsletter__form input {
  flex: 1;
  padding: 14px 22px;
  border: none;
  outline: none;
  font-size: .95rem;
  font-family: inherit;
}

.newsletter__form button {
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  transition: filter var(--trans);
  white-space: nowrap;
  font-family: inherit;
}

.newsletter__form button:hover { filter: brightness(1.08); }

/* ---------- Footer ---------- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 70px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1.2fr 0.8fr 1.1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand .logo__title { color: #fff; }
.footer__brand .logo__sub   { color: var(--blue); }

.footer__brand p {
  margin-top: 16px;
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all var(--trans);
}

.footer__social a:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

.footer__col h4 {
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }

.footer__col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--trans);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer__col ul li a:hover { color: var(--blue); }
.footer__col ul li a i { font-size: .7rem; }

.footer__bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

.footer__col__donation {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 20px;
  margin-top: 0;
}

.footer__bottom a { color: rgba(255,255,255,.45); transition: color var(--trans); }
.footer__bottom a:hover { color: var(--blue); }

/* ---------- Scroll to Top ---------- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(58,123,213,.45);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--trans), transform var(--trans);
  z-index: 999;
}

.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  color: rgba(255,255,255,.85);
  padding: 18px 0;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  transform: translateY(100%);
  transition: transform .4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p { font-size: .88rem; }
.cookie-banner p a { color: var(--blue); text-decoration: underline; }

.cookie-banner__btns { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .83rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: inherit;
  transition: all var(--trans);
}

.cookie-btn.accept {
  background: var(--blue);
  color: #fff;
}
.cookie-btn.accept:hover { background: var(--blue-dark); }

.cookie-btn.reject {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.6);
}
.cookie-btn.reject:hover { border-color: rgba(255,255,255,.6); color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { gap: 40px; padding: 60px 0; }
  .hero__img-wrap img { height: 380px; }
  .about .container,
  .cta-support .container,
  .volunteer .container,
  .faq .container { gap: 50px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid > :last-child { grid-column: span 1; }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero__btns { justify-content: center; }
  .hero__stats { justify-content: center; }
  .info-cards .container { grid-template-columns: 1fr; }
  .mission__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .programs__grid .program-card { width: calc(50% - 14px); }
  .about .container,
  .cta-support .container,
  .volunteer .container,
  .faq .container { grid-template-columns: 1fr; }
  .about__images { min-height: 340px; position: relative; }
  .about__content { padding: 50px 32px; }
  .about__cards { grid-template-columns: repeat(5, 1fr); }
  .about__secondary-img,
  .about__years { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: span 2; }
  .newsletter .container { flex-direction: column; }
  .newsletter__form { max-width: 100%; }
}

@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 24px; gap: 18px; border-top: 1px solid var(--border); box-shadow: 0 16px 32px rgba(0,0,0,.1); z-index: 100; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .navbar { position: relative; }
  .top-bar .container { justify-content: center; }
  .top-bar__contact { flex-direction: column; gap: 6px; text-align: center; }
  .hero { min-height: auto; }
  .hero .container { padding: 50px 0; }
  .hero__title { font-size: 1.9rem; }
  .programs__grid .program-card { width: 100%; }
  .stats .container { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__grid > :first-child,
  .footer__grid > :last-child { grid-column: span 1; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .partners__logos { gap: 18px; }
  .about__cards { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Donation CTA ---------- */
.donation-cta {
  position: relative;
  background: linear-gradient(135deg, #0f2a5e 0%, #1e4db7 55%, #6b35a8 100%);
  padding: 90px 0;
  overflow: hidden;
  text-align: center;
}

/* Puzzle pieces background */
.puzzle-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.puzzle-piece {
  position: absolute;
  opacity: .15;
  line-height: 1;
}

/* Individual placement & sizes */
.puzzle-piece.p1 { font-size: 130px; top: -20px;  left: 5%;   color: #f5a623; animation: puzzleDrift 9s ease-in-out infinite; }
.puzzle-piece.p2 { font-size: 90px;  top: 55%;   left: 14%;  color: #e74c3c; animation: puzzleDrift 12s ease-in-out infinite reverse; animation-delay: 1.5s; }
.puzzle-piece.p3 { font-size: 160px; top: -30px; right: 6%;  color: #2ecc71; animation: puzzleDrift 10s ease-in-out infinite; animation-delay: 3s; }
.puzzle-piece.p4 { font-size: 100px; bottom: -10px; right: 20%; color: #9b59b6; animation: puzzleDrift 8s ease-in-out infinite reverse; animation-delay: .8s; }
.puzzle-piece.p5 { font-size: 70px;  top: 30%;   left: 42%;  color: #1abc9c; animation: puzzleDrift 13s ease-in-out infinite; animation-delay: 2s; }
.puzzle-piece.p6 { font-size: 120px; bottom: -15px; left: 36%; color: #f39c12; animation: puzzleDrift 11s ease-in-out infinite reverse; animation-delay: 4s; }

@keyframes puzzleDrift {
  0%   { transform: translateY(0)    rotate(0deg); }
  33%  { transform: translateY(-18px) rotate(6deg); }
  66%  { transform: translateY(10px)  rotate(-4deg); }
  100% { transform: translateY(0)    rotate(0deg); }
}

.donation-cta .container { position: relative; z-index: 2; }

.donation-cta__inner {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.donation-cta__icon {
  width: 72px; height: 72px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--yellow);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
}

.donation-cta__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.donation-cta__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  max-width: 640px;
}

.donation-cta__btn {
  font-size: 1rem;
  padding: 14px 36px;
  margin-top: 8px;
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
