/* ==========================================================================
   LOH Modern CSS — Complete Visual Redesign
   Inspired by: charity:water, Malala Fund, Kiva, The Ocean Cleanup, UNICEF
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --loh-navy:          #002b56;
  --loh-navy-light:    #003d7a;
  --loh-navy-dark:     #001a3a;
  --loh-gold:          #f0a500;
  --loh-gold-light:    #ffc843;
  --loh-gold-hover:    #d49000;
  --loh-white:         #ffffff;
  --loh-off-white:     #f8f9fa;
  --loh-gray-50:       #f9fafb;
  --loh-gray-100:      #f3f4f6;
  --loh-gray-200:      #e5e7eb;
  --loh-gray-300:      #d1d5db;
  --loh-gray-600:      #4b5563;
  --loh-gray-800:      #1f2937;
  --loh-shadow-sm:     0 1px 3px rgba(0,0,0,0.08);
  --loh-shadow-md:     0 4px 20px rgba(0,0,0,0.10);
  --loh-shadow-lg:     0 10px 40px rgba(0,0,0,0.14);
  --loh-shadow-xl:     0 20px 60px rgba(0,0,0,0.18);
  --loh-radius-sm:     8px;
  --loh-radius-md:     16px;
  --loh-radius-lg:     24px;
  --loh-radius-xl:     32px;
  --loh-radius-full:   999px;
  --loh-transition:      all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --loh-transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --loh-section-gap:     110px;
  --loh-section-gap-sm:  70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: var(--loh-gray-600) !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-color: #fff !important;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif !important;
  letter-spacing: -0.02em;
  line-height: 1.1;
  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;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem) !important; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem) !important; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem) !important; }
p  { line-height: 1.75 !important; }
a  { transition: var(--loh-transition-fast); }

.pt-120 { padding-top: var(--loh-section-gap) !important; }
.pb-120 { padding-bottom: var(--loh-section-gap) !important; }
@media (max-width: 991px) {
  .pt-120 { padding-top: var(--loh-section-gap-sm) !important; }
  .pb-120 { padding-bottom: var(--loh-section-gap-sm) !important; }
}


/* ---- HEADER ---- */
.main-header__top {
  background: var(--loh-navy-dark) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  padding: 8px 0 !important;
}
.main-header__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.85rem; margin-right: 6px;
  transition: var(--loh-transition-fast); text-decoration: none;
}
.main-header__social a:hover {
  background: var(--loh-gold) !important; border-color: var(--loh-gold) !important;
  color: var(--loh-navy) !important; transform: translateY(-2px);
}
.header-upper {
  background: #fff !important; border-bottom: 1px solid var(--loh-gray-100) !important;
  padding: 12px 0 !important; box-shadow: var(--loh-shadow-sm);
}
.logo-box a img { transition: var(--loh-transition-fast); }
.logo-box a:hover img { opacity: 0.85; transform: scale(1.03); }
.main-menu {
  background: var(--loh-navy) !important;
  box-shadow: 0 4px 20px rgba(0,43,86,0.25) !important;
}
.main-menu__list > li > a {
  font-family: 'Inter', sans-serif !important; font-weight: 500 !important;
  font-size: 13px !important; letter-spacing: 0.08em !important;
  text-transform: uppercase !important; color: rgba(255,255,255,0.88) !important;
  padding: 20px 18px !important; position: relative; transition: var(--loh-transition-fast);
}
.main-menu__list > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0); width: 80%; height: 2px;
  background: var(--loh-gold); border-radius: 1px; transition: transform 0.25s ease;
}
.main-menu__list > li:hover > a,
.main-menu__list > li.current > a { color: #fff !important; }
.main-menu__list > li:hover > a::after,
.main-menu__list > li.current > a::after { transform: translateX(-50%) scaleX(1); }
.main-menu__list .dropdown > ul {
  background: #fff !important; border-radius: var(--loh-radius-md) !important;
  border: 1px solid var(--loh-gray-100) !important; box-shadow: var(--loh-shadow-lg) !important;
  padding: 10px 0 !important; margin-top: 4px !important; min-width: 200px !important;
}
.main-menu__list .dropdown > ul li a {
  font-family: 'Inter', sans-serif !important; font-size: 13.5px !important;
  color: var(--loh-gray-800) !important; padding: 10px 20px !important;
  transition: var(--loh-transition-fast);
}
.main-menu__list .dropdown > ul li a:hover {
  color: var(--loh-navy) !important; background: var(--loh-gray-50) !important; padding-left: 24px !important;
}
.stricky-header-two {
  backdrop-filter: blur(20px) !important; -webkit-backdrop-filter: blur(20px) !important;
  background: rgba(0,43,86,0.92) !important; border-bottom: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2) !important;
}
.loh-donated-pill {
  background: rgba(240,165,0,0.15) !important; border: 1px solid rgba(240,165,0,0.5) !important;
  color: #fff !important; border-radius: var(--loh-radius-full) !important;
  padding: 5px 16px !important; font-family: 'Inter', sans-serif !important;
  font-size: 11px !important; line-height: 1.5 !important;
  text-align: center !important; white-space: nowrap !important; transition: var(--loh-transition-fast);
}
.loh-donated-pill:hover { background: rgba(240,165,0,0.25) !important; }
.loh-donated-pill strong {
  color: var(--loh-gold) !important; display: block !important;
  font-size: 13px !important; font-weight: 700 !important;
}
.loh-donated-pill span { font-size: 10px !important; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.08em; }
.main-menu .thm-btn.yellow-button {
  background: var(--loh-gold) !important; color: var(--loh-navy) !important;
  font-family: 'Inter', sans-serif !important; font-weight: 700 !important;
  font-size: 13px !important; letter-spacing: 0.05em !important;
  border-radius: var(--loh-radius-full) !important; padding: 12px 24px !important;
  border: none !important; box-shadow: 0 4px 16px rgba(240,165,0,0.4) !important;
  transition: var(--loh-transition-fast) !important; margin-left: 12px;
}
.main-menu .thm-btn.yellow-button:hover {
  background: var(--loh-gold-hover) !important; transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(240,165,0,0.5) !important; color: var(--loh-navy) !important;
}


