/* ==========================================================================
   LOH Redesign CSS — Complete Visual Redesign 2025
   Design inspiration: charity:water, Malala Fund, The Children's Society
   ========================================================================== */

/* ---- DESIGN TOKENS ---- */
:root {
  --loh-navy:          #002b56;
  --loh-navy-light:    #003d7a;
  --loh-navy-dark:     #001a3a;
  --loh-gold:          #d4a039;
  --loh-gold-light:    #e8b84b;
  --loh-gold-hover:    #b88a2e;
  --loh-white:         #ffffff;
  --loh-off-white:     #f8f9fb;
  --loh-gray-50:       #f9fafb;
  --loh-gray-100:      #f3f4f6;
  --loh-gray-200:      #e5e7eb;
  --loh-gray-300:      #d1d5db;
  --loh-gray-400:      #9ca3af;
  --loh-gray-600:      #4b5563;
  --loh-gray-700:      #374151;
  --loh-gray-800:      #1f2937;
  --loh-shadow-sm:     0 1px 3px rgba(0,43,86,0.08);
  --loh-shadow-md:     0 4px 20px rgba(0,43,86,0.12);
  --loh-shadow-lg:     0 10px 40px rgba(0,43,86,0.15);
  --loh-shadow-xl:     0 20px 60px rgba(0,43,86,0.20);
  --loh-radius-sm:     6px;
  --loh-radius-md:     12px;
  --loh-radius-lg:     20px;
  --loh-radius-xl:     32px;
  --loh-radius-full:   9999px;
  --loh-transition:      all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --loh-transition-fast: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --loh-section-pad:   100px;
  --loh-section-pad-sm: 60px;
  --loh-container-max: 1200px;
}

/* ---- BASE RESET ---- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  color: var(--loh-gray-700) !important;
  -webkit-font-smoothing: antialiased;
  background: #fff !important;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif !important;
  letter-spacing: -0.02em;
  line-height: 1.15 !important;
  color: var(--loh-navy) !important;
  font-weight: 700 !important;
}

h4, h5, h6 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  color: var(--loh-gray-800) !important;
  line-height: 1.4 !important;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem) !important; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem) !important; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important; }
h4 { font-size: 1.15rem !important; }

p { line-height: 1.8 !important; margin-bottom: 1rem; }
a { transition: var(--loh-transition-fast); text-decoration: none; }

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

/* Spacing utilities */
.pt-120, .pt-142 { padding-top: var(--loh-section-pad) !important; }
.pb-120, .pb-80  { padding-bottom: var(--loh-section-pad) !important; }

@media (max-width: 767px) {
  .pt-120, .pt-142 { padding-top: var(--loh-section-pad-sm) !important; }
  .pb-120, .pb-80  { padding-bottom: var(--loh-section-pad-sm) !important; }
}

/* ---- HIDE OLD TEMPLATE BITS ---- */
.preloader,
.main-header__top,
.header-upper,
.stricky-header,
.stricky-header-two,
.search-popup,
.scroll-to-top.scroll-to-target { display: none !important; }

/* ---- NEW NAVBAR ---- */
.loh-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 20px;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}

.loh-navbar.scrolled {
  background: var(--loh-navy) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 0 20px;
  border-bottom-color: rgba(255,255,255,0.08);
}

.loh-navbar-inner {
  max-width: var(--loh-container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.loh-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.loh-nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.loh-nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.loh-nav-logo-text span:first-child {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff !important;
  line-height: 1.2;
}
.loh-nav-logo-text span:last-child {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8A951 !important;
  line-height: 1;
}

/* Nav links */
.loh-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.loh-nav-links li { position: relative; }

.loh-nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88) !important;
  letter-spacing: 0.03em;
  border-radius: var(--loh-radius-sm);
  transition: var(--loh-transition-fast);
  white-space: nowrap;
}

.loh-nav-links a:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.1);
}

