/* =============================================
   VERIE JOHNSON | SHEKINAH WELLS GLOBAL MINISTRIES
   Main Stylesheet
   ============================================= */

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

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark:  #9A7A2E;
  --navy:       #1A2744;
  --navy-light: #243460;
  --white:      #FFFFFF;
  --off-white:  #F9F7F2;
  --light-bg:   #F4F1EA;
  --text-dark:  #1C1C1C;
  --text-mid:   #4A4A4A;
  --text-light: #7A7A7A;
  --border:     #E0D9CC;
  --shadow:     0 4px 24px rgba(26,39,68,0.10);
  --shadow-lg:  0 8px 40px rgba(26,39,68,0.16);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--text-mid); }

a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

ul { list-style: none; }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 0; }
.bg-light { background: var(--light-bg); }
.center { text-align: center; }

.section-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-label.center { text-align: center; }
.section-label.light { color: var(--gold-light); }

.section-intro {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  color: var(--text-mid);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,39,68,0.97);
  backdrop-filter: blur(10px);
  padding: 0.9rem 0;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.navbar.scrolled { padding: 0.6rem 0; }

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; flex-direction: column; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: 50px !important;
  padding: 0.5rem 1.2rem !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #2A4080 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.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='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,39,68,0.9) 0%, rgba(26,39,68,0.5) 60%, rgba(26,39,68,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 3rem 1.5rem 3rem 5vw;
}
.hero-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 80px;
  width: 48%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  filter: brightness(0.9) saturate(1.1);
  max-height: 100%;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  z-index: 3;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- WELCOME STRIP ---- */
.welcome-strip {
  background: var(--gold);
  padding: 1.5rem 0;
}
.scripture {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
}

/* ---- TWO COLUMN ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ---- WHO SECTION ---- */
.who-text h2 { margin-bottom: 1.25rem; }
.who-text p { margin-bottom: 1rem; }
.who-image { position: relative; }
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
  object-position: top center;
  height: auto;
  max-height: 600px;
  background: var(--light-bg);
}
.who-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.4;
  box-shadow: var(--shadow);
}
.who-badge i { font-size: 1.5rem; }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 1rem; }
.service-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.service-link:hover { color: var(--gold); gap: 0.7rem; }

/* ---- PILLARS ---- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.pillar {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--gold);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 1rem;
}
.pillar h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.pillar p { font-size: 0.9rem; }

/* ---- NAMIBIA BANNER ---- */
.namibia-banner {
  background: linear-gradient(135deg, #1A2744 0%, #0D1B35 100%);
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.namibia-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23C9A84C' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E") repeat;
}
.namibia-overlay { position: absolute; inset: 0; background: rgba(26,39,68,0.5); }
.namibia-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.namibia-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}
.namibia-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ---- STATS ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 2rem 1rem; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 600;
}

/* ---- SPEAKING ---- */
.topic-list { margin: 1.25rem 0 2rem; }
.topic-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.topic-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.speaking-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 500px;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 5rem 0;
}
.cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 { color: var(--navy); margin-bottom: 1rem; }
.cta-content p { color: var(--navy); opacity: 0.85; font-size: 1.05rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.footer-brand p { font-size: 0.9rem; margin-bottom: 0.25rem; }
.footer-tagline { font-style: italic; color: rgba(255,255,255,0.5) !important; }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links ul li,
.footer-services ul li { margin-bottom: 0.5rem; }
.footer-links ul li a,
.footer-services ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links ul li a:hover,
.footer-services ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-contact p i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-btn { margin-top: 1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 8rem 0 4rem;
  position: relative;
  text-align: center;
}
.page-header-overlay {
  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='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header p { color: var(--gold-light); font-size: 1.1rem; }

/* ---- BIO PAGE ---- */
.bio-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 560px;
}
.bio-quote-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  position: relative;
}
.bio-quote-card i { color: var(--gold); font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }
.bio-quote-card p { color: rgba(255,255,255,0.85); font-style: italic; margin-bottom: 0.5rem; }
.bio-quote-card span { color: var(--gold); font-size: 0.85rem; font-weight: 700; }
.bio-text h3 { color: var(--gold-dark); font-size: 1.2rem; margin: 1.75rem 0 0.5rem; }