/* ---- HERO ---- */
.main-slider { position: relative; overflow: hidden; }
.main-slider .swiper-container {
  height: 100vh !important; min-height: 600px !important; max-height: 900px !important;
}
@media (max-width: 767px) {
  .main-slider .swiper-container { height: 80vh !important; min-height: 500px !important; }
}
@keyframes kenBurns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}
.main-slider .swiper-slide-active .image-layer { animation: kenBurns 8s ease-out forwards !important; }
.main-slider .swiper-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,43,86,0.88) 0%, rgba(0,43,86,0.55) 50%, rgba(0,43,86,0.30) 100%) !important;
  z-index: 1;
}
.main-slider .swiper-slide .container {
  position: relative; z-index: 2; height: 100%;
  display: flex !important; align-items: center !important;
}
.loh-hero-panel {
  display: inline-block; padding: 40px 44px 36px !important;
  border-radius: var(--loh-radius-xl) !important; border: 1px solid rgba(255,255,255,0.18) !important;
  background: rgba(0,15,35,0.45) !important; backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important; box-shadow: 0 32px 80px rgba(0,0,0,0.35) !important;
  max-width: 600px;
}
@media (max-width: 991px) {
  .loh-hero-panel { padding: 28px 28px 24px !important; border-radius: var(--loh-radius-lg) !important; }
}
.loh-hero-panel h2 {
  color: #fff !important; font-size: clamp(2.4rem, 5.5vw, 4.2rem) !important;
  line-height: 1.08 !important; letter-spacing: -0.02em !important;
  text-shadow: 0 4px 20px rgba(0,0,0,0.45) !important; margin-bottom: 16px !important;
}
.loh-hero-panel h2 span { color: var(--loh-gold) !important; }
.loh-hero-panel p {
  color: rgba(255,255,255,0.9) !important; font-size: 1.15rem !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35) !important; margin-bottom: 28px !important; font-weight: 400 !important;
}
.main-slider .swiper-pagination { bottom: 32px !important; z-index: 10; }
.main-slider .swiper-pagination-bullet {
  width: 10px !important; height: 10px !important;
  background: rgba(255,255,255,0.5) !important; opacity: 1 !important; transition: var(--loh-transition-fast);
}
.main-slider .swiper-pagination-bullet-active {
  background: var(--loh-gold) !important; width: 28px !important; border-radius: 5px !important;
}
@media (max-width: 600px) { .main-slider { display: none !important; } }