/* Dropdown */
.loh-nav-links .loh-dropdown { position: relative; }
.loh-nav-links .loh-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7em;
  opacity: 0.7;
}
.loh-nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--loh-navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--loh-radius-md);
  min-width: 180px;
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--loh-transition-fast);
  box-shadow: var(--loh-shadow-lg);
  z-index: 100;
}
.loh-nav-links .loh-dropdown:hover .loh-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.loh-nav-dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85) !important;
  border-radius: 6px;
}
.loh-nav-dropdown a:hover {
  background: rgba(255,255,255,0.1);
  color: #fff !important;
}

/* Language toggle */
.loh-lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--loh-radius-full);
  padding: 4px 6px;
  margin: 0 4px;
}
.loh-lang-btn {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--loh-radius-full);
  color: rgba(255,255,255,0.7) !important;
  transition: var(--loh-transition-fast);
  text-decoration: none;
}
.loh-lang-btn.active, .loh-lang-btn:hover {
  background: var(--loh-gold);
  color: var(--loh-navy) !important;
}

/* Nav CTA */
.loh-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--loh-gold);
  color: var(--loh-navy) !important;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--loh-radius-full);
  letter-spacing: 0.03em;
  box-shadow: 0 4px 14px rgba(212,160,57,0.4);
  transition: var(--loh-transition);
  white-space: nowrap;
}
.loh-nav-cta:hover {
  background: var(--loh-gold-light);
  color: var(--loh-navy) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,57,0.5);
}

/* Hamburger */
.loh-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 8px;
  padding: 8px;
  flex-shrink: 0;
}
.loh-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--loh-transition-fast);
}

/* Mobile drawer */
.loh-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
}
.loh-mobile-nav.open {
  visibility: visible;
  pointer-events: all;
}
.loh-mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.loh-mobile-nav.open .loh-mobile-overlay { opacity: 1; }

.loh-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--loh-navy);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.loh-mobile-nav.open .loh-mobile-panel { transform: translateX(0); }

.loh-mobile-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.loh-mobile-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--loh-transition-fast);
}
.loh-mobile-close:hover { background: rgba(255,255,255,0.15); }

.loh-mobile-links {
  list-style: none;
  margin: 0;
  padding: 16px 0;
  flex: 1;
}
.loh-mobile-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.loh-mobile-links a {
  display: block;
  padding: 14px 20px;
  color: rgba(255,255,255,0.9) !important;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--loh-transition-fast);
}
.loh-mobile-links a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff !important;
}
.loh-mobile-links .loh-sub-link a {
  padding-left: 36px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7) !important;
}

.loh-mobile-panel-bottom {
  padding: 16px 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.loh-mobile-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--loh-gold);
  color: var(--loh-navy) !important;
  font-weight: 700;
  border-radius: var(--loh-radius-full);
  font-size: 0.95rem;
  transition: var(--loh-transition-fast);
}
.loh-mobile-cta:hover { background: var(--loh-gold-light); }
.loh-mobile-lang {
  display: flex;
  gap: 8px;
  justify-content: center;
}

/* Page wrapper offset for fixed nav */
.page-wrapper { padding-top: 72px !important; }

/* ---- HERO SECTION ---- */
.loh-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--loh-navy-dark);
}

.loh-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: transform 8s ease;
}

.loh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,26,58,0.88) 0%,
    rgba(0,43,86,0.72) 50%,
    rgba(0,26,58,0.60) 100%
  );
}

.loh-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--loh-container-max);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.loh-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212,160,57,0.2);
  border: 1px solid rgba(212,160,57,0.4);
  border-radius: var(--loh-radius-full);
  color: var(--loh-gold) !important;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.loh-hero-heading {
  font-size: clamp(2.6rem, 6vw, 4.5rem) !important;
  color: #fff !important;
  max-width: 720px;
  margin-bottom: 24px;
  line-height: 1.1 !important;
}

.loh-hero-heading em {
  color: var(--loh-gold) !important;
  font-style: normal;
}

.loh-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem) !important;
  color: rgba(255,255,255,0.82) !important;
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.7 !important;
}

.loh-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.loh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--loh-gold);
  color: var(--loh-navy) !important;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--loh-radius-full);
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(212,160,57,0.45);
  transition: var(--loh-transition);
  text-decoration: none;
}
.loh-btn-primary:hover {
  background: var(--loh-gold-light);
  color: var(--loh-navy) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,160,57,0.55);
}