/* ---- CREDENTIALS ---- */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}
.credential-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.credential-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.credential-card i { font-size: 1.75rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.credential-card h4 { margin-bottom: 0.5rem; }
.credential-card p { font-size: 0.9rem; }

/* ---- TESTIMONY ---- */
.testimony-section { background: var(--navy); }
.testimony-content { max-width: 800px; margin: 0 auto; }
.testimony-section .section-label { color: var(--gold); }
.testimony-section h2 { color: var(--white); }
.testimony-section p { color: rgba(255,255,255,0.8); }

/* ---- SERVICE DETAIL ---- */
.service-detail-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.service-detail-icon {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.service-price-badge {
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.price-label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }
.price-amount { display: block; font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; line-height: 1; }
.price-note { display: block; font-size: 0.8rem; opacity: 0.75; margin-top: 0.25rem; }

.service-detail-text h2 { margin-bottom: 0.25rem; }
.service-tagline { color: var(--gold-dark); font-weight: 700; font-size: 1rem; margin-bottom: 1.25rem; display: block; }
.service-list { margin: 0.75rem 0 1.5rem; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.service-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.service-detail-text h4 { color: var(--navy); margin: 1.25rem 0 0.5rem; font-size: 1rem; }

/* ---- MISSION/VISION ---- */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.mv-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.mv-card.mission { background: var(--navy); color: var(--white); }
.mv-card.vision { background: var(--gold); color: var(--navy); }
.mv-card.values { background: var(--white); border: 2px solid var(--border); }
.mv-icon { font-size: 2rem; margin-bottom: 1rem; }
.mv-card.mission .mv-icon { color: var(--gold); }
.mv-card.vision .mv-icon { color: var(--navy); }
.mv-card.values .mv-icon { color: var(--gold); }
.mv-card h3 { margin-bottom: 0.75rem; }
.mv-card.mission h3 { color: var(--gold); }
.mv-card.vision h3 { color: var(--navy); }
.mv-card p, .mv-card ul { font-size: 0.95rem; }
.mv-card.mission p { color: rgba(255,255,255,0.85); }
.mv-card.vision p { color: var(--navy); opacity: 0.85; }
.mv-card.values ul { padding-left: 0; }
.mv-card.values ul li { margin-bottom: 0.4rem; font-size: 0.9rem; color: var(--text-mid); }

/* ---- TEACHING GRID ---- */
.teaching-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}
.teaching-topic {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.teaching-topic:hover { transform: translateY(-4px); }
.teaching-topic i { font-size: 1.75rem; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.teaching-topic h4 { margin-bottom: 0.5rem; }
.teaching-topic p { font-size: 0.9rem; }

/* ---- NAMIBIA PAGE ---- */
.vision-quote {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin: 2rem auto;
  max-width: 800px;
  text-align: center;
}
.vision-quote i { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.vision-quote p { color: rgba(255,255,255,0.9); font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.15rem; margin-bottom: 1rem; }
.vision-quote span { color: var(--gold); font-weight: 700; font-size: 0.9rem; }

.need-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}
.need-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-bottom: 3px solid var(--gold);
}
.need-card:hover { transform: translateY(-4px); }
.need-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.need-card h4 { margin-bottom: 0.5rem; }
.need-card p { font-size: 0.9rem; }

.campus-programs { margin-top: 2rem; }
.program-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.program-item:last-child { border-bottom: none; }
.program-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.4;
  flex-shrink: 0;
  line-height: 1;
  min-width: 50px;
}
.program-content h4 { margin-bottom: 0.4rem; }
.program-content p { font-size: 0.95rem; margin: 0; }

.contact-box {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  border-left: 4px solid var(--gold);
}
.contact-box h4 { margin-bottom: 0.75rem; }
.contact-box p { font-size: 0.9rem; margin-bottom: 0.4rem; }

.timeline { margin-top: 1.5rem; }
.timeline-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 28px;
  bottom: -1.5rem;
  width: 2px;
  background: var(--border);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
}
.timeline-content h5 { color: var(--navy); font-size: 1rem; margin-bottom: 0.25rem; }
.timeline-content p { font-size: 0.9rem; margin: 0; }

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}
.support-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.support-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.support-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.support-card h4 { margin-bottom: 0.75rem; }
.support-card p { font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ---- CONTACT PAGE ---- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); }
.contact-card-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.contact-info-card h4 { margin-bottom: 0.5rem; }
.contact-info-card p { font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-link {
  display: block;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
.contact-link:hover { color: var(--gold); }

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; }
.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 400;
  cursor: pointer;
}
.checkbox-group input[type="checkbox"] { width: auto; margin-top: 3px; accent-color: var(--gold); }