/* ---- BUTTONS ---- */
.thm-btn {
  font-family: 'Inter', sans-serif !important; font-weight: 600 !important;
  font-size: 14px !important; letter-spacing: 0.04em !important;
  border-radius: var(--loh-radius-full) !important; padding: 14px 34px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important; transition: var(--loh-transition-fast) !important;
  will-change: transform; display: inline-block; text-decoration: none !important;
}
.thm-btn:hover { transform: translateY(-3px) !important; box-shadow: var(--loh-shadow-lg) !important; }
.thm-btn:active { transform: translateY(-1px) !important; }
.thm-btn.dynamic-radius {
  background: var(--loh-gold) !important; color: var(--loh-navy) !important;
  border: none !important; box-shadow: 0 4px 20px rgba(240,165,0,0.4) !important;
}
.thm-btn.dynamic-radius:hover {
  background: var(--loh-gold-hover) !important; box-shadow: 0 8px 32px rgba(240,165,0,0.5) !important;
  color: var(--loh-navy) !important;
}


/* ---- TRUST BANNER ---- */
.loh-trust-banner {
  background: var(--loh-navy-dark) !important;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 3px solid var(--loh-gold);
  padding: 22px 0 !important;
}
.loh-trust-banner .container {
  display: flex !important; align-items: center !important;
  justify-content: center !important; gap: 48px !important; flex-wrap: wrap !important;
}
.loh-trust-item {
  display: flex !important; align-items: center !important; gap: 12px !important;
  color: rgba(255,255,255,0.9) !important; font-family: 'Inter', sans-serif !important;
  font-size: 0.88rem !important; font-weight: 600 !important;
  letter-spacing: 0.03em; white-space: nowrap;
}
.loh-trust-item i { color: var(--loh-gold) !important; font-size: 1.3rem !important; flex-shrink: 0; }
@media (max-width: 767px) {
  .loh-trust-banner .container { gap: 24px !important; }
  .loh-trust-item { font-size: 0.8rem !important; }
}

/* ---- ABOUT ---- */
.about-two { background: var(--loh-white) !important; }
.about-two__image img.team {
  border-radius: var(--loh-radius-xl) !important; box-shadow: var(--loh-shadow-xl) !important;
  transition: var(--loh-transition) !important; width: 100% !important; display: block;
}
.about-two__image:hover img.team {
  transform: rotate(1deg) scale(1.02) !important; box-shadow: 0 30px 80px rgba(0,0,0,0.22) !important;
}
.block-title p {
  font-family: 'Inter', sans-serif !important; font-size: 0.85rem !important;
  font-weight: 600 !important; letter-spacing: 0.12em !important;
  text-transform: uppercase !important; color: var(--loh-gold) !important;
  margin-bottom: 12px !important; display: flex; align-items: center; gap: 8px;
}
.block-title h2, .block-title h3 { color: var(--loh-navy) !important; margin-bottom: 0 !important; }
.about-two__box, .about-two__box-two {
  background: var(--loh-gray-50) !important; border-radius: var(--loh-radius-md) !important;
  border: 1px solid var(--loh-gray-100) !important; box-shadow: var(--loh-shadow-sm) !important;
  padding: 20px !important; margin-bottom: 16px !important; transition: var(--loh-transition-fast) !important;
}
.about-two__box:hover, .about-two__box-two:hover {
  transform: translateY(-4px) !important; box-shadow: var(--loh-shadow-md) !important;
  background: #fff !important; border-color: var(--loh-gray-200) !important;
}
.about-two__box h3, .about-two__box-two h3 {
  font-family: 'Inter', sans-serif !important; font-size: 0.95rem !important;
  font-weight: 600 !important; color: var(--loh-navy) !important;
  display: flex; align-items: center; gap: 10px; margin-bottom: 6px !important;
}
.about-two__box p, .about-two__box-two p {
  font-size: 0.88rem !important; color: var(--loh-gray-600) !important; margin: 0 !important;
}

/* ---- CARDS ---- */
.loh-card-surface {
  background: #fff !important; border-radius: var(--loh-radius-xl) !important;
  border: 1px solid var(--loh-gray-100) !important; box-shadow: var(--loh-shadow-md) !important;
  padding: 40px !important; transition: var(--loh-transition-fast) !important;
}
.loh-card-surface:hover { transform: translateY(-5px) !important; box-shadow: var(--loh-shadow-lg) !important; }
@media (max-width: 767px) { .loh-card-surface { padding: 24px !important; } }


/* ---- VIDEO / PARALLAX ---- */
.video-card { position: relative; overflow: hidden; }
.video-card__bg {
  background-attachment: fixed !important; background-size: cover !important;
  background-position: center !important;
}
.video-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,43,86,0.82) 0%, rgba(0,26,58,0.72) 100%) !important;
  z-index: 0;
}
.video-card .container { position: relative; z-index: 1; }
.video-card p {
  color: var(--loh-gold) !important; font-weight: 600 !important; font-size: 0.85rem !important;
  letter-spacing: 0.12em !important; text-transform: uppercase !important;
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px !important;
}
.video-card h3 {
  color: #fff !important; font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35) !important; margin-bottom: 32px !important;
  font-family: 'Playfair Display', serif !important; font-style: italic;
}

/* ---- FAQ ACCORDION ---- */
.faq-one { background: var(--loh-gray-50) !important; }
#accordion { list-style: none !important; padding: 0 !important; }
#accordion li {
  background: #fff !important; border-radius: var(--loh-radius-md) !important;
  border: 1px solid var(--loh-gray-200) !important; box-shadow: var(--loh-shadow-sm) !important;
  margin-bottom: 12px !important; overflow: hidden; transition: box-shadow var(--loh-transition-fast);
}
#accordion li:hover { box-shadow: var(--loh-shadow-md) !important; }
#accordion li h2.para-title {
  font-family: 'Inter', sans-serif !important; font-size: 1rem !important;
  font-weight: 600 !important; color: var(--loh-navy) !important; margin: 0 !important;
}
#accordion li h2.para-title span {
  padding: 18px 22px !important; display: flex !important; align-items: center !important;
  gap: 14px !important; cursor: pointer; font-size: 1rem !important;
  font-weight: 600 !important; color: var(--loh-navy) !important;
}
#accordion li h2.para-title span:not(.collapsed) {
  color: var(--loh-navy) !important; border-left: 3px solid var(--loh-gold);
  background: rgba(240,165,0,0.04);
}
#accordion .collapse.show { border-top: 1px solid var(--loh-gray-100); }
#accordion .collapse p, #accordion .collapsing p {
  padding: 0 22px 18px !important; color: var(--loh-gray-600) !important;
  font-size: 0.95rem !important; line-height: 1.7 !important; margin: 0 !important;
}
.loh-faq-list { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.loh-faq-item {
  background: #fff !important; border-radius: var(--loh-radius-md) !important;
  border: 1px solid var(--loh-gray-200) !important; box-shadow: var(--loh-shadow-sm) !important;
  margin-bottom: 14px !important; overflow: hidden;
  transition: box-shadow var(--loh-transition-fast), border-color var(--loh-transition-fast);
}
.loh-faq-item:hover { box-shadow: var(--loh-shadow-md) !important; }
.loh-faq-item.open { border-color: var(--loh-gold) !important; border-left: 3px solid var(--loh-gold) !important; }
.loh-faq-question {
  display: flex !important; align-items: center !important; justify-content: space-between !important;
  padding: 20px 24px !important; cursor: pointer; color: var(--loh-navy) !important;
  font-family: 'Inter', sans-serif !important; font-weight: 600 !important; font-size: 1rem !important;
  user-select: none; gap: 16px; transition: background var(--loh-transition-fast);
}
.loh-faq-question:hover { background: var(--loh-gray-50) !important; }
.loh-faq-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--loh-navy) !important; color: #fff !important; display: flex;
  align-items: center; justify-content: center; font-size: 0.75rem;
  transition: transform 0.35s ease, background 0.25s ease;
}
.loh-faq-item.open .loh-faq-icon {
  background: var(--loh-gold) !important; color: var(--loh-navy) !important; transform: rotate(45deg);
}
.loh-faq-answer {
  display: none; padding: 16px 24px 20px !important; color: var(--loh-gray-600) !important;
  font-size: 0.95rem !important; line-height: 1.75 !important;
  border-top: 1px solid var(--loh-gray-100);
}
.loh-faq-item.open .loh-faq-answer { display: block; }


