/*
Theme Name: Mission Bridges
Theme URI: https://smallbusinessentrepreneur.org
Author: Mission Bridges
Author URI: https://smallbusinessentrepreneur.org
Description: Custom WordPress theme for Mission Bridges — empowering nonprofit founders, small business owners, and community leaders in Arlington, TX.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mission-bridges
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   DESIGN SYSTEM
   - Fonts: Playfair Display (headings) + DM Sans (body)
   - Primary: #C9A84C (gold)
   - Dark: #1A1A1A (near-black)
   - Soft BG: #FAF8F3
   - Body text: #333333
   ============================================================ */

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

:root {
  --gold:       #C9A84C;
  --gold-dark:  #A8893A;
  --mb-black:   #1A1A1A;
  --mb-charcoal:#2E2E2E;
  --mb-soft:    #FAF8F3;
  --mb-border:  #E8E4DC;
  --body-text:  #444444;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', system-ui, -apple-system, sans-serif;
  --radius:     10px;
  --shadow-sm:  0 4px 16px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --max-w:      1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
  color: var(--mb-black);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ── */
.mb-container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .mb-container { padding-left: 2rem; padding-right: 2rem; }
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── BUTTONS ── */
.btn,
.btn-gold,
.btn-outline-white,
.btn-outline-gold,
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn:hover, .btn-gold:hover, .btn-outline-white:hover,
.btn-outline-gold:hover, .btn-outline-dark:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--mb-black); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: #fff; }

.btn-outline-dark {
  background: transparent;
  color: var(--mb-black);
  border-color: var(--mb-black);
}
.btn-outline-dark:hover { background: var(--mb-black); color: #fff; }

/* ── HEADER / NAV ── */
#mb-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--mb-black);
  transition: box-shadow 0.3s;
}
#mb-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.35); }

.mb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.mb-logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-decoration: none;
}
.mb-logo span { color: var(--gold); }

/* Desktop nav */
.mb-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.mb-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.mb-nav > ul > li { position: relative; }
.mb-nav > ul > li > a,
.mb-nav > ul > li > button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 600;
  background: none;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}
.mb-nav > ul > li > a:hover,
.mb-nav > ul > li > button:hover,
.mb-nav > ul > li > a.active { color: var(--gold); }

/* Dropdown */
.mb-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  min-width: 180px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 999;
}
.mb-nav > ul > li:hover .mb-dropdown,
.mb-nav > ul > li.open .mb-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mb-dropdown a {
  display: block;
  padding: 10px 18px;
  color: var(--mb-charcoal);
  font-size: 0.87rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.mb-dropdown a:hover { background: var(--mb-soft); color: var(--gold); }

.mb-nav-donate {
  margin-left: 14px;
}

/* Hamburger */
.mb-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.mb-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mb-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mb-hamburger.open span:nth-child(2) { opacity: 0; }
.mb-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mb-mobile-menu {
  display: none;
  background: #222;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px 28px;
}
.mb-mobile-menu.open { display: block; }
.mb-mobile-menu a,
.mb-mobile-menu .mb-mobile-parent {
  display: block;
  padding: 13px 0;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}
.mb-mobile-menu .mb-mobile-sub a {
  padding: 10px 0 10px 18px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 500;
}
.mb-mobile-menu .btn-gold {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

@media (max-width: 900px) {
  .mb-nav { display: none; }
  .mb-hamburger { display: flex; }
}

/* ── FOOTER ── */
#mb-footer {
  background: var(--mb-black);
  color: #fff;
  padding-top: 60px;
}
.mb-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.mb-footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.mb-footer-brand-name span { color: var(--gold); }
.mb-footer-col p,
.mb-footer-col address {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  font-style: normal;
}
.mb-footer-col h4 {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.mb-footer-col ul li { margin-bottom: 9px; }
.mb-footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
  transition: color 0.2s;
}
.mb-footer-col ul li a:hover { color: var(--gold); }
.mb-footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.mb-footer-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.mb-footer-socials a:hover { background: var(--gold); color: #fff; }
.mb-footer-newsletter form { display: flex; gap: 8px; margin-top: 10px; }
.mb-footer-newsletter input[type="email"] {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 0.87rem;
  font-family: var(--font-body);
  outline: none;
}
.mb-footer-newsletter input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.mb-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
}
.mb-footer-bottom a { color: rgba(255,255,255,0.38); transition: color 0.2s; }
.mb-footer-bottom a:hover { color: var(--gold); }
.mb-footer-links { display: flex; gap: 20px; }

/* ── HOME PAGE ── */
/* Hero */
.mb-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.mb-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.mb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(201,168,76,0.25) 100%);
}
.mb-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 820px;
}
.mb-hero-content h1 { color: #fff; margin-bottom: 22px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.mb-hero-content h1 em { font-style: normal; color: var(--gold); }
.mb-hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.9); max-width: 640px; margin-bottom: 36px; }
.mb-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* Who We Help Strip */
.mb-who-strip {
  background: var(--mb-black);
  padding: 28px 0;
}
.mb-who-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 36px;
}
.mb-who-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 0.93rem;
  white-space: nowrap;
}
.mb-who-tag-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* What We Do */
.mb-section { padding: 80px 0; }
.mb-section-alt { background: var(--mb-soft); }
.mb-section-dark { background: var(--mb-black); }
.mb-section-gold { background: var(--gold); }