.loh-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--loh-radius-full);
  backdrop-filter: blur(4px);
  transition: var(--loh-transition);
  text-decoration: none;
}
.loh-btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.55);
  color: #fff !important;
  transform: translateY(-2px);
}

.loh-btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--loh-navy);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--loh-radius-full);
  box-shadow: var(--loh-shadow-md);
  transition: var(--loh-transition);
  text-decoration: none;
}
.loh-btn-navy:hover {
  background: var(--loh-navy-light);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--loh-shadow-lg);
}

/* Override old thm-btn */
.thm-btn, .thm-btn.dynamic-radius {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 13px 30px !important;
  background: var(--loh-gold) !important;
  color: var(--loh-navy) !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  border-radius: var(--loh-radius-full) !important;
  box-shadow: 0 6px 18px rgba(212,160,57,0.4) !important;
  transition: var(--loh-transition) !important;
  text-decoration: none !important;
  letter-spacing: 0.03em;
  border: none;
}
.thm-btn:hover, .thm-btn.dynamic-radius:hover {
  background: var(--loh-gold-light) !important;
  color: var(--loh-navy) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 28px rgba(212,160,57,0.5) !important;
}

.loh-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}

.loh-hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.loh-hero-stat-value {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
  font-weight: 700;
  color: #fff !important;
  line-height: 1 !important;
}
.loh-hero-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.loh-hero-stat-value em {
  color: var(--loh-gold) !important;
  font-style: normal;
}

/* ---- TRUST BAR ---- */
.loh-trust-bar {
  background: var(--loh-off-white);
  border-bottom: 1px solid var(--loh-gray-200);
  padding: 18px 0;
}
.loh-trust-bar-inner {
  max-width: var(--loh-container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.loh-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--loh-gray-700) !important;
}
.loh-trust-item i {
  color: var(--loh-gold) !important;
  font-size: 1.1rem;
}
/* Old trust banner */
.loh-trust-banner { display: none; }

/* ---- SECTIONS ---- */
.loh-section {
  padding: var(--loh-section-pad) 0;
}
.loh-section-sm {
  padding: 64px 0;
}
.loh-container {
  max-width: var(--loh-container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.loh-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--loh-gold) !important;
  margin-bottom: 16px;
}
.loh-section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--loh-gold);
  border-radius: 2px;
}
.loh-section-title {
  color: var(--loh-navy) !important;
  margin-bottom: 16px;
}
.loh-section-desc {
  font-size: 1.05rem;
  color: var(--loh-gray-600) !important;
  max-width: 640px;
  line-height: 1.8 !important;
}

/* ---- ABOUT SECTION ---- */
.loh-about-section {
  background: var(--loh-white);
}
.loh-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.loh-about-img-wrap {
  position: relative;
}
.loh-about-img-wrap img {
  width: 100%;
  border-radius: var(--loh-radius-lg);
  object-fit: cover;
  object-position: top;
  aspect-ratio: 4/3;
  box-shadow: var(--loh-shadow-xl);
}
.loh-about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: var(--loh-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--loh-shadow-lg);
  text-align: center;
  padding: 10px;
}
.loh-about-badge-num {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--loh-navy) !important;
  line-height: 1;
}
.loh-about-badge-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--loh-navy) !important;
  margin-top: 2px;
}

.loh-about-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.loh-about-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--loh-off-white);
  border-radius: var(--loh-radius-md);
  border-left: 3px solid var(--loh-gold);
}
.loh-about-bullet i {
  color: var(--loh-gold) !important;
  font-size: 1.1rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.loh-about-bullet p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--loh-gray-700) !important;
  line-height: 1.4 !important;
}

/* ---- IMPACT / COUNTER SECTION ---- */
.loh-impact-section {
  background: var(--loh-navy);
  position: relative;
  overflow: hidden;
}
.loh-impact-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,160,57,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.loh-impact-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.loh-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}
.loh-impact-item {
  text-align: center;
  padding: 32px 20px;
}
.loh-impact-icon {
  width: 60px;
  height: 60px;
  background: rgba(212,160,57,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.loh-impact-icon i {
  font-size: 1.5rem;
  color: var(--loh-gold) !important;
}
.loh-impact-num {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.5rem, 5vw, 3.8rem) !important;
  font-weight: 700;
  color: #fff !important;
  line-height: 1 !important;
  margin-bottom: 8px;
}
.loh-impact-num .prefix { color: var(--loh-gold) !important; }
.loh-impact-num .suffix { color: var(--loh-gold) !important; }
.loh-impact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Old counter overrides */
.about-counter { background: var(--loh-navy) !important; }
.about-counter h2 { color: #fff !important; }
.loh-stat { display: flex; align-items: center; justify-content: center; gap: 0; }
.loh-stat h1 { color: var(--loh-gold) !important; font-size: 3rem !important; }
.loh-stat h3 { color: #fff !important; }
.odometer { color: #fff !important; }

/* ---- FAQ SECTION ---- */
.loh-faq-section {
  background: var(--loh-off-white);
}
.loh-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.loh-faq-item {
  background: #fff;
  border-radius: var(--loh-radius-md);
  box-shadow: var(--loh-shadow-sm);
  border: 1px solid var(--loh-gray-200);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.loh-faq-item:hover { box-shadow: var(--loh-shadow-md); }
.loh-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.975rem;
  color: var(--loh-navy) !important;
  gap: 16px;
  user-select: none;
  transition: var(--loh-transition-fast);
}
.loh-faq-question:hover { color: var(--loh-navy) !important; }
.loh-faq-icon {
  width: 28px;
  height: 28px;
  background: var(--loh-off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--loh-transition-fast);
  border: 1px solid var(--loh-gray-200);
}
.loh-faq-icon i { font-size: 0.7rem; color: var(--loh-navy) !important; transition: var(--loh-transition-fast); }
.loh-faq-item.open .loh-faq-icon { background: var(--loh-gold); border-color: var(--loh-gold); }
.loh-faq-item.open .loh-faq-icon i { color: var(--loh-navy) !important; transform: rotate(45deg); }
.loh-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 24px;
  font-size: 0.935rem;
  color: var(--loh-gray-600) !important;
  line-height: 1.75 !important;
}
.loh-faq-item.open .loh-faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* Old FAQ (bootstrap collapse) */
#accordion { display: none; }
.faq-one__content .para-title { display: none; }

/* ---- QUOTE/CTA BANNER ---- */
.loh-quote-banner {
  background: linear-gradient(135deg, var(--loh-navy) 0%, var(--loh-navy-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 24px;
}
.loh-quote-banner::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20rem;
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.loh-quote-text {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.4rem, 3vw, 2.2rem) !important;
  color: #fff !important;
  font-style: italic;
  max-width: 760px;
  margin: 0 auto 32px;
  line-height: 1.5 !important;
}
.loh-quote-sub {
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.9rem;
  margin-bottom: 36px;
}

/* Old video-card */
.video-card {
  background: linear-gradient(135deg, var(--loh-navy) 0%, var(--loh-navy-light) 100%) !important;
}
.video-card__bg { display: none !important; }
.video-card::before { display: none !important; }
.video-card p, .video-card h3 { color: #fff !important; }
.video-card p img { display: none; }

/* ---- PAGE HERO ---- */
.loh-page-hero {
  background: linear-gradient(135deg, var(--loh-navy-dark) 0%, var(--loh-navy) 60%, var(--loh-navy-light) 100%);
  padding: 64px 24px 56px;
  position: relative;
  overflow: hidden;
}
.loh-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--loh-gold) 0%, var(--loh-gold-light) 100%);
}
.loh-page-hero .container {
  max-width: var(--loh-container-max);
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
}
.loh-page-breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55) !important;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.loh-page-breadcrumb::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--loh-gold);
}
.loh-page-breadcrumb a {
  color: rgba(255,255,255,0.55) !important;
  text-decoration: none;
  transition: var(--loh-transition-fast);
}
.loh-page-breadcrumb a:hover { color: rgba(255,255,255,0.85) !important; }
.loh-page-hero h1 {
  color: #fff !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  margin-bottom: 10px;
}
.loh-page-hero p {
  color: rgba(255,255,255,0.72) !important;
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0;
  line-height: 1.6 !important;
}

/* ---- TEAM CARDS ---- */
.loh-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 28px;
}
.loh-team-card {
  background: #fff;
  border-radius: var(--loh-radius-lg);
  overflow: hidden;
  box-shadow: var(--loh-shadow-sm);
  border: 1px solid var(--loh-gray-200);
  transition: var(--loh-transition);
  cursor: default;
}
.loh-team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--loh-shadow-xl);
  border-color: transparent;
}
.loh-team-card img.headshot {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}
.loh-team-card:hover img.headshot { transform: scale(1.04); }
.loh-team-card-body {
  padding: 18px 20px;
  border-top: 3px solid var(--loh-gold);
}
.loh-team-card-body h3 {
  font-size: 1rem !important;
  margin-bottom: 4px;
  color: var(--loh-navy) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
}
.loh-team-card-body p {
  font-size: 0.8rem;
  color: var(--loh-gold) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

/* ---- CARD SURFACE ---- */
.loh-card-surface {
  background: #fff;
  border-radius: var(--loh-radius-lg);
  padding: 36px;
  box-shadow: var(--loh-shadow-md);
  border: 1px solid var(--loh-gray-100);
  transition: var(--loh-transition);
}
.loh-card-surface:hover {
  transform: translateY(-4px);
  box-shadow: var(--loh-shadow-lg);
}

/* ---- MISSION CARD ---- */
.loh-mission-card {
  background: linear-gradient(135deg, #f8f9fb 0%, #fff 100%);
  border-radius: var(--loh-radius-xl);
  padding: 60px;
  text-align: center;
  border: 1px solid var(--loh-gray-200);
  max-width: 800px;
  margin: 0 auto;
}
.loh-mission-icon {
  font-size: 3rem !important;
  color: var(--loh-gold) !important;
  margin-bottom: 24px;
  display: block;
}

/* ---- DONATE PAGE ---- */
.loh-donate-embed-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--loh-off-white);
  border-radius: var(--loh-radius-lg);
  padding: 40px 20px;
  border: 1px solid var(--loh-gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.loh-donate-embed-wrap iframe {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  max-height: none !important;
  margin: 0 auto !important;
  border: none !important;
}
.loh-donate-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}
.loh-donate-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--loh-gray-600) !important;
}
.loh-donate-trust-item i { color: var(--loh-gold) !important; font-size: 1.2rem; }

/* ---- VOLUNTEER CARD ---- */
.loh-volunteer-card {
  background: #fff;
  border-radius: var(--loh-radius-xl);
  padding: 60px;
  text-align: center;
  border: 1px solid var(--loh-gray-200);
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--loh-shadow-md);
}

/* ---- FOOTER ---- */
.loh-footer {
  background: var(--loh-navy-dark, #001a3a);
  color: rgba(255,255,255,0.65) !important;
  padding: 80px 0 0 !important;
  position: relative;
  border-top: 4px solid #C8A951;
}
.loh-footer-inner {
  max-width: var(--loh-container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
}
.loh-footer-brand { display: flex; flex-direction: column; gap: 16px; }
.loh-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.loh-footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.loh-footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.loh-footer-logo-text span:first-child {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff !important;
  line-height: 1.2;
}
.loh-footer-logo-text span:last-child {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8A951 !important;
  line-height: 1;
}
.loh-footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7 !important;
  color: rgba(255,255,255,0.6) !important;
  margin: 0;
}
.loh-footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.loh-footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.875rem;
  transition: var(--loh-transition-fast);
  text-decoration: none;
}
.loh-footer-social-link:hover {
  background: var(--loh-gold);
  border-color: var(--loh-gold);
  color: var(--loh-navy) !important;
  transform: translateY(-3px);
}
.loh-footer-col h4 {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4) !important;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif !important;
}
.loh-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.loh-footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none;
  transition: var(--loh-transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.loh-footer-links a:hover { color: #fff !important; transform: translateX(4px); }
.loh-footer-links a::before {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  transition: var(--loh-transition-fast);
}
.loh-footer-links a:hover::before { width: 20px; background: var(--loh-gold); }

.loh-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65) !important;
}
.loh-footer-contact-item i {
  color: var(--loh-gold) !important;
  font-size: 0.875rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}
