:root {
      --red: #C0001E;
      --red-dark: #8B0015;
      --red-light: #E8001F;
      --gold: #D4A017;
      --gold-light: #F0C040;
      --green: #006B3C;
      --bg: #FDF6F0;
      --white: #FFFFFF;
      --gray: #F4F0EC;
      --text: #1A1A1A;
      --muted: #666;
      --card-shadow: 0 4px 24px rgba(192,0,30,0.08);
    }
* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* ---- HEADER ---- */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(192,0,30,0.10);
  position: sticky; top:0; z-index:100;
}
.header-inner {
  max-width:1100px; margin:auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 20px;
}
.logo {
  display:flex; align-items:center; gap:10px; text-decoration:none;
}
.logo-icon {
  width:46px; height:46px; border-radius:12px;
  background: var(--red);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; font-weight:900; color:white;
  letter-spacing:-1px; font-family:'Playfair Display',serif;
  box-shadow: 0 2px 8px rgba(192,0,30,0.3);
}
.logo-text { line-height:1.1; }
.logo-text .top { font-size:12px; font-weight:700; color:var(--red); letter-spacing:2px; text-transform:uppercase; }
.logo-text .bottom { font-size:15px; font-weight:800; color:var(--text); }
nav { display:flex; align-items:center; gap:24px; }
nav a {
  text-decoration:none; font-weight:700; font-size:14px; color:var(--text);
  transition:color .2s; padding:6px 0; border-bottom:2px solid transparent;
}
nav a:hover, nav a.active { color:var(--red); border-color:var(--red); }
.btn-header {
  background:var(--red); color:white; border:none; border-radius:25px;
  padding:9px 22px; font-size:14px; font-weight:800; cursor:pointer;
  transition:background .2s, transform .15s; text-decoration:none;
  display:inline-block;
}
.btn-header:hover { background:var(--red-dark); transform:scale(1.04); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; border:none; background:none; padding:4px; }
.hamburger span { width:25px; height:2.5px; background:var(--text); border-radius:2px; transition:.3s; display:block; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, #8B0015 0%, #C0001E 50%, #D4001E 100%);
  position:relative; overflow:hidden;
  padding: 60px 20px 70px;
}
.hero::before {
  content:'';
  position:absolute; inset:0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width:1100px; margin:auto;
  display:flex; align-items:center; gap:50px;
  position:relative;
}
.hero-text { flex:1; color:white; }
.hero-tag {
  display:inline-block;
  background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.3);
  color:white; font-size:12px; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; padding:5px 14px; border-radius:20px; margin-bottom:18px;
}
.hero-text h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(28px,5vw,52px); font-weight:900;
  line-height:1.1; margin-bottom:16px;
}
.hero-text h1 span { color:var(--gold-light); }
.hero-text p { font-size:16px; opacity:.9; line-height:1.7; margin-bottom:30px; max-width:460px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.btn-primary {
  background:white; color:var(--red); border:none; border-radius:30px;
  padding:14px 32px; font-size:15px; font-weight:800; cursor:pointer;
  transition:all .2s; text-decoration:none; display:inline-block;
  box-shadow:0 4px 16px rgba(0,0,0,.15);
}
.btn-primary:hover { background:var(--gold-light); transform:translateY(-2px); }
.btn-outline {
  background:transparent; color:white; border:2px solid rgba(255,255,255,.5);
  border-radius:30px; padding:12px 28px; font-size:15px; font-weight:700;
  cursor:pointer; transition:all .2s; text-decoration:none; display:inline-block;
}
.btn-outline:hover { border-color:white; background:rgba(255,255,255,.1); }
.hero-image {
  flex:0 0 320px; position:relative;
}
.hero-card {
  background:white; border-radius:20px; padding:24px;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}
.hero-card .amount-big {
  font-family:'Playfair Display',serif;
  font-size:28px; font-weight:900; color:var(--red); margin-bottom:4px;
}
.hero-card .amount-sub { font-size:13px; color:var(--muted); margin-bottom:14px; }
.progress-bar { background:#eee; border-radius:10px; height:10px; overflow:hidden; margin-bottom:6px; }
.progress-fill {
  height:100%; border-radius:10px;
  background:linear-gradient(90deg, var(--red), var(--gold));
  transition:width 1.5s ease;
  width:0%;
}
.progress-labels { display:flex; justify-content:space-between; font-size:12px; color:var(--muted); margin-bottom:16px; }
.btn-don {
  width:100%; background:var(--red); color:white; border:none; border-radius:12px;
  padding:13px; font-size:15px; font-weight:800; cursor:pointer;
  transition: background .2s; letter-spacing:.5px;
}
.btn-don:hover { background:var(--red-dark); }

/* ---- STATS ---- */
.stats-bar {
  background:white;
  box-shadow:0 4px 20px rgba(0,0,0,.06);
}
.stats-inner {
  max-width:1100px; margin:auto;
  display:grid; grid-template-columns:repeat(4,1fr);
  text-align:center;
}
.stat-item {
  padding:28px 16px; border-right:1px solid #eee;
}
.stat-item:last-child { border-right:none; }
.stat-num {
  font-family:'Playfair Display',serif;
  font-size:28px; font-weight:900; color:var(--red); margin-bottom:4px;
}
.stat-label { font-size:13px; color:var(--muted); font-weight:600; }

/* ---- SECTIONS ---- */
.section { padding:60px 20px; }
.section-inner { max-width:1100px; margin:auto; }
.section-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(22px,4vw,32px); font-weight:900; color:var(--text);
  margin-bottom:8px;
}
.section-sub { color:var(--muted); font-size:15px; margin-bottom:36px; }

/* ---- ABOUT ---- */
.about-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center;
}
.about-text p { font-size:15px; line-height:1.8; color:#444; margin-bottom:16px; }
.about-image {
  background:linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius:20px; padding:32px; color:white; text-align:center;
  box-shadow:var(--card-shadow);
}
.about-image .icon { font-size:64px; margin-bottom:16px; }
.about-image h3 { font-family:'Playfair Display',serif; font-size:22px; margin-bottom:10px; }
.about-image p { opacity:.85; font-size:14px; }

/* ---- PAYMENT ---- */
.payment-section { background:var(--gray); }
.payment-methods {
  display:grid; grid-template-columns:repeat(auto-fit, minmax(240px,1fr)); gap:20px;
  margin-bottom:40px;
}
.payment-card {
  background:white; border-radius:16px; padding:28px 24px;
  box-shadow:var(--card-shadow); text-align:center;
  transition:transform .2s, box-shadow .2s; cursor:pointer;
  border:2px solid transparent;
}
.payment-card:hover, .payment-card.selected {
  transform:translateY(-4px);
  box-shadow:0 8px 30px rgba(192,0,30,.15);
  border-color:var(--red);
}
.payment-icon { font-size:44px; margin-bottom:12px; }
.payment-card h3 { font-size:16px; font-weight:800; margin-bottom:6px; }
.payment-card p { font-size:13px; color:var(--muted); }
.badge {
  display:inline-block; background:var(--red); color:white;
  font-size:10px; font-weight:800; padding:2px 8px; border-radius:20px;
  margin-top:8px; letter-spacing:.5px; text-transform:uppercase;
}

/* ---- DONATION FORM ---- */
.donation-form-wrap {
  background:white; border-radius:20px; padding:36px;
  box-shadow:var(--card-shadow); max-width:640px; margin:auto;
}
.donation-form-wrap h3 {
    font-family:'Playfair Display',serif; font-size:22px; margin-bottom:6px;
}
.donation-form-wrap .sub { color:var(--muted); font-size:14px; margin-bottom:24px; }
.amounts-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:18px;
}
.amount-btn {
  border:2px solid #ddd; background:white; border-radius:10px;
  padding:12px 8px; font-size:14px; font-weight:700; cursor:pointer;
  transition:all .15s; font-family:'Nunito',sans-serif;
}
.amount-btn:hover, .amount-btn.active {
  border-color:var(--red); background:var(--red); color:white;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
.form-group label { font-size:13px; font-weight:700; color:var(--text); }
.form-group input, .form-group select {
  border:1.5px solid #ddd; border-radius:10px; padding:12px 14px;
  font-size:14px; font-family:'Nunito',sans-serif; transition:border .2s;
  background:white; color:var(--text);
}
.form-group input:focus, .form-group select:focus {
  outline:none; border-color:var(--red);
}
.method-select-group { margin-bottom:18px; }
.method-select-group label { font-size:13px; font-weight:700; display:block; margin-bottom:8px; }
.method-btns { display:flex; flex-wrap:wrap; gap:10px; }
.method-btn {
  border:1.5px solid #ddd; background:white; border-radius:8px;
  padding:8px 16px; font-size:13px; font-weight:700; cursor:pointer;
  display:flex; align-items:center; gap:6px; transition:all .15s;
  font-family:'Nunito',sans-serif;
}
.method-btn:hover, .method-btn.active { border-color:var(--red); background:#FFF5F7; color:var(--red); }
.btn-submit {
  width:100%; background:linear-gradient(135deg, var(--red), var(--red-dark));
  color:white; border:none; border-radius:14px; padding:15px;
  font-size:16px; font-weight:800; cursor:pointer; transition:all .2s;
  font-family:'Nunito',sans-serif; letter-spacing:.5px;
  box-shadow:0 4px 16px rgba(192,0,30,.3);
}
.btn-submit:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(192,0,30,.4); }
.secure-note { text-align:center; margin-top:12px; font-size:12px; color:var(--muted); }

/* ---- PROJECTS ---- */
.projects-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px;
}
.project-card {
  background:white; border-radius:16px; overflow:hidden;
  box-shadow:var(--card-shadow); transition:transform .2s;
}
.project-card:hover { transform:translateY(-4px); }
.project-img {
  height:160px; display:flex; align-items:center; justify-content:center;
  font-size:56px; position:relative; overflow:hidden;
}
.project-img-1 { background:linear-gradient(135deg,#C0001E,#8B0015); }
.project-img-2 { background:linear-gradient(135deg,#006B3C,#004D2A); }
.project-img-3 { background:linear-gradient(135deg,#D4A017,#8B6500); }
.project-img-4 { background:linear-gradient(135deg,#1A237E,#0D47A1); }
.project-img-5 { background:linear-gradient(135deg,#4A148C,#7B1FA2); }
.project-body { padding:20px; }
.project-body h3 { font-size:16px; font-weight:800; margin-bottom:4px; }
.project-body .collected { font-size:13px; color:var(--muted); margin-bottom:10px; }
.project-body .collected strong { color:var(--red); }
.progress-bar-sm { background:#eee; border-radius:8px; height:7px; overflow:hidden; margin-bottom:14px; }
.progress-fill-sm { height:100%; border-radius:8px; background:linear-gradient(90deg,var(--red),var(--gold)); }
.btn-don-sm {
  width:100%; background:var(--red); color:white; border:none; border-radius:8px;
  padding:10px; font-size:13px; font-weight:800; cursor:pointer; transition:background .2s;
}
.btn-don-sm:hover { background:var(--red-dark); }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background:var(--gray); }
.testimonials-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; }
.testimonial-card {
  background:white; border-radius:16px; padding:24px;
  box-shadow:var(--card-shadow); position:relative;
}
.testimonial-card::before {
content:'"'; font-family:'Playfair Display',serif; font-size:80px;
  color:var(--red); opacity:.1; position:absolute; top:-10px; left:16px;
  line-height:1;
}
.t-header { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.t-avatar {
  width:46px; height:46px; border-radius:50%;
  background:linear-gradient(135deg,var(--red),var(--red-dark));
  display:flex; align-items:center; justify-content:center;
  color:white; font-weight:800; font-size:18px; flex-shrink:0;
}
.t-info h4 { font-size:14px; font-weight:800; }
.t-info p { font-size:12px; color:var(--muted); }
.stars { color:var(--gold); font-size:13px; margin-bottom:10px; }
.testimonial-card p { font-size:14px; line-height:1.7; color:#555; }

/* ---- FOOTER ---- */
footer {
  background:linear-gradient(135deg,#1A0005,#2D0010);
  color:white; padding:50px 20px 20px;
}
.footer-inner {
  max-width:1100px; margin:auto;
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px;
  margin-bottom:40px;
}
.footer-brand .logo-text .top { color:var(--gold-light); }
.footer-brand .logo-text .bottom { color:white; }
.footer-brand p { margin-top:14px; font-size:13px; opacity:.7; line-height:1.7; }
footer h4 { font-size:14px; font-weight:800; margin-bottom:14px; color:var(--gold-light); letter-spacing:1px; text-transform:uppercase; }
footer ul { list-style:none; }
footer ul li { margin-bottom:10px; }
footer ul li a { color:rgba(255,255,255,.7); text-decoration:none; font-size:14px; transition:color .2s; }
footer ul li a:hover { color:white; }
.footer-bottom {
  max-width:1100px; margin:auto;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:20px; display:flex; justify-content:space-between;
  align-items:center; font-size:13px; opacity:.6; flex-wrap:wrap; gap:10px;
}

/* ---- MODAL ---- */
.modal-overlay {
  display:none; position:fixed; inset:0; background:rgba(0,0,0,.6);
  z-index:200; align-items:center; justify-content:center; padding:20px;
}
.modal-overlay.open { display:flex; }
.modal {
  background:white; border-radius:20px; padding:36px;
  max-width:500px; width:100%; position:relative;
  animation:modalIn .3s ease;
}
@keyframes modalIn { from{transform:scale(.9);opacity:0} to{transform:scale(1);opacity:1} }
.modal-close {
  position:absolute; top:16px; right:16px;
  background:none; border:none; font-size:22px; cursor:pointer; color:var(--muted);
}
.modal h2 { font-family:'Playfair Display',serif; font-size:24px; margin-bottom:6px; }
.modal .sub { color:var(--muted); font-size:14px; margin-bottom:24px; }
.success-msg {
  display:none; text-align:center; padding:20px;
}
.success-msg .checkmark { font-size:64px; margin-bottom:16px; }
.success-msg h3 { font-family:'Playfair Display',serif; font-size:22px; color:var(--green); margin-bottom:8px; }
.success-msg p { color:var(--muted); font-size:14px; }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display:none; flex-direction:column; gap:0;
  background:white; box-shadow:0 4px 16px rgba(0,0,0,.1);
  position:absolute; top:100%; left:0; right:0; z-index:99;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  padding:14px 20px; font-weight:700; font-size:15px; color:var(--text);
  text-decoration:none; border-bottom:1px solid #eee; transition:background .15s;
}
.mobile-menu a:hover { background:var(--gray); color:var(--red); }

/* ---- RESPONSIVE ---- */
@media(max-width:900px) {
  .hero-inner { flex-direction:column; text-align:center; gap:30px; }
  .hero-image { flex:auto; width:100%; max-width:380px; }
  .about-grid { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr 1fr; }
  .stats-inner { grid-template-columns:repeat(2,1fr); }
  nav { display:none; }
  .hamburger { display:flex; }
}
@media(max-width:600px) {
  .form-row { grid-template-columns:1fr; }
  .amounts-grid { grid-template-columns:repeat(2,1fr); }
  .footer-inner { grid-template-columns:1fr; gap:24px; }
  .stats-inner { grid-template-columns:repeat(2,1fr); }
  .stat-item { padding:20px 10px; }
  .footer-bottom { flex-direction:column; text-align:center; }
}

/* Scroll animation */
.fade-up { opacity:0; transform:translateY(30px); transition:opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }