@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800;900&display=swap');

/* ===================== BHC GLOBAL STYLES ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Open Sans', Arial, sans-serif; color: #2d2d2d; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

:root {
  --blue: #1E8AD2;
  --blue-dark: #1565C0;
  --blue-light: #E3F2FD;
  --orange: #FF8C00;
  --text: #2d2d2d;
  --muted: #777;
  --light: #f5f7fa;
  --white: #ffffff;
}

/* ---- NAVBAR (2-row) ---- */
.navbar {
  background: white;
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; overflow: visible;
  box-shadow: none; border: none;
}

/* ROW 1 — Utility bar */
.nav-row1 {
  background: #1565C0;
  height: 40px; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-row1-left  { display: flex; align-items: center; gap: 18px; }
.nav-row1-right { display: flex; align-items: center; gap: 14px; }
.nav-row1 a { color: white; font-size: 12px; font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 4px; transition: color 0.15s; }
.nav-row1 a:hover { color: #FFB300; }
.nav-row1-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.3); }
.nav-social { display: flex; align-items: center; gap: 14px; }
.nav-row1-announce { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 8px; pointer-events: none; }
.nav-row1-announce p { margin: 0; color: white; font-size: 12px; font-weight: 700; white-space: nowrap; }
.ann-btn { pointer-events: all; background: white !important; color: #0D2E6E !important; font-size: 11px !important; font-weight: 800 !important; padding: 2px 10px !important; border-radius: 20px !important; }

/* ROW 2 — White: logo left, nav center, buttons right */
.nav-row2 {
  background: white;
  height: 90px; padding: 0 80px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
  box-shadow: none;
}
.nav-row2-logo img { height: 64px; width: auto; display: block; }
.nav-row2-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-donate {
  background: #FF8C00 !important;
  color: white !important; padding: 10px 24px !important;
  border-radius: 8px !important; font-size: 13px !important;
  font-weight: 800 !important; text-decoration: none !important;
  text-transform: uppercase !important; letter-spacing: 1.2px !important;
  transition: opacity 0.15s !important;
}
.nav-donate:hover { opacity: 0.88 !important; }
.nav-portal {
  background: transparent !important; color: #0D2E6E !important;
  padding: 8px 22px !important; border-radius: 8px !important;
  font-size: 13px !important; font-weight: 700 !important;
  text-decoration: none !important; border: 2px solid #0D2E6E !important;
  text-transform: uppercase !important; letter-spacing: 1.2px !important;
  transition: background 0.15s, color 0.15s !important;
}
.nav-portal:hover { background: #0D2E6E !important; color: white !important; }

/* Centered nav inside Row 2 */
.nav-center {
  display: flex !important; align-items: center !important;
  position: static !important; transform: none !important; left: auto !important;
  gap: 2px;
}
.nav-center > a, .nav-dropdown > a {
  font-size: 14px; font-weight: 700; color: #0D2E6E;
  text-decoration: none; padding: 0 16px;
  height: 90px; display: flex; align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap; background: transparent !important;
  border-radius: 0; box-sizing: border-box;
}
.nav-center > a:hover, .nav-dropdown > a:hover { color: #0D2E6E; border-bottom-color: #FF8C00; }
.nav-center > a.active { color: #0D2E6E; font-weight: 800; border-bottom-color: #0095DB; }
.nav-dropdown { position: static; }
.nav-dropdown > a { gap: 5px; cursor: pointer; user-select: none; }
.nav-dropdown > a::after { content: '▾'; font-size: 10px; opacity: 0.5; transition: transform 0.2s; }
.nav-dropdown:hover > a { color: #0D2E6E; border-bottom-color: #FF8C00; }
.nav-dropdown:hover > a::after { transform: rotate(-180deg); }

/* Mega drop panel */
.nav-drop-panel {
  position: fixed; top: 127px; left: 0; right: 0;
  background: #FFFFFF;
  border-bottom: 2px solid #0095DB;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  z-index: 1003; opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-dropdown:hover .nav-drop-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { max-width: 1440px; margin: 0 auto; padding: 32px 40px; display: flex; }
.mega-col { flex: 1; padding: 0 32px; border-right: 1px solid #f0f0f0; }
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child  { border-right: none; padding-right: 0; }
.mega-col-label { font-size: 10px; font-weight: 800; color: #0D2E6E; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid #e8f0fe; }
.nav-drop-panel a:not(.mega-cta-btn) { display: flex !important; align-items: flex-start !important; gap: 12px; padding: 9px 10px !important; text-decoration: none !important; color: #2d2d2d !important; font-size: 14px !important; font-weight: 600 !important; border-radius: 6px; margin-bottom: 2px; box-shadow: none !important; height: auto !important; background: transparent !important; border-bottom: none !important; }
.nav-drop-panel a:not(.mega-cta-btn):hover { background: #f0f7ff !important; color: #1565C0 !important; }
.mega-link-icon { display: none; /* hidden — original: font-size: 20px; flex-shrink: 0; margin-top: 1px; */ }
.mega-link-text { display: flex; flex-direction: column; }
.mega-link-title { font-size: 14px; font-weight: 700; line-height: 1.3; color: #2d2d2d; }
.mega-link-desc  { font-size: 12px; color: #777; margin-top: 2px; line-height: 1.4; white-space: normal; }
.mega-cta-col  { width: 220px; flex-shrink: 0; padding: 0 0 0 32px; }
.mega-cta-box  { background: linear-gradient(135deg, #0D2E6E, #1565C0); border-radius: 12px; padding: 24px 20px; color: white; text-align: center; }
.mega-cta-box h4 { font-size: 15px; font-weight: 800; margin: 0 0 8px; }
.mega-cta-box p  { font-size: 12px; opacity: 0.85; margin: 0 0 16px; line-height: 1.5; }
.mega-cta-btn { display: inline-block !important; background: white !important; color: #1565C0 !important; font-size: 13px !important; font-weight: 800 !important; padding: 8px 18px !important; border-radius: 6px !important; box-shadow: none !important; height: auto !important; border: 2px solid white !important; transition: background 0.2s, color 0.2s !important; }
.mega-cta-btn:hover { background: transparent !important; color: white !important; border-color: white !important; }

/* Spacer: row1(40) + row2(90) = 130px */
.nav-spacer { height: 130px; display: block; }

/* Hamburger / Mobile */
.hamburger { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: #0D2E6E; margin-left: auto; }
.mobile-menu { display: none; background: white; border-top: 1px solid #eee; padding: 12px 16px 24px; flex-direction: column; gap: 4px; }
.mobile-menu a { padding: 11px 12px; border-radius: 8px; font-size: 15px; font-weight: 700; color: #0D2E6E; display: block; text-decoration: none; box-shadow: none !important; height: auto !important; background: transparent !important; }
.mobile-menu a:hover { background: #f0f7ff !important; color: #00897B; }
.mobile-menu .mob-section { font-size: 10px; font-weight: 800; color: #00897B; text-transform: uppercase; letter-spacing: 1.5px; padding: 10px 12px 4px; }
.mobile-menu.open { display: flex; }

@media(max-width:900px){
  .nav-row1 { display: none; }
  .nav-center { display: none !important; }
  .nav-row2-actions { display: none; }
  .hamburger { display: block; }
  .nav-row2 { height: 68px !important; padding: 0 20px !important; }
  .nav-spacer { height: 68px; }
}



/* Utility bar dropdown (My Account) */
.util-dropdown { position: relative; display: flex; align-items: center; }
.util-dropdown > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.util-drop-panel {
  position: absolute; top: 100%; right: 0;
  background: #0D2E6E;
  min-width: 100%; padding: 4px 0;
  opacity: 0; visibility: hidden; transform: translateY(0);
  transition: opacity 0.15s ease, visibility 0.15s;
  z-index: 1100;
}
.util-dropdown:hover .util-drop-panel {
  opacity: 1; visibility: visible;
}
.util-drop-panel a {
  display: block !important; padding: 9px 14px !important;
  font-size: 12px !important; font-weight: 600 !important;
  color: white !important; border-radius: 0 !important;
  text-decoration: none !important; transition: color 0.12s !important;
  white-space: nowrap; height: auto !important; background: transparent !important;
}
.util-drop-panel a:hover { color: #FFB300 !important; background: transparent !important; }

/* ---- FOOTER ---- */
.footer { background: #1A1A1A; color: #ccc; padding: 50px 24px 24px; }
.footer-inner { max-width: 1440px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-text { font-size: 18px; font-weight: 800; color: white; margin-bottom: 12px; }
.footer-brand .logo-text span { color: var(--blue); }
.footer-brand p { font-size: 13px; line-height: 1.7; color: #aaa; }
.footer-col h4 { font-size: 13px; font-weight: 800; color: white; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: #aaa; margin-bottom: 8px; transition: color 0.15s; }
.footer-col a:hover { color: #00897B; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: background 0.15s; }
.social-links a:hover { background: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px; color: #666; }

/* ---- NEWSLETTER ---- */
.newsletter { background: url('newsletter_bg.jpg') left center / cover no-repeat; padding: 70px 24px; position: relative; }
.newsletter::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(21,101,192,0.25) 0%, rgba(21,101,192,0.82) 45%, rgba(21,101,192,0.95) 100%); }
.nl-inner { position: relative; z-index: 1; max-width: 1440px; margin: 0 auto; display: flex; justify-content: flex-end; }
.nl-panel { width: 100%; max-width: 520px; }
.newsletter h2 { font-size: 28px; font-weight: 900; color: white; margin-bottom: 10px; }
.newsletter p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.newsletter-form { width: 100%; }
.nl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.nl-row-full { margin-bottom: 10px; }
.newsletter-form input { width: 100%; padding: 13px 18px; border: none; border-radius: 9px; font-size: 14px; outline: none; box-sizing: border-box; }
.newsletter-form button { width: 100%; padding: 13px 24px; background: var(--orange); color: white; border: none; border-radius: 9px; font-size: 15px; font-weight: 800; cursor: pointer; margin-top: 4px; }
.newsletter-form button:hover { opacity: 0.9; }
.nl-consent { display: flex; align-items: flex-start; gap: 10px; background: rgba(255,255,255,0.12); border-radius: 9px; padding: 12px 14px; margin-bottom: 12px; text-align: left; }
.nl-consent input[type=checkbox] { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; accent-color: var(--orange); cursor: pointer; }
.nl-consent label { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.5; cursor: pointer; }
.nl-consent label strong { color: white; }
.newsletter-success { color: white; font-size: 15px; font-weight: 700; display: none; }



/* ---- BUTTONS ---- */
.btn-blue { display: inline-block; padding: 13px 28px; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: white; border-radius: 10px; font-weight: 800; font-size: 15px; transition: opacity 0.15s; border: none; cursor: pointer; }
.btn-blue:hover { opacity: 0.9; color: white; }
.btn-outline { display: inline-block; padding: 13px 28px; border: 2px solid var(--blue); color: var(--blue); border-radius: 10px; font-weight: 800; font-size: 15px; transition: all 0.15s; }
.btn-outline:hover { background: var(--blue); color: white; }
.btn-orange { display: inline-block; padding: 13px 28px; background: var(--orange); color: white; border-radius: 10px; font-weight: 800; font-size: 15px; transition: opacity 0.15s; border: none; cursor: pointer; }
.btn-orange:hover { opacity: 0.9; color: white; }

/* ---- SECTIONS ---- */
.section { padding: 80px 24px; }
.section-inner { max-width: 1440px; margin: 0 auto; }
.section-tag { font-size: 11px; font-weight: 800; letter-spacing: 3px; color: #00897B; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: 36px; font-weight: 800; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---- CARDS ---- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.bhc-card { background: white; border-radius: 16px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); border: 1px solid #f0f0f0; transition: transform 0.2s, box-shadow 0.2s; }
.bhc-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.bhc-card .card-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.bhc-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.bhc-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ---- FORM ---- */
.form-group { margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 700; color: #888; display: block; margin-bottom: 5px; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid #e8e8e8; border-radius: 9px; font-size: 14px; font-family: inherit; outline: none; transition: border 0.2s; background: #fafafa; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); background: white; }
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 768px) {

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .nl-panel { max-width: 100%; }
  .nl-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
