:root {
  --brand-red: #D80000;
  --brand-red-hover: #b00000;
  --brand-green: #00A651;
  --brand-green-hover: #008c42;
  --brand-yellow: #F4DD00;
  --brand-blue: #12AEE4;
  --charcoal: #343132;
  --charcoal-light: #4a4849;
  --white: #FFFFFF;
  --light-grey: #F5F5F5;
  --mid-grey: #e0e0e0;
  --text-dark: #343132;
  --text-muted: #666;
  --accent: #D80000;
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --radius: 6px;
  --radius-lg: 12px;
  --max-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand-red); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brand-red-hover); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ============ TOP ACCENT BAR ============ */
.top-bar {
  height: 5px;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-red) 25%, var(--brand-blue) 25%, var(--brand-blue) 50%, var(--brand-green) 50%, var(--brand-green) 75%, var(--brand-yellow) 75%, var(--brand-yellow) 100%);
}

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn::after { display: none; }

.btn-red {
  background: var(--brand-red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--brand-red-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 0, 0, 0.35);
}

.btn-green {
  background: var(--brand-green);
  color: var(--white);
}
.btn-green:hover {
  background: var(--brand-green-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 166, 81, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent;
  color: var(--brand-red);
  border: 2px solid var(--brand-red);
}
.btn-outline-red:hover {
  background: var(--brand-red);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--charcoal);
}
.btn-white:hover {
  background: var(--brand-red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 8px 20px; font-size: 11px; letter-spacing: 0.8px; }
.btn-lg { padding: 16px 40px; font-size: 15px; }

/* ============ HEADER / NAV ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.logo-text { display: none; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--charcoal);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--brand-red); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--brand-red);
}
.nav-cta { display: flex; align-items: center; gap: 8px; margin-left: 15px; }
.mobile-menu-toggle { display: none; background: none; border: none; color: var(--charcoal); font-size: 28px; cursor: pointer; padding: 5px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  background: var(--charcoal);
  overflow: hidden;
  padding: 60px 20px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(52, 49, 50, 0.88) 0%, rgba(52, 49, 50, 0.55) 100%);
  z-index: 1;
}
.hero-bg-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  color: var(--brand-yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 600;
}
.hero h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--white);
}
.hero h1 .highlight-red { color: var(--brand-red); }
.hero h1 .highlight-green { color: var(--brand-green); }
.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
  max-width: 550px;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* ============ SECTION STYLES ============ */
.section { padding: 80px 20px; }
.section-white { background: var(--white); }
.section-light { background: var(--light-grey); }
.section-charcoal { background: var(--charcoal); color: var(--white); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--charcoal);
}
.section-header h2 .text-red { color: var(--brand-red); }
.section-header h2 .text-green { color: var(--brand-green); }
.section-header h2 .text-blue { color: var(--brand-blue); }
.section-header p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--light-grey);
  border-radius: 3px;
  font-size: 11px;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* ============ GRIDS ============ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

/* ============ IMAGE PLACEHOLDER STYLES ============ */
.img-placeholder {
  width: 100%;
  border-radius: var(--radius);
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  overflow: hidden;
}
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* ============ CARDS ============ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-image { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 25px; }
.card h3 { font-size: 18px; margin-bottom: 10px; color: var(--charcoal); }
.card p { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; }
.card-link { color: var(--brand-red); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.card-link:hover { color: var(--brand-red-hover); }

/* Program Card */
.program-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.program-card-image { height: 220px; background-size: cover; background-position: center; position: relative; }
.program-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(52, 49, 50, 0.9));
}
.program-card-overlay h3 { color: var(--white); font-size: 20px; }
.program-card-body { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.program-card-body p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; flex: 1; }

/* Event Card */
.event-card {
  display: flex;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: var(--transition);
}
.event-card:hover { transform: translateX(5px); box-shadow: var(--shadow-lg); }
.event-date-box {
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  padding: 20px;
  text-align: center;
  color: var(--white);
}
.event-date-box .month { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.event-date-box .day { font-size: 36px; font-weight: 800; line-height: 1; }
.event-date-box .year { font-size: 12px; opacity: 0.8; }
.event-info { padding: 20px 25px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.event-info h3 { font-size: 18px; margin-bottom: 6px; color: var(--charcoal); }
.event-info .event-meta { color: var(--text-muted); font-size: 13px; margin-bottom: 10px; }
.event-info p { color: var(--text-muted); font-size: 14px; margin-bottom: 12px; }

/* ============ IMPACT / STATS ============ */
.impact-section {
  background: var(--charcoal);
  padding: 60px 20px;
  color: var(--white);
  text-align: center;
}
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: var(--max-width); margin: 0 auto; }
.impact-item { padding: 30px 20px; }
.impact-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--brand-red);
  line-height: 1;
  margin-bottom: 8px;
}
.impact-number .suffix { font-size: 28px; }
.impact-label { font-size: 14px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--light-grey); padding: 80px 20px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: var(--max-width); margin: 0 auto; }
.testimonial-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 60px;
  line-height: 1;
  color: var(--brand-red);
  opacity: 0.15;
  font-family: Georgia, serif;
}
.testimonial-card p { color: var(--text-muted); font-size: 14px; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-red);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.testimonial-author-info strong { display: block; font-size: 14px; color: var(--charcoal); }
.testimonial-author-info span { font-size: 12px; color: var(--text-muted); }

