/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #1A3D7C;
  --primary-dark: #122a57;
  --accent-blue: #5BB6E8;
  --accent-pink: #E8A4C4;
  --accent-yellow: #F4C77B;
  --accent-red: #E87B7B;
  --accent-green: #A8C957;
  --accent-purple: #B8A4D4;
  --text: #2c3e50;
  --muted: #6b7280;
  --bg: #fdfdfd;
  --bg-soft: #f6f9ff;
  --shadow: 0 10px 40px rgba(26,61,124,0.08);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
section { padding: 100px 8%; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  font-weight: 600; transition: all .3s ease;
  cursor: pointer; border: none; font-size: 15px;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(26,61,124,.3); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-outline-white { border: 2px solid #fff; color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--primary); }

/* === NAVBAR === */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 8%;
}
.logo { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--primary); }
.logo img { width: 50px; height: 50px; }
.logo span { font-size: 18px; line-height: 1.1; display: flex; flex-direction: column; }
.logo small { font-size: 13px; color: var(--muted); font-weight: 500; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 500; transition: color .3s; position: relative; }
.nav-links a:hover { color: var(--primary); }
.btn-donate {
  background: var(--accent-red); color: #fff !important;
  padding: 10px 22px; border-radius: 50px;
}
.btn-donate:hover { background: #d65f5f; }
.hamburger { display: none; background: none; border: none; font-size: 24px; color: var(--primary); cursor: pointer; }

/* === HERO === */
.hero {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px;
  align-items: center;
  background: linear-gradient(135deg, #f6f9ff 0%, #fff5f8 100%);
  padding-top: 60px; padding-bottom: 60px;
}
.tag {
  display: inline-block; background: #fff; padding: 8px 18px;
  border-radius: 50px; font-size: 14px; color: var(--primary);
  font-weight: 600; box-shadow: var(--shadow); margin-bottom: 20px;
}
.hero h1 { font-size: 56px; font-weight: 700; color: var(--primary); line-height: 1.1; margin-bottom: 20px; }
.hero h1 .highlight {
  background: linear-gradient(90deg, var(--accent-red), var(--accent-purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { font-size: 18px; color: var(--muted); margin-bottom: 30px; max-width: 540px; }
.hero-btns { display: flex; gap: 15px; margin-bottom: 50px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 50px; }
.hero-stats h3 { font-size: 36px; color: var(--primary); }
.hero-stats p { color: var(--muted); font-size: 14px; margin: 0; }
.hero-image img {
  width: 100%; max-width: 500px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* === SECTION HEADER === */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block; background: var(--bg-soft); color: var(--primary);
  padding: 6px 18px; border-radius: 50px; font-size: 13px;
  font-weight: 600; margin-bottom: 15px; letter-spacing: 1px; text-transform: uppercase;
}
.section-header h2 { font-size: 42px; color: var(--primary); margin-bottom: 15px; }
.section-header p { color: var(--muted); font-size: 17px; }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 30px; }
.about-card {
  background: #fff; padding: 40px 30px; border-radius: 20px;
  box-shadow: var(--shadow); transition: all .3s; text-align: center;
}
.about-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(26,61,124,.12); }
.icon-box {
  width: 70px; height: 70px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px; color: #fff;
}
.bg-blue { background: var(--accent-blue); }
.bg-pink { background: var(--accent-pink); }
.bg-green { background: var(--accent-green); }
.about-card h3 { color: var(--primary); margin-bottom: 12px; font-size: 22px; }
.about-card p { color: var(--muted); }

/* === SERVICES === */
.services { background: var(--bg-soft); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 25px; }
.service-card {
  background: #fff; padding: 35px 28px; border-radius: 18px;
  border-top: 5px solid var(--c, var(--primary));
  transition: all .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,.08); }
.service-card i { font-size: 36px; color: var(--c); margin-bottom: 18px; }
.service-card h3 { color: var(--primary); margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 15px; }

/* === EVENTS === */
.events-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 25px; }
.event-card {
  display: flex; gap: 20px; background: #fff;
  padding: 25px; border-radius: 18px; box-shadow: var(--shadow);
  transition: all .3s;
}
.event-card:hover { transform: translateY(-5px); }
.event-date {
  background: linear-gradient(135deg,var(--primary),var(--accent-blue));
  color: #fff; padding: 18px 22px; border-radius: 14px;
  text-align: center; font-weight: 600; font-size: 13px;
  height: fit-content;
}
.event-date span { display: block; font-size: 28px; font-weight: 700; }
.event-info h3 { color: var(--primary); margin-bottom: 10px; font-size: 19px; }
.event-info p { color: var(--muted); font-size: 14px; margin-bottom: 4px; }
.event-info p i { color: var(--accent-red); margin-right: 6px; }
.event-info a { color: var(--primary); font-weight: 600; font-size: 14px; margin-top: 8px; display: inline-block; }

/* === STORIES === */
.stories { background: var(--bg-soft); }
.stories-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 30px; }
.story-card {
  background: #fff; padding: 35px; border-radius: 20px;
  box-shadow: var(--shadow); position: relative;
}
.story-card::before {
  content: '"'; position: absolute; top: 10px; left: 25px;
  font-size: 70px; color: var(--accent-pink); font-family: 'Lora',serif; line-height: 1;
}
.story-card p { font-style: italic; color: var(--text); margin: 25px 0 20px; font-family: 'Lora',serif; }
.story-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 20px;
}
.story-author h4 { color: var(--primary); font-size: 16px; }
.story-author small { color: var(--muted); }

/* === CTA === */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, #2d5aa8 100%);
  color: #fff; text-align: center;
  border-radius: 30px; margin: 60px 8%; padding: 80px 40px;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px; background: rgba(255,255,255,.05); border-radius: 50%;
}
.cta h2 { font-size: 38px; margin-bottom: 15px; }
.cta p { font-size: 17px; max-width: 600px; margin: 0 auto 30px; opacity: .9; }
.cta-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* === CONTACT === */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; max-width: 1100px; margin: 0 auto; }
.info-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px; background: var(--bg-soft); border-radius: 14px; margin-bottom: 18px;
}
.info-item i {
  width: 45px; height: 45px; background: var(--primary); color: #fff;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-item h4 { color: var(--primary); margin-bottom: 4px; }
.info-item p { color: var(--muted); }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.socials a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea {
  padding: 14px 18px; border: 2px solid #e5eaf3; border-radius: 12px;
  font-family: inherit; font-size: 15px; transition: border .3s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); }

/* === FOOTER === */
footer { background: #0f2547; color: #cdd6e4; padding: 70px 8% 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
footer .logo span { color: #fff; }
footer .logo small { color: #8da0c0; }
footer p { color: #8da0c0; margin-top: 15px; font-size: 14px; }
footer h4 { color: #fff; margin-bottom: 18px; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: #8da0c0; transition: color .3s; font-size: 14px; }
footer ul li a:hover { color: var(--accent-yellow); }
.newsletter { display: flex; margin-top: 12px; }
.newsletter input {
  flex: 1; padding: 12px; border: none; border-radius: 10px 0 0 10px;
  background: #1a3052; color: #fff;
}
.newsletter input::placeholder { color: #6b7d99; }
.newsletter button {
  padding: 0 18px; background: var(--accent-red); color: #fff;
  border: none; border-radius: 0 10px 10px 0; cursor: pointer;
}
.footer-bottom {
  text-align: center; padding-top: 25px;
  border-top: 1px solid #1a3052; color: #6b7d99; font-size: 13px;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 40px; }
  .hero-stats { justify-content: center; gap: 30px; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 300px; margin: 0 auto; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: fixed; top: 75px; right: -100%;
    flex-direction: column; background: #fff; width: 75%; height: 100vh;
    padding: 30px; gap: 20px; transition: right .3s;
    box-shadow: -10px 0 30px rgba(0,0,0,.1);
  }
  .nav-links.active { right: 0; }
  .hamburger { display: block; }
  .section-header h2 { font-size: 32px; }
  section { padding: 70px 6%; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .cta h2 { font-size: 26px; }
  .hero-btns { justify-content: center; }
}