.loh-footer-contact-item a {
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none;
}
.loh-footer-contact-item a:hover { color: #fff !important; }

.loh-footer-bottom {
  margin-top: 60px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  max-width: var(--loh-container-max);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.loh-footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45) !important;
  margin: 0;
  line-height: 1.5 !important;
}
.loh-footer-scroll-top {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6) !important;
  cursor: pointer;
  transition: var(--loh-transition-fast);
  text-decoration: none;
}
.loh-footer-scroll-top:hover {
  background: var(--loh-gold);
  border-color: var(--loh-gold);
  color: var(--loh-navy) !important;
}

/* Hide old footer */
.site-footer { display: none !important; }
.mobile-nav__wrapper { display: none !important; }
.footer-social { display: none !important; }

/* ---- FAB DONATE ---- */
.loh-fab-donate {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--loh-gold);
  color: var(--loh-navy) !important;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--loh-radius-full);
  box-shadow: 0 8px 24px rgba(212,160,57,0.5);
  transition: var(--loh-transition);
  text-decoration: none;
}
.loh-fab-donate:hover {
  background: var(--loh-gold-light);
  color: var(--loh-navy) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212,160,57,0.6);
}

/* ---- DONATE MODAL ---- */
.loh-donate-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.loh-donate-modal.is-open {
  pointer-events: all;
  opacity: 1;
}
.loh-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,26,58,0.75);
  backdrop-filter: blur(4px);
}
.loh-modal-box {
  position: relative;
  background: #fff;
  border-radius: var(--loh-radius-xl);
  width: min(580px, 95vw);
  height: 92vh;
  max-height: 92vh;
  overflow: hidden;
  box-shadow: var(--loh-shadow-xl);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.loh-donate-modal.is-open .loh-modal-box { transform: scale(1) translateY(0); }
.loh-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--loh-gray-200);
  background: var(--loh-navy);
  color: #fff;
}
.loh-modal-header h3 { color: #fff !important; font-size: 1.1rem !important; margin: 0 !important; }
.loh-modal-close {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  transition: var(--loh-transition-fast);
}
.loh-modal-close:hover { background: rgba(255,255,255,0.25); }
.loh-modal-body { flex: 1; overflow-y: auto; padding: 0; display: flex; flex-direction: column; align-items: stretch; width: 100%; }
.loh-modal-body iframe { display: block !important; width: 100% !important; max-width: 100% !important; min-height: 700px !important; height: auto !important; max-height: none !important; flex: none; margin: 0 auto !important; border: none !important; }
@media (max-width: 600px) {
  .loh-modal-box { height: 96vh !important; max-height: 96vh !important; }
  .loh-modal-body { padding: 0 !important; }
  .loh-modal-body iframe { width: 100% !important; max-width: 100% !important; min-height: 600px !important; }
}

/* ---- ANIMATIONS ---- */
.loh-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.loh-fade-up.loh-visible {
  opacity: 1;
  transform: translateY(0);
}
.loh-fade-up:nth-child(2) { transition-delay: 0.1s; }
.loh-fade-up:nth-child(3) { transition-delay: 0.2s; }
.loh-fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .loh-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .loh-about-img-wrap { max-width: 560px; margin: 0 auto; }
  .loh-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --loh-section-pad: 60px; }
  .loh-nav-links, .loh-lang-toggle, .loh-nav-cta { display: none !important; }
  .loh-hamburger { display: flex; }
  .loh-about-bullets { grid-template-columns: 1fr; }
  .loh-impact-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .loh-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .loh-hero-stats { gap: 24px; margin-top: 40px; padding-top: 30px; }
  .loh-mission-card, .loh-volunteer-card { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .loh-impact-grid { grid-template-columns: 1fr; }
  .loh-footer-inner { grid-template-columns: 1fr; }
  .loh-hero-actions { flex-direction: column; align-items: flex-start; }
  .loh-btn-primary, .loh-btn-secondary { width: 100%; justify-content: center; }
  .loh-footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- NAVBAR SCROLL BEHAVIOR JS helper ---- */
.loh-navbar-solid {
  background: var(--loh-navy) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
