/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #c93437;
  --navy: #1d2e6e;
  --navy-light: #e8ebf7;
  --pink: #e87080;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* ===== HEADER ===== */
header {
  background: #fff;
  padding: 10px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img { height: 65px; width: auto; }

nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s;
}

nav a:hover, nav a.active { color: var(--red); }

.btn-donate {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-donate:hover { background: #152050; }

/* ===== HERO ===== */
.hero { width: 100%; line-height: 0; overflow: hidden; }
.hero img {
  width: 100%;
  max-height: 90vh;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ===== PAGE BANNER (inner pages) ===== */
.page-banner {
  position: relative;
  height: 190px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-shape {
  position: absolute;
  top: -25px;
  bottom: -25px;
  transform: skewX(-10deg);
}

.shape-purple { background: #c9c0e0; left: -80px; width: 55%; z-index: 1; }
.shape-teal   { background: #aad5cb; left: 28%; width: 50%; z-index: 2; }
.shape-yellow { background: #e8d9a0; right: -80px; width: 42%; z-index: 3; }

.banner-title {
  position: relative;
  z-index: 10;
  color: var(--red);
  font-size: 38px;
  font-weight: 700;
  font-style: italic;
}

/* ===== SHARED SECTION STYLES ===== */
.section { padding: 30px 10%; }

.section-title {
  color: var(--red);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-underline {
  width: 58px;
  height: 3px;
  background: var(--navy);
  margin-bottom: 24px;
}

.text-justify {
  text-align: justify;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
  color: #444;
}

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: #152050; }

/* ===== WELCOME (HOME) ===== */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.welcome-img img { max-width: 100%; height: auto; display: block; }

/* ===== FACILITIES (HOME) ===== */
.facilities-section { padding: 0 10% 35px; }

.facilities-heading {
  text-align: center;
  color: var(--red);
  font-size: 28px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 22px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.facility-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.facility-card p {
  text-align: center;
  font-size: 13.5px;
  color: #555;
  margin-top: 14px;
  padding: 0 6px;
  line-height: 1.6;
}

/* ===== OUR SERVICES (HOME) ===== */
.services-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.services-home-grid .services-img img { max-width: 100%; height: auto; display: block; }

/* ===== BOARD OF TRUSTEES ===== */
.trustees-section {
  padding: 35px 10% 40px;
  text-align: center;
}

.trustees-title {
  color: var(--red);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.trustees-underline {
  width: 58px;
  height: 3px;
  background: var(--navy);
  margin: 0 auto 36px;
}

.trustees-row {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.trustee-card { width: 180px; text-align: center; }

.trustee-card img {
  width: 180px;
  height: 222px;
  object-fit: cover;
  display: block;
}

.trustee-card h4 {
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.trustee-card p {
  font-size: 12px;
  color: #666;
  margin-top: 3px;
  line-height: 1.4;
}

/* ===== DONATE NOW ===== */
.donate-section {
  background: var(--navy-light);
  padding: 50px 10%;
  text-align: center;
}

.donate-section h2 {
  color: var(--red);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.donate-underline {
  width: 80px;
  height: 3px;
  background: var(--navy);
  margin: 0 auto 22px;
}

.donate-section p {
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

/* ===== FOOTER ===== */
footer {
  background: #fff;
  padding: 50px 10% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo img { height: 85px; width: auto; }

.footer-links h3, .footer-contact-col h3 {
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links ul { list-style: none; }

.footer-links ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}

.footer-links ul li::before { content: '✓ '; }

.footer-links ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--red); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 14px;
  color: #555;
}
.footer-contact-item i { margin-top: 2px; width: 16px; flex-shrink: 0; }

.stay-connected { margin-top: 18px; }

.stay-connected p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #555;
  margin-bottom: 10px;
}

.social-icons { display: flex; gap: 8px; }

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 17px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.social-icon:hover { opacity: 0.85; }
.social-icon.fb  { background: #1877f2; }
.social-icon.ig  { background: #c13584; }

.footer-bottom {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 14px 10%;
  font-size: 13px;
  margin: 0 -10%;
}

/* ===== ABOUT PAGE ===== */
.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 50px;
  align-items: start;
}

.about-photo-box { text-align: center; }

.about-photo-box img {
  width: 210px;
  height: 260px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.about-photo-box .photo-name {
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  color: #333;
}

.about-photo-box .photo-role {
  font-size: 13px;
  color: #666;
}

.about-sig { font-size: 20px; font-weight: 700; margin-top: 18px; }
.about-sig-title { font-size: 13px; font-weight: 700; margin-top: 4px; }
.about-sig-org   { font-size: 12px; font-weight: 700; margin-top: 2px; }

/* Vision Mission */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 10%;
}

.vm-box { padding: 45px 8%; color: white; }
.vm-box.vision  { background: #e87080; }
.vm-box.mission { background: var(--navy); }

.vm-box h2 { font-size: 26px; margin-bottom: 22px; }

.vm-box ul { list-style: none; padding: 0; }
.vm-box ul li { margin-bottom: 13px; font-size: 14.5px; line-height: 1.65; }

/* Our Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 50px;
  align-items: start;
}

/* ===== SERVICES PAGE ===== */
.services-full-text {
  font-size: 15px;
  line-height: 1.9;
  text-align: justify;
  color: #444;
}

/* ===== EVENTS PAGE ===== */
.reports-section { padding: 50px 10%; text-align: center; }

.report-icon { font-size: 64px; color: var(--red); margin-bottom: 14px; }
.reports-label { font-size: 20px; font-weight: 700; color: #333; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  padding: 40px 10%;
}

.contact-info h2 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 34px;
}

.contact-icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p  { font-size: 14px; color: #555; }

.contact-form-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 40px;
}

.form-tag {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-headline {
  color: var(--navy);
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 7px;
}

.form-note { font-size: 12px; color: #666; margin-bottom: 20px; }

.form-input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--navy); }
textarea.form-input { height: 130px; resize: vertical; }

.captcha-mock {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 18px;
  background: #f9f9f9;
  font-size: 13px;
}

.captcha-mock input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; }

.captcha-logo {
  margin-left: auto;
  text-align: right;
  font-size: 10px;
  color: #aaa;
  line-height: 1.3;
}

.captcha-logo span { display: block; font-size: 12px; font-weight: 700; color: #555; }