/* ---- IMPACT / COUNTER ---- */
.about-counter {
  background: linear-gradient(135deg, var(--loh-navy-dark) 0%, var(--loh-navy) 60%, var(--loh-navy-light) 100%) !important;
  position: relative; overflow: hidden;
}
.about-counter::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.about-counter h2 {
  color: rgba(255,255,255,0.6) !important; font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important; font-weight: 600 !important;
  letter-spacing: 0.16em !important; text-transform: uppercase !important; margin-bottom: 8px !important;
}
.loh-stat {
  display: flex !important; align-items: center !important;
  justify-content: center !important; gap: 8px !important; flex-wrap: wrap;
}
.loh-stat h1 {
  color: var(--loh-gold) !important; font-family: 'Playfair Display', serif !important;
  font-size: clamp(3rem, 8vw, 5.5rem) !important; font-weight: 700 !important;
  line-height: 1 !important; margin: 0 !important;
}
.loh-stat h3.odometer {
  color: var(--loh-gold) !important; font-family: 'Playfair Display', serif !important;
  font-size: clamp(3rem, 8vw, 5.5rem) !important; font-weight: 700 !important;
  line-height: 1 !important; margin: 0 !important;
}

/* ---- PAGE HERO ---- */
.loh-page-hero {
  background: linear-gradient(135deg, var(--loh-navy-dark) 0%, var(--loh-navy) 60%, var(--loh-navy-light) 100%) !important;
  padding: 90px 0 70px !important; position: relative; overflow: hidden;
}
.loh-page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(240,165,0,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.loh-page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--loh-gold), transparent);
}
.loh-page-hero .container { position: relative; z-index: 1; }
.loh-page-hero h1, .loh-page-hero h2 {
  color: #fff !important; font-size: clamp(2.2rem, 5vw, 3.4rem) !important;
  font-weight: 700 !important; margin: 0 0 12px 0 !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3) !important;
}
.loh-page-hero p {
  color: rgba(255,255,255,0.78) !important; font-family: 'Inter', sans-serif !important;
  font-size: 1.1rem !important; margin: 0 !important; font-weight: 400 !important;
}
.loh-page-breadcrumb {
  font-family: 'Inter', sans-serif !important; font-size: 0.8rem !important;
  color: rgba(255,255,255,0.5) !important; margin-bottom: 20px !important; letter-spacing: 0.05em;
}
.loh-page-breadcrumb a { color: var(--loh-gold) !important; text-decoration: none !important; }
.loh-page-breadcrumb a:hover { color: var(--loh-gold-light) !important; }


/* ---- TEAM ---- */
.loh-team-grid {
  display: grid !important; grid-template-columns: repeat(4, 1fr) !important;
  gap: 28px !important; margin-top: 48px !important;
}
@media (max-width: 1199px) { .loh-team-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (max-width: 767px)  { .loh-team-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 18px !important; } }
@media (max-width: 480px)  { .loh-team-grid { grid-template-columns: 1fr !important; } }
.loh-team-card {
  background: #fff !important; border-radius: var(--loh-radius-lg) !important;
  border: 1px solid var(--loh-gray-100) !important; box-shadow: var(--loh-shadow-sm) !important;
  overflow: hidden; transition: transform 0.35s ease, box-shadow 0.35s ease !important; text-align: center;
}
.loh-team-card:hover { transform: translateY(-8px) !important; box-shadow: var(--loh-shadow-xl) !important; }
.loh-team-card img.headshot {
  width: 100% !important; height: 220px !important; object-fit: cover !important;
  object-position: top center !important; display: block !important;
  filter: grayscale(20%) !important; transition: filter 0.4s ease, transform 0.4s ease !important;
}
.loh-team-card:hover img.headshot { filter: grayscale(0%) !important; transform: scale(1.04) !important; }
.loh-team-card-body { padding: 20px 18px 24px !important; }
.loh-team-card-body h3 {
  font-family: 'Playfair Display', serif !important; font-size: 1rem !important;
  font-weight: 600 !important; color: var(--loh-navy) !important;
  margin: 0 0 6px !important; line-height: 1.3 !important; letter-spacing: 0 !important;
}
.loh-team-card-body p {
  font-family: 'Inter', sans-serif !important; font-size: 0.82rem !important;
  color: var(--loh-gold) !important; font-weight: 600 !important;
  text-transform: uppercase !important; letter-spacing: 0.08em !important; margin: 0 !important;
}

