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

:root {
  --navy:   #1a3a5c;
  --blue:   #2563a8;
  --light-blue: #3b82c4;
  --gold:   #c8922a;
  --gold-light: #e8b04a;
  --cream:  #f8f5ef;
  --white:  #ffffff;
  --gray:   #5a6472;
  --light-gray: #eef1f5;
  --border: #d1d9e0;
  --text:   #222831;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--light-blue); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  color: var(--navy);
  line-height: 1.3;
}

/* ===== TOP UTILITY BAR ===== */
.top-bar {
  background: var(--navy);
  color: #c8d8ec;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  padding: 6px 0;
}

.top-bar .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.top-bar a { color: #a8c8e8; }
.top-bar a:hover { color: var(--white); text-decoration: none; }

.top-bar .contact-items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar .contact-items span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== HEADER ===== */
.site-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 12px 20px;
}

.site-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-logo {
  flex-shrink: 0;
}

.site-title h1 {
  color: var(--white);
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}

.site-title p {
  color: #a8c8e8;
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
  margin-top: 3px;
}

/* ===== NAVIGATION ===== */
nav.main-nav {
  background: var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

nav.main-nav .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

nav.main-nav ul li { position: relative; }

nav.main-nav ul li a {
  display: block;
  padding: 13px 16px;
  color: var(--navy);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

nav.main-nav ul li a:hover,
nav.main-nav ul li a.active {
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}



.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 13px 16px;
  color: var(--navy);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== HERO BANNER ===== */
.hero {
  background: linear-gradient(160deg, #0d2d4f 0%, #1a3a5c 40%, #2563a8 100%);
  padding: 70px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.hero h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero p {
  color: #c0d8f0;
  font-size: 1.15rem;
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
}

.hero .btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ===== CONTENT WRAPPER ===== */
.content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 1.8rem;
  color: var(--navy);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title p {
  margin-top: 12px;
  color: var(--gray);
  font-family: Arial, sans-serif;
}

/* ===== HOTLINE BANNER ===== */
.hotline-banner {
  background: var(--navy);
  color: var(--white);
  padding: 30px 20px;
}

.hotline-banner .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.hotline-banner h3 {
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.hotline-banner p {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #a8c8e8;
  margin-bottom: 10px;
}

.hotline-phone {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--white);
  font-family: Arial, sans-serif;
}

.hotline-phone a { color: var(--gold-light); }
.hotline-phone a:hover { color: var(--white); }

.hotline-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.2);
}

/* ===== CARDS GRID ===== */
.cards-section {
  padding: 60px 0;
  background: var(--cream);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}


.card {
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.card-icon {
  background: var(--navy);
  padding: 28px;
  text-align: center;
}

.card-icon svg {
  width: 52px;
  height: 52px;
  color: var(--gold-light);
}

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.card-body p {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--gray);
  flex: 1;
  margin-bottom: 18px;
}

.card-body .btn-card {
  display: inline-block;
  padding: 9px 20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  align-self: flex-start;
  transition: background 0.2s;
}

.card-body .btn-card:hover {
  background: var(--gold-light);
  text-decoration: none;
}

/* ===== MEETINGS SECTION ===== */
.meetings-section {
  padding: 60px 0;
  background: var(--white);
}

.meetings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.meeting-area {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.meeting-area-header {
  background: var(--blue);
  color: var(--white);
  padding: 14px 18px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.meeting-area-address {
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #c0d8f0;
  margin-top: 3px;
}

.meeting-area ul {
  list-style: none;
  padding: 14px 18px;
}

.meeting-area ul li {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--gray);
  padding: 5px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.meeting-area ul li:last-child { border-bottom: none; }

.meeting-area ul li .meeting-name { color: var(--text); font-weight: 500; }
.meeting-area ul li .meeting-time { font-size: 0.8rem; white-space: nowrap; color: #888; }

.meetings-cta {
  text-align: center;
  margin-top: 36px;
}

/* ===== EVENTS SECTION ===== */
.events-section {
  padding: 60px 0;
  background: var(--light-gray);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.event-item {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 6px 6px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.event-date-block {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 14px;
  border-radius: 4px;
  min-width: 58px;
  flex-shrink: 0;
}

.event-date-block .month {
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.event-date-block .day {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.1;
}

.event-info h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 5px;
}

.event-info p {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--gray);
}

/* ===== SA ABOUT STRIP ===== */
.about-strip {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  padding: 50px 20px;
  text-align: center;
  color: var(--white);
}

.about-strip .inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-strip h2 {
  color: var(--white);
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.about-strip p {
  font-family: Arial, sans-serif;
  color: #c0d8f0;
  font-size: 1rem;
  margin-bottom: 14px;
}

.about-strip blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 24px auto;
  text-align: left;
  font-style: italic;
  color: #d8eaf8;
  max-width: 600px;
}

/* ===== DONATIONS SECTION ===== */

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: #a8c8e8;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  font-family: Arial, sans-serif;
}

.footer-col p { line-height: 1.7; color: #a0b8d0; margin-bottom: 10px; }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #a0b8d0; }
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }

.footer-tagline {
  color: var(--gold-light);
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 14px;
}

.footer-bottom {
  max-width: 1100px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #7090b0;
  font-size: 0.82rem;
}

.footer-bottom a { color: #7090b0; }
.footer-bottom a:hover { color: var(--white); text-decoration: none; }

/* ===== INNER PAGE ===== */
.inner-page {
  padding: 50px 0 70px;
  background: var(--cream);
}

.inner-page-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

.inner-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  position: sticky;
  top: 60px;
}

.inner-sidebar h4 {
  background: var(--navy);
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 16px;
  margin: 0;
}

.inner-sidebar ul {
  list-style: none;
  padding: 8px 0;
}

.inner-sidebar ul li a {
  display: block;
  padding: 9px 16px;
  font-family: Arial, sans-serif;
  font-size: 0.875rem;
  color: var(--gray);
  border-left: 3px solid transparent;
}

.inner-sidebar ul li a:hover {
  background: var(--light-gray);
  color: var(--navy);
  text-decoration: none;
}

.inner-sidebar ul li a.active {
  border-left-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
  background: var(--light-gray);
}

.inner-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 40px;
}

.inner-content h2 {
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.inner-content .page-subtitle {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.inner-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

.inner-content h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin: 28px 0 10px;
}

.inner-content ol,
.inner-content ul.content-list {
  padding-left: 24px;
  margin-bottom: 18px;
}

.inner-content ol li,
.inner-content ul.content-list li {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 8px;
}

.inner-content .steps-list {
  list-style: none;
  padding: 0;
  counter-reset: steps;
}

.inner-content .steps-list li {
  counter-increment: steps;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.inner-content .steps-list li:last-child { border-bottom: none; }

.inner-content .steps-list li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}

.inner-content .attribution {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: #999;
  font-style: italic;
}

.inner-content .callout {
  background: var(--light-gray);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 4px 4px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--gray);
}

.inner-content .callout p {
  margin-bottom: 12px;
}

.inner-content .callout p:last-child {
  margin-bottom: 0;
}

.scroll-hint-left,
.scroll-hint-right { display: none; }

@media (max-width: 720px) {
  .inner-page-grid {
    grid-template-columns: 1fr;
  }

  .inner-sidebar {
    position: relative;
    top: auto;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    overflow: hidden;
  }

  .inner-sidebar ul {
    padding: 0;
  }

  .scroll-hint-left,
  .scroll-hint-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 44px;
    display: flex !important;
    align-items: center;
    pointer-events: none;
    transition: opacity 0.2s;
    color: var(--gray);
    font-size: 1.2rem;
    user-select: none;
  }

  .scroll-hint-right {
    right: 0;
    background: linear-gradient(to right, transparent, var(--white) 55%);
    justify-content: flex-end;
    padding-right: 8px;
  }

  .scroll-hint-left {
    left: 0;
    background: linear-gradient(to left, transparent, var(--white) 55%);
    justify-content: flex-start;
    padding-left: 8px;
  }

  .scroll-hint-left.hidden,
  .scroll-hint-right.hidden {
    opacity: 0;
  }

  .inner-sidebar h4 {
    display: none;
  }

  .inner-sidebar ul {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding: 0 32px 0 0;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .inner-sidebar ul::-webkit-scrollbar { display: none; }

  .inner-sidebar ul li {
    flex-shrink: 0;
  }

  .inner-sidebar ul li a {
    display: block;
    padding: 10px 14px;
    border-left: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    font-size: 0.82rem;
  }

  .inner-sidebar ul li a.active {
    border-left: none;
    border-bottom: 3px solid var(--gold);
    background: var(--light-gray);
  }

  .inner-content { padding: 24px 20px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); align-items: start; }
  .cards-grid > .card:last-child:nth-child(3n+1) { grid-column: auto; }
  .meetings-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero h2 { font-size: 1.6rem; }
  .site-title h1 { font-size: 1.2rem; }
  .cards-grid { grid-template-columns: 1fr; gap: 12px; }
  .cards-grid .card-icon { padding: 14px; }
  .cards-grid .card-icon svg { width: 32px; height: 32px; }
  .meetings-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hotline-divider { display: none; }

  nav.main-nav ul { display: none; flex-direction: column; width: 100%; }
  nav.main-nav ul.open { display: flex; }
  nav.main-nav ul li ul.dropdown { position: static; display: none; box-shadow: none; }
  nav.main-nav ul li.open ul.dropdown { display: flex; }
  .nav-toggle { display: block; margin-left: auto; }
}