.mb-section-header { text-align: center; margin-bottom: 44px; }
.mb-section-header h2 { margin-bottom: 12px; }
.mb-section-header p { color: #666; max-width: 600px; margin: 0 auto; font-size: 1.02rem; }

.mb-cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.mb-card {
  background: var(--mb-soft);
  border-radius: 14px;
  padding: 34px 26px;
  border-top: 4px solid var(--gold);
  transition: box-shadow 0.25s, transform 0.25s;
}
.mb-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.mb-card-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.mb-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.mb-card p { color: #555; font-size: 0.93rem; margin: 0; }

/* Persona Journey */
.mb-persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.mb-persona-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 22px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
}
.mb-persona-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mb-persona-card h4 { font-size: 1.05rem; margin-bottom: 9px; }
.mb-persona-card p { font-size: 0.88rem; color: #666; flex: 1; margin-bottom: 14px; }
.mb-persona-card .mb-persona-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Programs Grid */
.mb-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.mb-program-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  transition: box-shadow 0.25s, transform 0.25s;
}
.mb-program-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.mb-program-card img { width: 100%; height: 170px; object-fit: cover; }
.mb-program-card-body { padding: 18px; }
.mb-program-card-body h3 { font-size: 1.05rem; margin-bottom: 7px; }
.mb-program-card-body p { font-size: 0.85rem; color: #666; margin-bottom: 12px; }
.mb-program-card-body a { font-size: 0.85rem; font-weight: 700; color: var(--gold); }

/* Testimonials */
.mb-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.mb-testimonial {
  background: #fff;
  border-radius: 14px;
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.mb-testimonial-quote-mark {
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 22px;
  opacity: 0.25;
}
.mb-testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; padding-top: 20px; }
.mb-testimonial-stars span { color: var(--gold); font-size: 0.9rem; }
.mb-testimonial blockquote {
  font-size: 0.97rem;
  color: var(--mb-charcoal);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}
.mb-testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--mb-black);
}
.mb-testimonial cite span {
  display: block;
  font-weight: 400;
  color: var(--gold);
  font-size: 0.82rem;
  margin-top: 3px;
}

/* CTA Banner */
.mb-cta-banner { text-align: center; padding: 76px 24px; }
.mb-cta-banner h2 { color: #fff; margin-bottom: 14px; max-width: 680px; margin-left: auto; margin-right: auto; }
.mb-cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.08rem; max-width: 520px; margin: 0 auto 28px; }