/* ---- MISSION / VOLUNTEER ---- */
.loh-mission-card {
  background: #fff !important; border-radius: var(--loh-radius-xl) !important;
  box-shadow: var(--loh-shadow-lg) !important; padding: 56px 48px !important;
  max-width: 820px !important; margin: 0 auto !important;
  text-align: center !important; border: 1px solid var(--loh-gray-100) !important;
  position: relative; overflow: hidden;
}
.loh-mission-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--loh-navy), var(--loh-gold));
}
.loh-mission-icon { font-size: 3.5rem !important; color: var(--loh-gold) !important; margin-bottom: 28px !important; display: block !important; }
.loh-mission-card h2 { color: var(--loh-navy) !important; margin-bottom: 24px !important; }
.loh-mission-card p { font-size: 1.15rem !important; color: var(--loh-gray-600) !important; line-height: 1.85 !important; max-width: 680px; margin: 0 auto !important; }
@media (max-width: 767px) { .loh-mission-card { padding: 36px 24px !important; } }
.loh-volunteer-card {
  background: #fff !important; border-radius: var(--loh-radius-xl) !important;
  box-shadow: var(--loh-shadow-md) !important; padding: 56px 48px !important;
  text-align: center !important; border: 1px solid var(--loh-gray-100) !important;
  position: relative; overflow: hidden; max-width: 700px; margin: 0 auto;
}
.loh-volunteer-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--loh-gold), var(--loh-navy));
}
@media (max-width: 767px) { .loh-volunteer-card { padding: 36px 24px !important; } }