.form-success {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}
.form-success i { font-size: 3rem; color: #27ae60; margin-bottom: 1rem; display: block; }
.form-success h3 { margin-bottom: 0.75rem; }

.discovery-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.discovery-text h3 { color: var(--white); margin-bottom: 0.5rem; }
.discovery-text p { color: rgba(255,255,255,0.8); margin: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-image-wrap { width: 40%; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 1rem; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 0.75rem 1rem; display: block; }
  .nav-toggle { display: block; }

  .hero { flex-direction: column; min-height: auto; padding: 100px 0 3rem; }
  .hero-content { padding: 2rem 1.5rem; max-width: 100%; }
  .hero-image-wrap { position: relative; width: 100%; height: 350px; top: auto; }
  .hero-photo { object-position: center top; }
  .hero-scroll-hint { display: none; }

  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .who-badge { left: 0; bottom: -1rem; }
  .about-img, .bio-photo, .speaking-img { height: auto; max-height: 420px; object-fit: contain; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.25rem; }

  .discovery-cta { flex-direction: column; text-align: center; }

  .program-item { flex-direction: column; gap: 0.75rem; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .section-pad { padding: 3rem 0; }
}

/* ---- BOOKS SECTION ---- */
.books-section { background: var(--light-bg); }

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.book-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
  text-align: center;
}

.book-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.book-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.book-icon i {
  color: white;
  font-size: 1.4rem;
}

.book-card h4 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.4;
}

.book-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin: 0;
}

/* ---- SERVICES QUICK MENU ---- */
.services-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.service-menu-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
}

.service-menu-item:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold-dark);
}

/* ---- SERVICE CATEGORY TAG ---- */
.service-category-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

/* ---- PRICING TABLE ---- */
.pricing-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.95rem;
}

.pricing-table thead tr {
  background: var(--navy);
  color: var(--gold-light);
}

.pricing-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}

.pricing-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}

.pricing-table td:first-child {
  font-weight: 700;
  color: var(--navy);
}

.pricing-table td:nth-child(2) {
  color: var(--gold-dark);
  font-weight: 700;
}

.pricing-table tbody tr:hover {
  background: var(--off-white);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* ===== COMMUNITY PROJECTS SECTION ===== */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.community-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-top: 4px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.community-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.14); }
.community-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.community-icon i { font-size: 1.5rem; color: var(--gold); }
.community-card h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 0.8rem; }
.community-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.btn-community-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #1877f2; font-weight: 600; font-size: 0.9rem;
  text-decoration: none; padding: 0.5rem 1rem;
  border: 2px solid #1877f2; border-radius: 8px; transition: all 0.3s ease;
}
.btn-community-link:hover { background: #1877f2; color: white; }

/* ===== DONATE BOX ===== */
.donate-box { margin-top: 2rem; }
.donate-box-inner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2a4a 100%);
  border-radius: 20px; padding: 3rem; text-align: center; color: white;
}
.donate-heart { font-size: 3rem; color: #e74c3c; margin-bottom: 1rem; display: block; }
.donate-box-inner h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem; }
.donate-box-inner p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.7; max-width: 600px; margin: 0 auto 2rem; }
.donate-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.donate-btn { min-width: 220px; }

/* ===== PAYPAL DONATE BOX ===== */
.paypal-donate-box {
  background: linear-gradient(135deg, #003087 0%, #009cde 100%);
  border-radius: 20px; padding: 3rem; text-align: center; color: white; margin-bottom: 3rem;
}
.paypal-donate-inner h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: white; margin-bottom: 0.8rem; }
.paypal-donate-inner p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.paypal-icon { font-size: 3.5rem; color: white; margin-bottom: 1rem; display: block; }
.donate-btn-large { font-size: 1.1rem; padding: 1rem 2.5rem; background: white; color: #003087; font-weight: 700; }
.donate-btn-large:hover { background: var(--gold); color: var(--navy); }
.donation-form-wrap { background: white; border-radius: 20px; padding: 3rem; box-shadow: 0 8px 40px rgba(0,0,0,0.1); }

/* ===== AMAZON BOOK BUTTONS ===== */
.btn-book-amazon {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #ff9900; color: #111; font-weight: 700; font-size: 0.85rem;
  padding: 0.5rem 1.2rem; border-radius: 8px; text-decoration: none;
  margin-top: 0.8rem; transition: all 0.3s ease;
}
.btn-book-amazon:hover { background: #e68900; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255,153,0,0.4); }

/* ===== TEXT MEDIUM ALIAS ===== */
.text-medium { color: var(--text-mid); }