/* ── SERVICES PAGE ── */
.mb-services-hero { background: var(--mb-black); padding: 76px 0 56px; text-align: center; }
.mb-services-hero h1 { color: #fff; margin-bottom: 16px; }
.mb-services-hero p { color: rgba(255,255,255,0.78); max-width: 700px; margin: 0 auto; font-size: 1.02rem; line-height: 1.75; }

.mb-filter-bar {
  background: var(--mb-soft);
  padding: 22px 0;
  border-bottom: 2px solid rgba(201,168,76,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  position: sticky;
  top: 70px;
  z-index: 100;
}
.mb-filter-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.mb-filter-btn {
  padding: 9px 20px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--mb-black);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mb-filter-btn:hover,
.mb-filter-btn.active { background: var(--gold); color: #fff; }

.mb-tier-section { padding: 60px 0; }
.mb-tier-section:nth-child(even) { background: var(--mb-soft); }

.mb-tier-header {
  background: var(--gold);
  color: #fff;
  padding: 13px 22px;
  border-radius: 9px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.mb-tier-header h2 { color: #fff; font-size: 1.25rem; margin: 0; }
.mb-tier-header span { font-size: 0.87rem; color: rgba(255,255,255,0.85); font-weight: 600; }

.mb-services-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.mb-services-table thead tr th {
  background: var(--mb-black);
  color: #fff;
  padding: 13px 17px;
  text-align: left;
  font-weight: 700;
  font-family: var(--font-body);
}
.mb-services-table tbody tr { border-bottom: 1px solid rgba(0,0,0,0.07); }
.mb-services-table tbody tr:hover { background: rgba(201,168,76,0.06); }
.mb-services-table td { padding: 13px 17px; vertical-align: top; }
.mb-services-table td.price { font-weight: 700; color: var(--gold); white-space: nowrap; }
.mb-table-wrap { overflow-x: auto; }

/* Retainer Cards */
.mb-retainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.mb-retainer-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.mb-retainer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.mb-retainer-head {
  background: var(--gold);
  padding: 22px 18px;
  text-align: center;
}
.mb-retainer-head h3 { color: #fff; font-size: 1.05rem; margin-bottom: 7px; }
.mb-retainer-price { font-size: 1.5rem; font-weight: 700; color: #fff; font-family: var(--font-head); }
.mb-retainer-price small { font-size: 0.85rem; font-weight: 400; }
.mb-retainer-stage { font-size: 0.78rem; color: rgba(255,255,255,0.8); margin-top: 3px; }
.mb-retainer-body { padding: 22px 18px; flex: 1; display: flex; flex-direction: column; }
.mb-retainer-body ul { flex: 1; margin-bottom: 18px; }
.mb-retainer-body ul li {
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--mb-charcoal);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mb-retainer-body ul li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.mb-retainer-body .btn-gold { width: 100%; justify-content: center; }
.mb-retainer-note {
  font-style: italic;
  font-size: 0.86rem;
  color: #666;
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  line-height: 1.7;
}

/* ── ABOUT PAGE ── */
.mb-page-hero { background: var(--mb-black); padding: 60px 0; text-align: center; }
.mb-page-hero h1 { color: #fff; margin-bottom: 11px; }
.mb-page-hero p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto; }

.mb-why-callout {
  background: var(--gold);
  border-radius: 14px;
  padding: 34px 30px;
  margin-bottom: 56px;
}
.mb-why-callout h3 { color: #fff; margin-bottom: 12px; font-size: 1.25rem; }
.mb-why-callout p { color: rgba(255,255,255,0.93); font-size: 0.98rem; line-height: 1.75; margin: 0; }

.mb-bio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
.mb-bio-grid img {
  border-radius: 14px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  max-height: 500px;
}

.mb-who-serve-box {
  background: var(--mb-black);
  border-radius: 14px;
  padding: 44px;
  text-align: center;
  margin-bottom: 60px;
}
.mb-who-serve-box h2 { color: #fff; margin-bottom: 14px; }
.mb-who-serve-box p { color: rgba(255,255,255,0.72); max-width: 600px; margin: 0 auto 28px; }
.mb-tag {
  display: inline-block;
  background: rgba(201,168,76,0.18);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 7px 17px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 4px;
}

/* ── CONTACT PAGE ── */
.mb-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  align-items: start;
}
.mb-contact-info-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 0.93rem;
}
.mb-contact-info-icon {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.mb-contact-info-text { padding-top: 7px; }
.mb-contact-info-text a { color: var(--mb-charcoal); }

.mb-book-box {
  background: var(--mb-soft);
  border-radius: 14px;
  padding: 26px;
  border-left: 4px solid var(--gold);
  margin-top: 36px;
}
.mb-book-box h3 { margin-bottom: 9px; font-size: 1.05rem; }
.mb-book-box p { font-size: 0.88rem; color: #555; margin-bottom: 14px; }

.mb-contact-form-box {
  background: var(--mb-soft);
  border-radius: 14px;
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
}
.mb-contact-form-box h3 { margin-bottom: 22px; }
.mb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.mb-form-group { margin-bottom: 18px; }
.mb-form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 5px;
  color: var(--mb-black);
}
.mb-form-group input,
.mb-form-group select,
.mb-form-group textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--mb-charcoal);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.mb-form-group input:focus,
.mb-form-group select:focus,
.mb-form-group textarea:focus { border-color: var(--gold); }
.mb-form-group textarea { resize: vertical; min-height: 110px; }
.mb-form-submit { width: 100%; justify-content: center; }

@media (max-width: 640px) {
  .mb-form-row { grid-template-columns: 1fr; }
  .mb-contact-form-box { padding: 24px 18px; }
}

/* ── PROGRAMS PAGE ── */
.mb-program-article {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 44px;
  align-items: start;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--mb-border);
}
.mb-program-article:last-child { border-bottom: none; }
.mb-program-article img {
  border-radius: 14px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.mb-program-article .mb-who-for {
  margin-bottom: 22px;
  font-size: 0.93rem;
}
.mb-program-article .mb-who-for strong { color: var(--mb-black); }
.mb-program-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── EXPO PAGE ── */
.mb-expo-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.mb-expo-hero-content { position: relative; z-index: 2; padding: 80px 0; text-align: center; }
.mb-expo-hero-content h1 { color: #fff; margin-bottom: 14px; }
.mb-expo-hero-content p { color: rgba(255,255,255,0.88); max-width: 620px; margin: 0 auto 28px; font-size: 1.05rem; line-height: 1.75; }
.mb-expo-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.mb-expo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 44px;
  align-items: start;
}
.mb-event-details-box {
  background: var(--mb-soft);
  border-radius: 14px;
  padding: 26px;
  border-left: 4px solid var(--gold);
}
.mb-event-detail-row {
  display: flex;
  gap: 12px;
  margin-bottom: 13px;
  align-items: center;
}
.mb-event-detail-row .icon { font-size: 1.1rem; }
.mb-event-detail-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mb-event-detail-value { font-weight: 600; font-size: 0.93rem; }

.mb-expo-expect-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}
.mb-expo-expect-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.mb-expo-expect-item h4 { margin-bottom: 5px; }
.mb-expo-expect-item p { color: #555; font-size: 0.88rem; margin: 0; }

/* ── UTILITY ── */
.mb-text-center { text-align: center; }
.mb-mt-8 { margin-top: 2rem; }
.mb-mt-10 { margin-top: 2.5rem; }
.mb-mt-12 { margin-top: 3rem; }
.mb-mb-8 { margin-bottom: 2rem; }
.mb-mb-10 { margin-bottom: 2.5rem; }

/* ── ANIMATIONS ── */
.mb-fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.mb-fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .mb-hero { min-height: 70vh; }
  .mb-hero-content { padding: 60px 0; }
  .mb-section { padding: 56px 0; }
  .mb-bio-grid { gap: 32px; }
  .mb-program-article { gap: 28px; }
  .mb-who-serve-box { padding: 28px 20px; }
  .mb-contact-form-box { padding: 24px 18px; }
  .mb-cta-banner { padding: 56px 20px; }
}

/* ══════════════════════════════════════════════════════════════
   GIVEWP DONATION FORM — Brand Integration
   These styles make the GiveWP form match Mission Bridges colors.
   They do NOT change any GiveWP functionality or payment settings.
══════════════════════════════════════════════════════════════ */

/* Donate page wrapper */
.mb-donate-wrap { max-width: 860px; }
.give-wrap { width: 100%; }

/* Primary submit / donate button */
.give-btn,
.give-submit,
#give-purchase-button,
.give-donation-amount .give-btn {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  padding: 12px 28px !important;
  transition: background 0.2s ease !important;
}
.give-btn:hover,
.give-submit:hover,
#give-purchase-button:hover {
  background-color: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
}

/* Donation level amount buttons */
.give-donation-levels-wrap .give-donation-level-btn {
  border: 2px solid var(--gold) !important;
  color: var(--gold) !important;
  background: transparent !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  transition: all 0.2s ease !important;
}
.give-donation-levels-wrap .give-donation-level-btn.give-btn-selected,
.give-donation-levels-wrap .give-donation-level-btn:hover {
  background: var(--gold) !important;
  color: #fff !important;
}

/* Form inputs */
.give-input,
.give-select,
#give_purchase_form_wrap input[type="text"],
#give_purchase_form_wrap input[type="email"],
#give_purchase_form_wrap input[type="tel"],
#give_purchase_form_wrap select {
  border: 1.5px solid #ddd !important;
  border-radius: 6px !important;
  padding: 10px 14px !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.give-input:focus,
.give-select:focus {
  border-color: var(--gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15) !important;
}

/* Payment gateway tabs (Stripe / PayPal) */
#give-payment-mode-select li a {
  border-color: var(--gold) !important;
  color: var(--mb-charcoal) !important;
}
#give-payment-mode-select li.give-gateway-option-selected a {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}

/* Section headings inside the form */
.give-section-break h2,
.give-form-title,
#give_purchase_form_wrap h3 {
  font-family: var(--font-head) !important;
  color: var(--mb-black) !important;
}