/* ---- CTA BANNER ---- */
.loh-cta-banner {
  background: linear-gradient(135deg, var(--loh-navy-dark) 0%, var(--loh-navy) 50%, var(--loh-navy-light) 100%) !important;
  padding: 100px 0 !important; text-align: center !important; position: relative; overflow: hidden;
}
.loh-cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(240,165,0,0.16) 0%, transparent 55%),
              radial-gradient(circle at 25% 50%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.loh-cta-banner .container { position: relative; z-index: 1; }
.loh-cta-banner h2 { color: #fff !important; font-size: clamp(1.8rem, 4vw, 3rem) !important; margin-bottom: 18px !important; }
.loh-cta-banner p { color: rgba(255,255,255,0.8) !important; font-size: 1.15rem !important; margin-bottom: 36px !important; }


/* ---- FOOTER ---- */
.site-footer { position: relative; }
.main-footer {
  background: var(--loh-navy-dark) !important; border-top: 3px solid var(--loh-gold) !important;
  padding-top: 80px !important; padding-bottom: 60px !important;
}
.footer-widget__title {
  font-family: 'Inter', sans-serif !important; font-size: 0.78rem !important;
  font-weight: 700 !important; letter-spacing: 0.14em !important; text-transform: uppercase !important;
  color: var(--loh-gold) !important; margin-bottom: 24px !important;
  position: relative; padding-bottom: 12px !important;
}
.footer-widget__title::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px;
  background: var(--loh-gold); border-radius: 1px;
}
.footer-widget__logo { opacity: 0.9; margin-bottom: 16px !important; }
.footer-widget__about p { color: rgba(255,255,255,0.6) !important; font-size: 0.9rem !important; line-height: 1.7 !important; margin-bottom: 20px !important; }
.footer-widget__contact li a {
  color: rgba(255,255,255,0.65) !important; font-size: 0.88rem !important;
  transition: var(--loh-transition-fast) !important; text-decoration: none !important;
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.footer-widget__contact li a:hover { color: var(--loh-gold) !important; padding-left: 4px; }
.footer-widget__link-list li a {
  color: rgba(255,255,255,0.62) !important; font-size: 0.9rem !important;
  transition: var(--loh-transition-fast) !important; text-decoration: none !important;
  display: block; padding: 4px 0 !important;
}
.footer-widget__link-list li a:hover { color: var(--loh-gold) !important; padding-left: 6px !important; }
.footer-bottom {
  background: rgba(0,0,0,0.3) !important; border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding: 20px 0 !important;
}
.footer-bottom p { color: rgba(255,255,255,0.45) !important; font-size: 0.82rem !important; margin: 0 !important; text-align: center; }
.footer-social { display: flex; gap: 10px; justify-content: center; align-items: center; margin-top: 8px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; background: transparent;
  border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.65) !important;
  font-size: 1rem; transition: var(--loh-transition-fast) !important; text-decoration: none !important;
}
.footer-social a:hover { background: var(--loh-gold) !important; border-color: var(--loh-gold) !important; color: var(--loh-navy) !important; transform: translateY(-3px); }
.footer-social a img { width: 22px !important; height: 22px !important; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-social a:hover img { filter: brightness(0) !important; opacity: 1; }
.scroll-to-top {
  position: fixed !important; bottom: 100px !important; right: 28px !important;
  width: 44px !important; height: 44px !important; background: var(--loh-navy) !important;
  color: #fff !important; border-radius: 50% !important; border: 2px solid rgba(255,255,255,0.2) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  z-index: 9990 !important; transition: var(--loh-transition-fast) !important;
  box-shadow: var(--loh-shadow-md) !important; cursor: pointer;
}
.scroll-to-top:hover { background: var(--loh-gold) !important; color: var(--loh-navy) !important; transform: translateY(-3px) !important; border-color: var(--loh-gold) !important; }


/* ---- FLOATING FAB ---- */
@keyframes fabPulse {
  0%   { box-shadow: 0 6px 24px rgba(240,165,0,0.55), 0 0 0 0 rgba(240,165,0,0.7); }
  50%  { box-shadow: 0 6px 24px rgba(240,165,0,0.55), 0 0 0 16px rgba(240,165,0,0); }
  100% { box-shadow: 0 6px 24px rgba(240,165,0,0.55), 0 0 0 0 rgba(240,165,0,0); }
}
.loh-fab-donate {
  position: fixed !important; bottom: 30px !important; right: 30px !important;
  z-index: 9999 !important; background: var(--loh-gold) !important;
  color: var(--loh-navy) !important; border: none !important;
  border-radius: var(--loh-radius-full) !important; padding: 15px 26px !important;
  font-family: 'Inter', sans-serif !important; font-size: 0.92rem !important;
  font-weight: 700 !important; letter-spacing: 0.04em !important;
  cursor: pointer !important; display: flex !important; align-items: center !important;
  gap: 8px !important; text-decoration: none !important;
  animation: fabPulse 2.5s infinite !important; transition: transform 0.2s ease !important;
}
.loh-fab-donate:hover {
  transform: translateY(-4px) scale(1.06) !important;
  box-shadow: 0 16px 40px rgba(240,165,0,0.65), 0 4px 12px rgba(0,0,0,0.25) !important;
  color: var(--loh-navy) !important; animation: none !important;
}
.loh-fab-donate i { font-size: 1rem !important; }
@media (max-width: 600px) {
  .loh-fab-donate { padding: 13px 20px !important; font-size: 0.85rem !important; bottom: 20px !important; right: 20px !important; }
}

/* ---- DONATE MODAL ---- */
.loh-donate-modal {
  position: fixed !important; inset: 0 !important; z-index: 99999 !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  padding: 20px !important; opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.loh-donate-modal.is-open { opacity: 1 !important; visibility: visible !important; }
.loh-modal-backdrop {
  position: absolute !important; inset: 0 !important; background: rgba(0,0,0,0.72) !important;
  backdrop-filter: blur(8px) !important; -webkit-backdrop-filter: blur(8px) !important;
}
.loh-modal-box {
  position: relative; z-index: 1; background: #fff !important;
  border-radius: var(--loh-radius-xl) !important; box-shadow: 0 40px 100px rgba(0,0,0,0.35) !important;
  width: 100% !important; max-width: 580px !important; height: 92vh !important; max-height: 92vh !important;
  overflow: hidden; display: flex; flex-direction: column;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.loh-donate-modal.is-open .loh-modal-box { transform: translateY(0) scale(1) !important; }
.loh-modal-header {
  display: flex !important; align-items: center !important; justify-content: space-between !important;
  padding: 18px 22px !important; background: var(--loh-navy) !important;
  color: #fff !important; flex-shrink: 0;
}
.loh-modal-header h3 {
  margin: 0 !important; font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important; font-weight: 600 !important; color: #fff !important;
}
.loh-modal-close {
  background: rgba(255,255,255,0.15) !important; border: none !important;
  color: #fff !important; width: 34px !important; height: 34px !important;
  border-radius: 50% !important; display: flex !important; align-items: center !important;
  justify-content: center !important; cursor: pointer !important; font-size: 0.95rem !important;
  transition: background 0.2s ease !important; flex-shrink: 0;
}
.loh-modal-close:hover { background: rgba(220,38,38,0.8) !important; }
.loh-modal-body { flex: 1; overflow: hidden; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 0; width: 100%; }
.loh-modal-body iframe { display: block !important; width: 100% !important; max-width: 100% !important; height: 100% !important; flex: 1; margin: 0 auto !important; border: none !important; }
@media (max-width: 600px) {
  .loh-modal-box { height: 96vh !important; max-height: 96vh !important; border-radius: var(--loh-radius-lg) !important; width: 95vw !important; }
  .loh-modal-body { padding: 0 !important; }
  .loh-modal-body iframe { width: 100% !important; max-width: 100% !important; }
}

/* ---- ANIMATIONS ---- */
.loh-fade-up {
  opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.loh-fade-up.loh-visible { opacity: 1 !important; transform: translateY(0) !important; }
.loh-animate {
  opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease;
}
.loh-animate.loh-visible { opacity: 1 !important; transform: translateY(0) !important; }

/* ---- MOBILE NAV ---- */
.mobile-nav__wrapper, .mobile-nav__content { background: var(--loh-navy-dark) !important; }
.mobile-nav__toggler { color: rgba(255,255,255,0.85) !important; transition: var(--loh-transition-fast) !important; }
.mobile-nav__toggler:hover { color: var(--loh-gold) !important; }
.mobile-nav__close { color: rgba(255,255,255,0.75) !important; }
.mobile-nav__contact li a { color: rgba(255,255,255,0.7) !important; }

/* ---- MISC ---- */
.loh-donate-embed-wrap {
  max-width: 600px; margin: 0 auto; background: #fff;
  border-radius: var(--loh-radius-xl); box-shadow: var(--loh-shadow-lg);
  overflow: hidden; border: 1px solid var(--loh-gray-100);
  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; margin: 0 auto !important; border: none !important; }
.loh-section-title { text-align: center; margin-bottom: 56px; }
.loh-section-title h2 { color: var(--loh-navy) !important; margin-bottom: 16px !important; }
.loh-section-title::after { content: ''; display: block; width: 56px; height: 3px; background: var(--loh-gold); border-radius: 2px; margin: 0 auto; }
.header-info__box-content a { color: var(--loh-navy) !important; font-size: 0.88rem !important; }
.header-info__box-content a:hover { color: var(--loh-gold) !important; }
.preloader { background: var(--loh-navy-dark) !important; }
.mfp-bg { background: rgba(0,0,0,0.8) !important; }

@media (max-width: 1199px) { :root { --loh-section-gap: 90px; } }
@media (max-width: 991px) { :root { --loh-section-gap: 70px; --loh-section-gap-sm: 50px; } }
@media (max-width: 767px) { :root { --loh-section-gap: 60px; } .loh-page-hero { padding: 70px 0 50px !important; } .about-two__image { margin-bottom: 32px; } }
@media (max-width: 480px) { :root { --loh-section-gap: 50px; } .thm-btn { padding: 12px 26px !important; font-size: 13px !important; } }