/* ============ TEAM ============ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-card-image { height: 260px; background-size: cover; background-position: center; }
.team-card-body { padding: 20px; }
.team-card-body h4 { font-size: 16px; color: var(--charcoal); margin-bottom: 4px; }
.team-card-body p { font-size: 13px; color: var(--text-muted); }

/* ============ MISSION ============ */
.mission-section { text-align: center; padding: 80px 20px; background: var(--light-grey); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: var(--max-width); margin: 40px auto 0; }
.mission-item {
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.mission-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.mission-item .icon { font-size: 40px; margin-bottom: 15px; display: block; }
.mission-item h3 { font-size: 18px; margin-bottom: 10px; color: var(--brand-red); text-transform: uppercase; letter-spacing: 1px; }
.mission-item p { color: var(--text-muted); font-size: 14px; }

.values-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 20px; }
.value-tag {
  padding: 8px 20px;
  background: var(--light-grey);
  border-radius: 20px;
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 600;
}

/* ============ PARTNERS ============ */
.partners-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 30px; margin-top: 40px; }
.partner-logo {
  height: 50px;
  width: auto;
  opacity: 0.65;
  transition: var(--transition);
  filter: grayscale(30%);
}
.partner-logo:hover { opacity: 1; filter: grayscale(0%); }

/* ============ BOOKS / RESOURCES ============ */
.books-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }
.book-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.book-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.book-card img { width: 100%; height: 240px; object-fit: cover; }
.book-card-body { padding: 15px; }
.book-card-body h4 { font-size: 13px; margin-bottom: 5px; color: var(--charcoal); }
.book-card-body .price { font-size: 13px; color: var(--brand-red); font-weight: 700; }
.stock-badge { display: inline-block; padding: 3px 10px; border-radius: 10px; font-size: 10px; margin-top: 8px; font-weight: 600; }
.stock-out { background: #fce4ec; color: var(--brand-red); }
.stock-in { background: #e8f5e9; color: var(--brand-green); }
.stock-waitlist { background: #fff8e1; color: #f57f17; }
.stock-available { background: #e8f5e9; color: var(--brand-green); }
.stock-coming { background: #e3f2fd; color: #1565c0; }

/* ============ VOLUNTEER FORM ============ */
.volunteer-section { background: var(--light-grey); padding: 60px 20px; }
.volunteer-form { max-width: 600px; margin: 30px auto 0; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 600; color: var(--charcoal); }
.form-group label .required { color: var(--brand-red); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 2px solid var(--mid-grey);
  border-radius: var(--radius);
  color: var(--charcoal);
  font-family: var(--font-main);
  font-size: 14px;
  transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--brand-red); box-shadow: 0 0 0 3px rgba(216, 0, 0, 0.08); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.radio-group { display: flex; gap: 20px; padding-top: 8px; }
.radio-group label { display: flex; align-items: center; gap: 6px; font-size: 14px; cursor: pointer; }
.radio-group input[type="radio"] { accent-color: var(--brand-red); }

/* ============ NEWSLETTER ============ */
.newsletter {
  background: var(--charcoal);
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
}
.newsletter h3 { font-size: 24px; margin-bottom: 8px; }
.newsletter p { color: rgba(255,255,255,0.7); margin-bottom: 25px; font-size: 14px; }
.newsletter-form { display: flex; max-width: 500px; margin: 0 auto; gap: 10px; }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 4px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 14px;
}
.newsletter-form input:focus { outline: none; background: rgba(255,255,255,0.15); }
.newsletter-form button {
  padding: 14px 30px;
  border-radius: 4px;
  border: none;
  background: var(--brand-red);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}
.newsletter-form button:hover { background: var(--brand-red-hover); }

/* ============ FOOTER ============ */
.footer {
  background: var(--charcoal);
  padding: 60px 20px 30px;
  color: rgba(255,255,255,0.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto 40px;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 15px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--brand-red); transform: translateY(-2px); }
.footer-social img, .footer-social svg { width: 18px; height: 18px; }
.footer h4 { font-size: 16px; margin-bottom: 20px; color: var(--white); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-links a:hover { color: var(--brand-red); padding-left: 3px; }
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============ PAGE HEADER ============ */
.page-header {
  padding: 60px 20px 50px;
  text-align: center;
  background: var(--charcoal);
  color: var(--white);
}
.page-header h1 { font-size: 44px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
.page-header h1 span { color: var(--brand-red); }
.page-header p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* ============ ABOUT PAGE ============ */
.about-mvv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 40px 0; }
.mvv-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mvv-card .icon { font-size: 48px; margin-bottom: 15px; display: block; }
.mvv-card h3 { color: var(--brand-red); font-size: 22px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.mvv-card p { color: var(--text-muted); font-size: 14px; }

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: block;
  color: inherit;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-image { height: 250px; background-size: cover; background-position: center; }
.blog-card-body { padding: 25px; }
.blog-card-meta { color: var(--text-muted); font-size: 12px; margin-bottom: 10px; }
.blog-card h3 { font-size: 20px; margin-bottom: 10px; line-height: 1.3; color: var(--charcoal); }
.blog-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; }

/* ============ PORTFOLIO ============ */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  display: block;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(52, 49, 50, 0.9));
  color: var(--white);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}
.portfolio-item:hover .portfolio-item-overlay { transform: translateY(0); opacity: 1; }
.portfolio-item-overlay h3 { font-size: 18px; }
.portfolio-item-overlay p { color: rgba(255,255,255,0.7); font-size: 13px; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-list { margin-top: 20px; }
.contact-info-item { display: flex; gap: 15px; margin-bottom: 25px; }
.contact-info-icon {
  width: 50px; height: 50px; min-width: 50px;
  background: var(--light-grey);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon .emoji { font-size: 20px; }
.contact-info-item h4 { font-size: 14px; color: var(--brand-red); margin-bottom: 4px; }
.contact-info-item p { color: var(--text-muted); font-size: 13px; }
.operating-hours {
  background: var(--light-grey);
  padding: 25px;
  border-radius: var(--radius);
  margin-top: 30px;
}
.operating-hours h4 { color: var(--brand-red); margin-bottom: 15px; }
.operating-hours p { color: var(--text-muted); font-size: 13px; margin-bottom: 5px; }

/* ============ AUTH ============ */
.auth-page { display: flex; align-items: center; justify-content: center; min-height: 80vh; padding: 60px 20px; }
.auth-box {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 420px;
}
.auth-box h2 { text-align: center; font-size: 28px; margin-bottom: 8px; color: var(--charcoal); }
.auth-box .subtitle { text-align: center; color: var(--text-muted); margin-bottom: 30px; font-size: 14px; }
.auth-box .form-footer { text-align: center; margin-top: 20px; font-size: 13px; color: var(--text-muted); }
.auth-box .form-footer a { color: var(--brand-red); font-weight: 600; }
.divider { display: flex; align-items: center; gap: 15px; margin: 20px 0; color: var(--text-muted); font-size: 12px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--mid-grey); }

/* ============ DASHBOARD ============ */
.dashboard { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.dashboard-sidebar { background: var(--charcoal); padding: 25px; color: var(--white); }
.dashboard-sidebar .user-info { text-align: center; padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 25px; }
.dashboard-sidebar .avatar { width: 70px; height: 70px; border-radius: 50%; background: var(--brand-red); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 28px; font-weight: 700; }
.dashboard-nav a { display: block; padding: 12px 15px; color: rgba(255,255,255,0.6); border-radius: var(--radius); font-size: 14px; margin-bottom: 5px; }
.dashboard-nav a:hover, .dashboard-nav a.active { background: rgba(255,255,255,0.1); color: var(--brand-red); }
.dashboard-main { padding: 30px; background: var(--light-grey); }
.dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.dashboard-header h2 { font-size: 28px; color: var(--charcoal); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.stat-card { background: var(--white); padding: 25px; border-radius: var(--radius); box-shadow: var(--shadow); }
.stat-card .stat-number { font-size: 32px; font-weight: 800; color: var(--brand-red); }
.stat-card .stat-label { color: var(--text-muted); font-size: 13px; margin-top: 5px; }

/* ============ WAYS TO GIVE ============ */
.give-options { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.give-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.give-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.give-card .icon { font-size: 48px; margin-bottom: 15px; display: block; }
.give-card h3 { font-size: 24px; margin-bottom: 10px; color: var(--charcoal); }
.give-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.banking-details {
  background: var(--light-grey);
  padding: 20px;
  border-radius: var(--radius);
  text-align: left;
  margin-top: 15px;
}
.banking-details p { font-size: 13px; margin-bottom: 5px; color: var(--text-muted); }
.banking-details strong { color: var(--charcoal); }

/* ============ PROGRAM DETAIL ============ */
.program-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.program-approach {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.program-approach h3 { color: var(--brand-red); font-size: 20px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.approach-item { margin-bottom: 20px; }
.approach-item h4 { font-size: 16px; margin-bottom: 5px; color: var(--charcoal); }
.approach-item p { color: var(--text-muted); font-size: 13px; }
.objectives-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.objective-item {
  background: var(--light-grey);
  padding: 15px;
  border-radius: var(--radius);
  border-left: 3px solid var(--brand-red);
  font-size: 13px;
  color: var(--text-muted);
}
.objective-item strong { color: var(--charcoal); display: block; margin-bottom: 3px; }

/* ============ BLOG POST ============ */
.blog-post { max-width: 800px; margin: 0 auto; }
.blog-post-image { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); margin-bottom: 30px; background: var(--light-grey); background-size: cover; background-position: center; }
.blog-post-meta { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; display: flex; gap: 15px; }
.blog-post h1 { font-size: 32px; margin-bottom: 20px; color: var(--charcoal); }
.blog-post h2 { font-size: 22px; margin: 30px 0 15px; color: var(--charcoal); }
.blog-post p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.blog-post blockquote { border-left: 4px solid var(--brand-red); padding: 15px 20px; margin: 20px 0; background: var(--light-grey); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--charcoal); }
.blog-post ul { padding-left: 20px; margin-bottom: 20px; }
.blog-post ul li { color: var(--text-muted); font-size: 15px; margin-bottom: 10px; list-style: disc; }
.blog-post hr { border: none; border-top: 1px solid var(--mid-grey); margin: 40px 0; }
.blog-post .blog-share { display: flex; gap: 10px; align-items: center; margin-top: 40px; }
.blog-post .blog-share span { font-weight: 600; font-size: 14px; color: var(--charcoal); }

/* ============ EVENT DETAIL ============ */
.event-detail { max-width: 800px; margin: 0 auto; }
.event-detail-header { display: flex; gap: 30px; align-items: flex-start; margin-bottom: 40px; flex-wrap: wrap; }
.event-detail-date { min-width: 140px; background: var(--brand-red); border-radius: var(--radius); padding: 25px; text-align: center; color: var(--white); }
.event-detail-date .month { font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.event-detail-date .day { font-size: 52px; font-weight: 800; line-height: 1; }
.event-detail-date .year { font-size: 14px; opacity: 0.8; }
.event-detail-info { flex: 1; }
.event-detail-info h1 { font-size: 32px; color: var(--charcoal); margin-bottom: 10px; }
.event-detail-info .event-location { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }
.event-detail-body h2 { font-size: 22px; margin: 30px 0 15px; color: var(--charcoal); }
.event-detail-body p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.event-detail-body ul { padding-left: 20px; margin-bottom: 20px; }
.event-detail-body ul li { color: var(--text-muted); font-size: 15px; margin-bottom: 10px; list-style: disc; }
.event-detail-sidebar { background: var(--light-grey); padding: 25px; border-radius: var(--radius); margin-top: 30px; }
.event-detail-sidebar h3 { font-size: 18px; color: var(--charcoal); margin-bottom: 15px; }
.event-detail-sidebar p { color: var(--text-muted); font-size: 13px; margin-bottom: 8px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-red) 0%, #ff1a1a 100%);
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { font-size: 36px; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-white { background: var(--white); color: var(--brand-red); }
.cta-banner .btn-white:hover { background: var(--charcoal); color: var(--white); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-3, .grid-4, .about-mvv, .portfolio-grid, .impact-grid, .testimonials-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
  .nav { display: none; width: 100%; flex-direction: column; padding: 20px 0; gap: 5px; background: var(--white); }
  .nav.open { display: flex; }
  .nav-cta { margin-left: 0; flex-direction: column; width: 100%; }
  .nav-cta .btn { width: 100%; text-align: center; }
  .hero h1 { font-size: 40px; }
  .hero { min-height: 60vh; }
  .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .about-mvv, .portfolio-grid, .impact-grid, .testimonials-grid, .team-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 28px; }
  .event-card { flex-direction: column; }
  .event-date-box { flex-direction: row; min-width: auto; gap: 10px; padding: 12px 20px; }
  .event-date-box .day { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .dashboard { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
  .page-header h1 { font-size: 32px; }
  .form-row, .give-options { grid-template-columns: 1fr; }
  .blog-grid, .mission-grid { grid-template-columns: 1fr; }
  .program-detail-grid { grid-template-columns: 1fr; }
  .objectives-list { grid-template-columns: 1fr; }
  .logo img { height: 44px; }
  .impact-number { font-size: 36px; }
  .impact-number .suffix { font-size: 22px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .stats-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.text-red { color: var(--brand-red); }
.text-green { color: var(--brand-green); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
