/* =========================================================
   CARE VILLAGE FOUNDATION — Shared Stylesheet
   ========================================================= */

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --green-deep:   #163526;
  --green-mid:    #1E5440;
  --green-teal:   #1F7A5E;
  --green-light:  #2EA881;
  --green-pale:   #EAF4EF;
  --green-border: #C8E0D4;
  --teal-accent:  #17B99A;
  --gold:         #B8944A;
  --gold-light:   #D4AE6A;
  --white:        #FFFFFF;
  --off:          #F8FBF9;
  --text:         #0E1E16;
  --muted:        #4D6659;
  --rule:         #E0EDE7;
}

/* ── BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; width: 100%; }
h1,h2,h3,h4,h5,h6,blockquote { font-family: 'Cormorant Garamond', serif; }

/* Defensive media reset — nothing embedded can force horizontal scroll */
img, svg, iframe, video, embed, object { max-width: 100%; }

/* ── COMMON COMPONENTS ─────────────────────────────────── */
.section-pad { padding: 120px 0; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'DM Sans', sans-serif; font-size: .72rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--green-teal); font-weight: 600; margin-bottom: 20px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); flex-shrink: 0; }

.section-title { font-size: clamp(2rem, 3.8vw, 3.2rem); color: var(--green-deep); line-height: 1.18; margin-bottom: 24px; font-weight: 700; }
.section-lead { color: var(--muted); font-size: 1.05rem; line-height: 1.9; }

.section-label {
  font-family: 'DM Sans', sans-serif; font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  display: flex; align-items: center; gap: 12px; margin-bottom: 32px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--rule); }

/* ── TOP BAR ────────────────────────────────────────────── */
.top-bar {
  background: var(--green-deep); padding: 8px 0;
  font-family: 'DM Sans', sans-serif; font-size: .76rem;
  color: rgba(255,255,255,.6);
}
.top-bar a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.top-bar a:hover { color: var(--gold); }
.top-bar .sep { margin: 0 12px; opacity: .3; }

/* ── NAVBAR ─────────────────────────────────────────────── */
.header-wrap { position: sticky; top: 0; z-index: 1050; }
.navbar { background: #fff; border-bottom: 1px solid var(--rule); padding: 0; z-index: 1050; transition: box-shadow .3s; }
.navbar.scrolled { box-shadow: 0 6px 32px rgba(22,53,38,.1); }
.navbar .container { position: relative; }

.brand-logo-img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green-border); flex-shrink: 0; }
.brand-text { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 700; color: var(--green-deep); line-height: 1.2; min-width: 0; }
.brand-text span { display: block; font-size: .63rem; font-weight: 400; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; font-family: 'DM Sans', sans-serif; }

.navbar-nav .nav-link { color: var(--text) !important; font-size: .85rem; font-weight: 500; padding: 28px 15px !important; position: relative; transition: color .2s; font-family: 'DM Sans', sans-serif; letter-spacing: .01em; }
.navbar-nav .nav-link::after { content: '' !important; position: absolute; bottom: 0; left: 15px; right: 15px; height: 2px; background: transparent; border-radius: 2px 2px 0 0; transition: background .2s; border: none !important; width: auto !important; vertical-align: unset !important; margin: 0 !important; }
.navbar-nav .nav-link:hover::after { background: var(--green-teal); }
.navbar-nav .nav-link.active::after { background: var(--green-teal); }
.navbar-nav .dropdown-toggle::after { display: none !important; }
.navbar-nav .nav-link:hover { color: var(--green-teal) !important; }
.navbar-nav .nav-link.active { color: var(--green-deep) !important; font-weight: 600; }
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:focus-visible,
.navbar-toggler:focus { outline: none !important; box-shadow: none !important; }

.dropdown-menu { background: #fff; border: 1px solid var(--rule); border-radius: 12px; min-width: 230px; padding: 8px; box-shadow: 0 16px 48px rgba(22,53,38,.12); margin-top: 0 !important; animation: dropFade .18s ease; }
@keyframes dropFade { from { opacity:0; transform:translateY(6px) } to { opacity:1; transform:translateY(0) } }
.dropdown-item { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: .86rem; padding: 10px 12px; border-radius: 8px; transition: all .15s; font-family: 'DM Sans', sans-serif; text-decoration: none; }
.dropdown-item:hover { background: var(--green-pale); color: var(--green-teal); }
.di-icon { width: 30px; height: 30px; border-radius: 7px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: .85rem; color: var(--green-teal); flex-shrink: 0; transition: background .15s, color .15s; }
.dropdown-item:hover .di-icon { background: var(--green-teal); color: #fff; }
.di-text strong { display: block; font-size: .84rem; font-weight: 600; color: var(--green-deep); line-height: 1.2; }
.di-text span { display: block; font-size: .73rem; color: var(--muted); margin-top: 1px; }
.dropdown-item:hover .di-text strong { color: var(--green-teal); }
.dropdown-divider { border-color: var(--rule); margin: 4px 0; }

@keyframes donatePulse {
  0%   { box-shadow: 0 0 0 0 rgba(184,148,74,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(184,148,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,148,74,0); }
}
.nav-donate-btn { display: inline-block; background: var(--gold); color: #fff !important; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .88rem; letter-spacing: .04em; padding: 12px 28px; border-radius: 50px; text-decoration: none; transition: background .2s, transform .2s, box-shadow .2s; white-space: nowrap; box-shadow: 0 4px 18px rgba(184,148,74,.45); animation: donatePulse 2.2s ease-out infinite; text-shadow: 0 1px 3px rgba(0,0,0,.25); }
.nav-donate-btn:hover { background: var(--gold-light); color: #fff !important; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,148,74,.55); animation: none; }
.nav-item.donate-li { display: flex; align-items: center; padding: 0; margin-left: 10px; }
.navbar-toggler { border-color: var(--rule); }

/* ── PAGE HERO (shared) ──────────────────────────────────── */
.page-hero {
  background: var(--green-deep); padding: 100px 0 84px;
  position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 65% 40%, rgba(31,122,94,.28) 0%, transparent 65%); }
.page-hero::after { content: ''; position: absolute; top: -160px; right: -160px; width: 480px; height: 480px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.hero-deco { position: absolute; bottom: -90px; left: -90px; width: 340px; height: 340px; border-radius: 50%; border: 1px solid rgba(255,255,255,.04); }

.breadcrumb-bar { display: flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-size: .78rem; color: rgba(255,255,255,.45); margin-bottom: 24px; }
.breadcrumb-bar a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.breadcrumb-bar a:hover { color: var(--gold); }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: 'DM Sans', sans-serif; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-accent); font-weight: 600; margin-bottom: 18px; }
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

.page-hero h1 { font-size: clamp(2.8rem, 5.2vw, 4.4rem); color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero p,
.page-hero .hero-lead { color: rgba(255,255,255,.72); font-family: 'DM Sans', sans-serif; font-size: 1.02rem; line-height: 1.88; max-width: 580px; margin: 0; }

/* ── SHARED BUTTONS ──────────────────────────────────────── */
.btn-primary-dark { background: var(--gold); color: var(--green-deep); font-weight: 700; font-size: .9rem; padding: 14px 32px; border-radius: 50px; border: none; letter-spacing: .04em; text-decoration: none; display: inline-block; transition: all .25s; font-family: 'DM Sans', sans-serif; }
.btn-primary-dark:hover { background: var(--gold-light); color: var(--green-deep); transform: translateY(-2px); }
.btn-ghost-white { background: transparent; color: #fff; font-weight: 500; font-size: .9rem; padding: 13px 28px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,.5); text-decoration: none; display: inline-block; transition: all .25s; font-family: 'DM Sans', sans-serif; }
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* ── SHARED FORM STYLES ─────────────────────────────────── */
.form-label-cvf { font-family: 'DM Sans', sans-serif; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--green-deep); margin-bottom: 8px; display: block; }
.form-control-cvf { width: 100%; background: #fff; border: 1.5px solid var(--rule); border-radius: 10px; padding: 13px 16px; font-family: 'DM Sans', sans-serif; font-size: .92rem; color: var(--text); transition: border-color .2s, box-shadow .2s; outline: none; appearance: none; -webkit-appearance: none; }
.form-control-cvf:focus { border-color: var(--green-teal); box-shadow: 0 0 0 3px rgba(31,122,94,.1); }
.form-control-cvf::placeholder { color: var(--green-border); }
textarea.form-control-cvf { resize: vertical; min-height: 120px; }
select.form-control-cvf { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234D6659' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; background-color: #fff; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--text); color: rgba(255,255,255,.65); padding: 96px 0 0; }
.footer-brand p { font-size: .88rem; line-height: 1.8; margin-top: 18px; color: rgba(255,255,255,.5); }
.footer-heading { color: rgba(255,255,255,.9); font-family: 'DM Sans', sans-serif; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; margin-bottom: 24px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .88rem; transition: color .2s; font-family: 'DM Sans', sans-serif; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: 12px; font-family: 'DM Sans', sans-serif; }
.footer-contact i { color: var(--teal-accent); margin-right: 10px; }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.65); font-size: 1rem; text-decoration: none; margin-right: 8px; transition: all .2s; }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--green-deep); }
.footer-donate-btn { background: var(--gold); color: #fff; font-weight: 700; padding: 13px 30px; border-radius: 50px; text-decoration: none; font-family: 'DM Sans', sans-serif; font-size: .88rem; display: inline-block; transition: background .2s; }
.footer-donate-btn:hover { background: var(--gold-light); color: #fff; }
.footer-bottom { margin-top: 64px; border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; font-size: .78rem; color: rgba(255,255,255,.35); font-family: 'DM Sans', sans-serif; }
.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .18s; }
.fade-up:nth-child(4) { transition-delay: .26s; }

/* ===================================================
   HOME PAGE
   =================================================== */
.hero-slide { position: relative; height: 92vh; min-height: 580px; display: flex; align-items: center; overflow: hidden; }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(108deg, rgba(14,30,22,.86) 0%, rgba(22,53,38,.6) 55%, rgba(31,122,94,.2) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.home-hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: 'DM Sans', sans-serif; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-accent); font-weight: 600; margin-bottom: 22px; }
.home-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero-content h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); color: #fff; line-height: 1.1; margin-bottom: 22px; font-weight: 700; }
.hero-content h1 em { color: var(--gold-light); font-style: italic; }
.hero-content p { color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.75; margin-bottom: 36px; font-family: 'DM Sans', sans-serif; font-weight: 400; max-width: 560px; }
.carousel-indicators { bottom: 32px; }
.carousel-indicators button { width: 24px; height: 2px; border-radius: 2px; background: rgba(255,255,255,.4); border: none; }
.carousel-indicators .active { background: var(--gold); width: 44px; }

.stat-strip { background: #fff; border-bottom: 1px solid var(--rule); padding: 0; }
.stat-item { padding: 44px 24px; text-align: center; border-right: 1px solid var(--rule); position: relative; }
.stat-item:last-child { border-right: none; }
.stat-item h3 { font-size: 2.8rem; font-weight: 700; color: var(--green-deep); line-height: 1; margin-bottom: 8px; }
.stat-item h3 span { color: var(--gold); }
.stat-item p { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0; font-family: 'DM Sans', sans-serif; font-weight: 500; }

.prog-card { background: #fff; border: 1px solid var(--rule); border-radius: 14px; padding: 36px 30px; height: 100%; transition: all .28s; position: relative; overflow: hidden; }
.prog-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green-teal), var(--teal-accent)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.prog-card:hover { box-shadow: 0 16px 48px rgba(22,53,38,.1); transform: translateY(-5px); }
.prog-card:hover::before { transform: scaleX(1); }
.prog-icon { width: 54px; height: 54px; border-radius: 12px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.45rem; color: var(--green-teal); margin-bottom: 24px; transition: background .25s; }
.prog-card:hover .prog-icon { background: var(--green-teal); color: #fff; }
.prog-card h5 { font-size: 1.1rem; color: var(--green-deep); margin-bottom: 12px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.prog-card p { font-size: .88rem; color: var(--muted); line-height: 1.78; margin: 0; }

.mission-wrap { background: var(--off); }
.mission-row { min-height: 640px; }
.mission-img-col { position: relative; overflow: hidden; min-height: 520px; }
.mission-img-col img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.mission-visual-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,30,22,.72) 0%, transparent 55%); z-index: 1; }
.mission-quote-badge { position: absolute; bottom: 44px; left: 44px; right: 44px; background: rgba(255,255,255,.97); border-radius: 14px; padding: 30px 28px 26px; border-left: 4px solid var(--gold); box-shadow: 0 12px 40px rgba(0,0,0,.18); z-index: 2; }
.mission-quote-badge blockquote { font-size: 1.2rem; font-style: italic; color: var(--green-deep); margin: 0 0 16px; line-height: 1.6; font-weight: 600; }
.mission-quote-badge cite { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-family: 'DM Sans', sans-serif; font-style: normal; font-weight: 500; }
.mission-content { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.mission-content p { color: var(--muted); font-size: 1rem; line-height: 1.9; margin-bottom: 22px; font-family: 'DM Sans', sans-serif; }
.mission-leader { display: flex; align-items: center; gap: 18px; padding: 24px; background: var(--green-pale); border-radius: 14px; margin-top: 20px; }
.leader-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--green-deep); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.leader-info { min-width: 0; }
.leader-info strong { display: block; color: var(--green-deep); font-size: .92rem; font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 3px; }
.leader-info span { font-size: .8rem; color: var(--muted); font-family: 'DM Sans', sans-serif; }
.mission-mini-stats { display: flex; gap: 16px; margin-top: 36px; }
.mission-mini-stat { flex: 1; text-align: center; padding: 22px 12px; background: var(--green-pale); border-radius: 12px; }
.mission-mini-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--green-deep); line-height: 1; }
.mission-mini-stat .lbl { font-family: 'DM Sans', sans-serif; font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }
.mission-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.approach-section { background: var(--off); }
.approach-card { background: #fff; border-radius: 14px; padding: 40px 32px; height: 100%; border: 1px solid var(--rule); transition: box-shadow .25s; }
.approach-card:hover { box-shadow: 0 10px 36px rgba(22,53,38,.08); }
.approach-num { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 700; color: var(--green-border); line-height: 1; margin-bottom: 16px; }
.approach-icon-row { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--green-teal), var(--teal-accent)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #fff; margin-bottom: 20px; }
.approach-card h4 { font-size: 1.15rem; color: var(--green-deep); margin-bottom: 12px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.approach-card p { font-size: .88rem; color: var(--muted); line-height: 1.75; margin: 0; }

.partners-section { background: #fff; padding: 80px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.ticker-outer { overflow: hidden; position: relative; }
.ticker-outer::before, .ticker-outer::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.ticker-outer::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.ticker-outer::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.ticker-track { display: flex; animation: slide 32s linear infinite; width: max-content; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.partner-tile { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 0 48px; min-width: 160px; border-right: 1px solid var(--rule); opacity: .55; transition: opacity .25s; cursor: default; }
.partner-tile:hover { opacity: 1; }
.partner-tile span { font-family: 'DM Sans', sans-serif; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); text-align: center; line-height: 1.5; }
.logo-svg { width: 80px; height: 48px; display: flex; align-items: center; justify-content: center; }

.testimonials-section { background: var(--green-pale); }
.testi-card { background: #fff; border-radius: 16px; padding: 48px 40px; border: 1px solid var(--rule); height: 100%; position: relative; }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 6rem; color: var(--green-border); line-height: .7; margin-bottom: 20px; display: block; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--green-deep); line-height: 1.7; margin-bottom: 32px; font-style: italic; font-weight: 400; }
.testi-divider { width: 36px; height: 2px; background: var(--gold); margin-bottom: 22px; }
.testi-name { font-family: 'DM Sans', sans-serif; font-weight: 600; color: var(--text); font-size: .92rem; margin-bottom: 4px; }
.testi-role { font-family: 'DM Sans', sans-serif; font-size: .8rem; color: var(--muted); }
.star-row { color: var(--gold); font-size: .82rem; margin-bottom: 18px; letter-spacing: 2px; }

.volunteer-section { background: var(--green-deep); position: relative; overflow: hidden; }
.volunteer-section::before { content: ''; position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(255,255,255,.06); }
.volunteer-section::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 360px; height: 360px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.vol-title { font-size: clamp(2rem, 4vw, 3.4rem); color: #fff; margin-bottom: 20px; }
.vol-sub { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.85; margin-bottom: 40px; max-width: 520px; font-family: 'DM Sans', sans-serif; }
.btn-vol-primary { background: var(--gold); color: var(--green-deep); font-weight: 700; padding: 14px 34px; border-radius: 50px; text-decoration: none; display: inline-block; font-size: .9rem; font-family: 'DM Sans', sans-serif; transition: all .25s; letter-spacing: .04em; }
.btn-vol-primary:hover { background: var(--gold-light); color: var(--green-deep); }
.btn-vol-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); padding: 13px 28px; border-radius: 50px; text-decoration: none; display: inline-block; font-size: .9rem; font-family: 'DM Sans', sans-serif; transition: all .25s; }
.btn-vol-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }
.vol-tile { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 32px 20px; text-align: center; transition: background .25s; }
.vol-tile:hover { background: rgba(255,255,255,.12); }
.vol-tile i { font-size: 1.8rem; color: var(--gold); margin-bottom: 14px; display: block; }
.vol-tile p { color: rgba(255,255,255,.8); font-size: .85rem; margin: 0; font-family: 'DM Sans', sans-serif; font-weight: 500; }

/* ===================================================
   ABOUT US PAGE
   =================================================== */
.cert-strip { background: var(--gold); padding: 0; }
.cert-item { display: flex; align-items: center; gap: 10px; padding: 16px 28px; border-right: 1px solid rgba(255,255,255,.25); }
.cert-item:last-child { border-right: none; }
.cert-item i { font-size: 1.1rem; color: var(--green-deep); }
.cert-item span { font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 700; color: var(--green-deep); letter-spacing: .04em; }

.story-section { padding: 100px 0; background: #fff; }
.story-lead { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-style: italic; color: var(--green-deep); line-height: 1.6; margin-bottom: 36px; font-weight: 400; border-left: 4px solid var(--gold); padding-left: 28px; }
.story-body p { font-family: 'DM Sans', sans-serif; font-size: .97rem; color: var(--muted); line-height: 1.95; margin-bottom: 22px; }
.story-body p strong { color: var(--green-deep); font-weight: 600; }
.story-body p.standout { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-style: italic; color: var(--green-teal); font-weight: 600; margin: 32px 0; }
.story-img-wrap { position: relative; }
.story-img-wrap img { width: 100%; border-radius: 18px; object-fit: cover; height: 520px; display: block; }
.story-img-badge { position: absolute; bottom: -28px; right: -28px; background: var(--green-deep); border-radius: 16px; padding: 28px 32px; text-align: center; box-shadow: 0 16px 48px rgba(22,53,38,.22); }
.story-img-badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--gold); font-weight: 700; line-height: 1; }
.story-img-badge span { font-family: 'DM Sans', sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); margin-top: 6px; display: block; }
.story-img-side-badge { position: absolute; top: 28px; left: -24px; background: var(--gold); border-radius: 12px; padding: 16px 20px; text-align: center; box-shadow: 0 8px 28px rgba(184,148,74,.3); }
.story-img-side-badge i { font-size: 1.5rem; color: var(--green-deep); display: block; margin-bottom: 6px; }
.story-img-side-badge span { font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 700; color: var(--green-deep); text-transform: uppercase; letter-spacing: .06em; }

.timeline-section { background: var(--off); padding: 100px 0; }
.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--green-border); transform: translateX(-50%); }
.tl-item { display: flex; position: relative; }
.tl-left { width: 50%; padding-right: 60px; text-align: right; padding-bottom: 60px; }
.tl-right { width: 50%; padding-left: 60px; padding-bottom: 60px; }
.tl-dot { position: absolute; left: 50%; top: 8px; transform: translateX(-50%); width: 18px; height: 18px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 0 0 3px var(--green-border); z-index: 2; }
.tl-year { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--green-border); line-height: 1; margin-bottom: 8px; }
.tl-card { background: #fff; border: 1px solid var(--rule); border-radius: 14px; padding: 28px 26px; transition: box-shadow .25s; }
.tl-card:hover { box-shadow: 0 10px 36px rgba(22,53,38,.08); }
.tl-card h4 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 10px; }
.tl-card p { font-family: 'DM Sans', sans-serif; font-size: .87rem; color: var(--muted); line-height: 1.75; margin: 0; }
.tl-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--green-teal); margin-bottom: 16px; }

.values-section { background: #fff; padding: 100px 0; }
.value-card { background: var(--green-pale); border-radius: 16px; padding: 40px 32px; height: 100%; border: 1px solid var(--green-border); transition: all .28s; }
.value-card:hover { background: var(--green-deep); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(22,53,38,.15); }
.value-card:hover .value-title, .value-card:hover .value-body { color: rgba(255,255,255,.9); }
.value-card:hover .value-icon { background: var(--gold); color: var(--green-deep); }
.value-icon { width: 52px; height: 52px; border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--green-teal); margin-bottom: 24px; transition: all .28s; }
.value-title { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--green-deep); margin-bottom: 12px; transition: color .28s; }
.value-body { font-family: 'DM Sans', sans-serif; font-size: .87rem; color: var(--muted); line-height: 1.75; margin: 0; transition: color .28s; }

.promise-section { background: var(--green-deep); padding: 90px 0; position: relative; overflow: hidden; text-align: center; }
.promise-section::before { content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.promise-section::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 380px; height: 380px; border-radius: 50%; border: 1px solid rgba(255,255,255,.04); }
.promise-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 3.2vw, 2.5rem); color: #fff; font-style: italic; font-weight: 600; line-height: 1.5; max-width: 820px; margin: 0 auto 36px; position: relative; z-index: 2; }
.promise-quote em { color: var(--gold-light); }
.promise-source { font-family: 'DM Sans', sans-serif; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); position: relative; z-index: 2; }

/* ===================================================
   DONATE PAGE
   =================================================== */
.donate-hero { background: var(--green-deep); padding: 100px 0 80px; position: relative; overflow: hidden; text-align: center; }
.donate-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 50%, rgba(31,122,94,.35) 0%, transparent 65%); }
.donate-hero::after { content: ''; position: absolute; top: -180px; right: -180px; width: 520px; height: 520px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.donate-hero h1 { font-size: clamp(2.8rem, 5.5vw, 4.6rem); color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.donate-hero h1 em { color: var(--gold-light); font-style: italic; }
.donate-hero p { color: rgba(255,255,255,.72); font-family: 'DM Sans', sans-serif; font-size: 1.05rem; line-height: 1.85; max-width: 560px; margin: 0 auto 32px; }
.tax-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(184,148,74,.18); border: 1px solid rgba(184,148,74,.4); color: var(--gold-light); font-family: 'DM Sans', sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .06em; padding: 10px 22px; border-radius: 50px; }

.trust-bar { background: #fff; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 22px 0; }
.trust-item { display: flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-size: .8rem; color: var(--muted); font-weight: 500; padding: 0 28px; border-right: 1px solid var(--rule); }
.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--green-teal); font-size: 1rem; }

.donate-body { padding: 80px 0 100px; }
.btn-donate-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: #fff !important; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: .04em; padding: 17px 44px; border-radius: 50px; border: none; text-decoration: none; cursor: pointer; box-shadow: 0 8px 28px rgba(184,148,74,.4); transition: all .25s; text-shadow: 0 1px 3px rgba(0,0,0,.2); }
.btn-donate-primary:hover { background: var(--gold-light); color: #fff !important; transform: translateY(-2px); }
.secure-line { font-family: 'DM Sans', sans-serif; font-size: .78rem; color: var(--muted); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.secure-line i { color: var(--green-teal); }

.pay-card { background: #fff; border: 1px solid var(--rule); border-radius: 18px; padding: 36px 32px; height: 100%; position: relative; overflow: hidden; transition: box-shadow .25s, transform .25s; }
.pay-card:hover { box-shadow: 0 12px 44px rgba(22,53,38,.09); transform: translateY(-3px); }
.pay-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green-teal), var(--teal-accent)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.pay-card:hover::before { transform: scaleX(1); }
.pay-card-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--green-teal); margin-bottom: 20px; transition: background .25s; }
.pay-card:hover .pay-card-icon { background: var(--green-teal); color: #fff; }
.pay-card h4 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 8px; }
.pay-card .pay-label { font-family: 'DM Sans', sans-serif; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 20px; }

.bank-detail-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.bank-detail-key { font-family: 'DM Sans', sans-serif; font-size: .73rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; min-width: 90px; flex-shrink: 0; }
.bank-detail-val { font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--green-deep); font-weight: 600; word-break: break-all; }
.copy-btn { background: none; border: 1px solid var(--rule); border-radius: 6px; padding: 2px 8px; font-size: .7rem; color: var(--muted); cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .15s; margin-left: 6px; vertical-align: middle; }
.copy-btn:hover { background: var(--green-pale); border-color: var(--green-teal); color: var(--green-teal); }
.bank-flag { display: inline-flex; align-items: center; gap: 6px; font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--green-teal); margin-bottom: 18px; }
.bank-flag .flag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-teal); }
.qr-wrap { width: 148px; height: 148px; background: var(--green-pale); border: 2px dashed var(--green-border); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: 'DM Sans', sans-serif; font-size: .72rem; color: var(--muted); text-align: center; margin-bottom: 16px; }
.qr-wrap i { font-size: 2rem; color: var(--green-teal); margin-bottom: 8px; display: block; }
.upi-apps { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.upi-pill { background: var(--green-pale); border: 1px solid var(--green-border); border-radius: 50px; padding: 5px 12px; font-family: 'DM Sans', sans-serif; font-size: .73rem; font-weight: 600; color: var(--green-teal); }

.impact-section { background: var(--green-deep); padding: 80px 0; position: relative; overflow: hidden; }
.impact-section::before { content: ''; position: absolute; top: -120px; right: -120px; width: 440px; height: 440px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.impact-title { font-size: clamp(2rem, 3.5vw, 3rem); color: #fff; margin-bottom: 12px; font-weight: 700; }
.impact-sub { font-family: 'DM Sans', sans-serif; font-size: .95rem; color: rgba(255,255,255,.6); margin-bottom: 48px; }
.impact-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 32px 28px; height: 100%; transition: background .25s; }
.impact-card:hover { background: rgba(255,255,255,.11); }
.impact-amount { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 14px; }
.impact-desc { font-family: 'DM Sans', sans-serif; font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.7; margin: 0; }
.impact-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 16px; display: block; opacity: .7; }

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-tile { background: var(--green-deep); border-radius: 14px; padding: 22px 24px; color: #fff; height: 100%; transition: background .2s; }
.contact-tile:hover { background: var(--green-teal); }
.tile-label { font-family: 'DM Sans', sans-serif; font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; margin-bottom: 10px; }
.tile-value { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin: 0; word-break: break-all; }
.tile-value a { color: #fff; text-decoration: none; }
.tile-icon { font-size: 1.2rem; color: var(--gold); margin-bottom: 10px; display: block; }

.office-card { background: #fff; border: 1px solid var(--rule); border-radius: 14px; padding: 24px 26px; position: relative; overflow: hidden; transition: box-shadow .25s, transform .22s; }
.office-card:hover { box-shadow: 0 10px 36px rgba(22,53,38,.09); transform: translateY(-2px); }
.office-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(to bottom, var(--green-teal), var(--teal-accent)); }
.office-type { font-family: 'DM Sans', sans-serif; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.office-city { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--green-deep); margin-bottom: 8px; }
.office-addr { font-family: 'DM Sans', sans-serif; font-size: .86rem; color: var(--muted); line-height: 1.75; margin: 0; }
.response-note { background: var(--green-pale); border: 1px solid var(--green-border); border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 10px; font-family: 'DM Sans', sans-serif; font-size: .82rem; color: var(--muted); margin-top: 24px; }
.response-note i { color: var(--green-teal); font-size: 1rem; flex-shrink: 0; }

.form-card { background: #fff; border: 1px solid var(--rule); border-radius: 20px; padding: 44px 40px; box-shadow: 0 8px 40px rgba(22,53,38,.07); height: 100%; }
.form-section-label { font-family: 'DM Sans', sans-serif; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 10px; margin-bottom: 32px; }
.form-section-label::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.btn-send { width: 100%; background: var(--green-deep); color: #fff; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .95rem; letter-spacing: .04em; padding: 15px 28px; border-radius: 50px; border: none; cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s; display: flex; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 4px 18px rgba(22,53,38,.2); }
.btn-send:hover { background: var(--green-teal); transform: translateY(-1px); }
.form-note { font-family: 'DM Sans', sans-serif; font-size: .76rem; color: var(--muted); text-align: center; margin-top: 14px; }
.form-note i { color: var(--green-teal); margin-right: 4px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success i { font-size: 3rem; color: var(--green-teal); margin-bottom: 16px; display: block; }
.form-success h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--green-deep); margin-bottom: 10px; }
.form-success p { font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--muted); }

.follow-section { background: var(--green-deep); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.follow-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 380px; height: 380px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.follow-title { font-size: clamp(2rem, 3.2vw, 2.8rem); color: #fff; font-weight: 700; margin-bottom: 10px; }
.follow-sub { font-family: 'DM Sans', sans-serif; font-size: .95rem; color: rgba(255,255,255,.6); margin-bottom: 36px; }
.social-big { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,.2); color: #fff; text-decoration: none; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .88rem; transition: all .22s; margin: 6px; }
.social-big:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,148,74,.08); }

/* ===================================================
   GET INVOLVED PAGE
   =================================================== */
.gi-volunteer { padding: 90px 0; background: var(--off); }
.paths-strip { background: #fff; border-bottom: 1px solid var(--rule); padding: 0; }
.path-item { padding: 36px 28px; border-right: 1px solid var(--rule); display: flex; align-items: flex-start; gap: 18px; transition: background .2s; text-decoration: none; }
.path-item:last-child { border-right: none; }
.path-item:hover { background: var(--green-pale); }
.path-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--green-teal); flex-shrink: 0; transition: background .2s; }
.path-item:hover .path-icon { background: var(--green-teal); color: #fff; }
.path-title { font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.path-desc { font-family: 'DM Sans', sans-serif; font-size: .8rem; color: var(--muted); line-height: 1.6; margin: 0; }

.vol-intro-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-style: italic; color: var(--green-deep); line-height: 1.65; border-left: 4px solid var(--gold); padding-left: 26px; margin-bottom: 28px; font-weight: 400; }
.vol-body p { font-family: 'DM Sans', sans-serif; font-size: .95rem; color: var(--muted); line-height: 1.9; }

.who-card { background: #fff; border: 1px solid var(--rule); border-radius: 14px; padding: 28px 24px; height: 100%; text-align: center; transition: all .25s; }
.who-card:hover { box-shadow: 0 10px 36px rgba(22,53,38,.09); transform: translateY(-3px); }
.who-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--green-teal); margin: 0 auto 16px; transition: background .25s; }
.who-card:hover .who-icon { background: var(--green-teal); color: #fff; }
.who-title { font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 700; color: var(--green-deep); margin-bottom: 6px; }
.who-desc { font-family: 'DM Sans', sans-serif; font-size: .8rem; color: var(--muted); line-height: 1.65; margin: 0; }

.activity-pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--rule); border-radius: 50px; padding: 10px 18px; font-family: 'DM Sans', sans-serif; font-size: .83rem; font-weight: 500; color: var(--green-deep); margin: 5px; transition: all .2s; }
.activity-pill:hover { background: var(--green-pale); border-color: var(--green-teal); color: var(--green-teal); }
.activity-pill i { color: var(--green-teal); font-size: .9rem; }

.btn-apply { background: var(--green-deep); color: #fff; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .95rem; letter-spacing: .04em; padding: 15px 40px; border-radius: 50px; border: none; cursor: pointer; transition: background .2s, transform .2s, box-shadow .2s; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 4px 18px rgba(22,53,38,.2); }
.btn-apply:hover { background: var(--green-teal); transform: translateY(-1px); }
.form-or { display: flex; align-items: center; gap: 14px; font-family: 'DM Sans', sans-serif; font-size: .8rem; color: var(--muted); margin: 24px 0; }
.form-or::before, .form-or::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.email-alt { font-family: 'DM Sans', sans-serif; font-size: .88rem; color: var(--muted); text-align: center; }
.email-alt a { color: var(--green-teal); font-weight: 600; text-decoration: none; }
.success-msg { display: none; text-align: center; padding: 32px 20px; }
.success-msg i { font-size: 2.8rem; color: var(--green-teal); display: block; margin-bottom: 14px; }
.success-msg h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--green-deep); margin-bottom: 8px; }
.success-msg p { font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--muted); }

.other-section { background: var(--green-deep); padding: 90px 0; position: relative; overflow: hidden; }
.other-section::before { content: ''; position: absolute; top: -140px; right: -140px; width: 460px; height: 460px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.other-section::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 320px; height: 320px; border-radius: 50%; border: 1px solid rgba(255,255,255,.04); }
.other-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 44px 36px; height: 100%; transition: background .25s; }
.other-card:hover { background: rgba(255,255,255,.12); }
.other-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 1.45rem; color: var(--gold); margin-bottom: 24px; }
.other-card h3 { font-size: 1.7rem; color: #fff; font-weight: 700; margin-bottom: 14px; }
.other-card p { font-family: 'DM Sans', sans-serif; font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 28px; }
.btn-other { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 1.5px solid rgba(255,255,255,.4); color: #fff; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .88rem; padding: 12px 26px; border-radius: 50px; text-decoration: none; transition: all .22s; }
.btn-other:hover { border-color: var(--gold); color: var(--gold); }

/* APPLY FORM SECTION (get-involved page) */
.form-section { background: #fff; padding: 80px 0; border-top: 1px solid var(--rule); }

/* ===================================================
   CAREERS PAGE
   =================================================== */
.intro-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-style: italic; color: var(--green-deep); line-height: 1.65; border-left: 4px solid var(--gold); padding-left: 26px; margin-bottom: 28px; font-weight: 400; }
.intro-body { font-family: 'DM Sans', sans-serif; font-size: .97rem; color: var(--muted); line-height: 1.9; }

.quality-card { background: #fff; border: 1px solid var(--rule); border-radius: 14px; padding: 24px; height: 100%; transition: all .25s; }
.quality-card:hover { box-shadow: 0 10px 36px rgba(22,53,38,.09); transform: translateY(-2px); }
.quality-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--green-teal); flex-shrink: 0; transition: background .25s; }
.quality-card:hover .quality-icon { background: var(--green-teal); color: #fff; }
.quality-title { font-family: 'DM Sans', sans-serif; font-size: .92rem; font-weight: 700; color: var(--green-deep); margin-bottom: 8px; }
.quality-desc { font-family: 'DM Sans', sans-serif; font-size: .82rem; color: var(--muted); line-height: 1.7; margin: 0; }

.openings-card { background: #fff; border: 1px solid var(--rule); border-radius: 18px; padding: 48px 44px; }
.role-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--green-pale); border: 1px solid var(--green-border); border-radius: 50px; padding: 9px 18px; font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 600; color: var(--green-deep); margin: 5px; }
.role-pill i { color: var(--green-teal); }
.no-openings-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(184,148,74,.1); border: 1px solid rgba(184,148,74,.3); color: var(--gold); font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: .06em; padding: 9px 20px; border-radius: 50px; margin-bottom: 24px; }

.open-app-card { background: var(--green-deep); border-radius: 18px; padding: 44px; position: relative; overflow: hidden; }
.open-app-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(255,255,255,.07); }
.open-app-card::after { content: ''; position: absolute; bottom: -50px; left: -50px; width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.open-app-card h3 { font-size: 1.8rem; color: #fff; font-weight: 700; margin-bottom: 14px; position: relative; z-index: 1; }
.open-app-card p { font-family: 'DM Sans', sans-serif; font-size: .92rem; color: rgba(255,255,255,.7); line-height: 1.85; margin-bottom: 28px; position: relative; z-index: 1; }
.btn-cv { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: #fff !important; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .92rem; letter-spacing: .04em; padding: 14px 32px; border-radius: 50px; text-decoration: none; transition: all .25s; text-shadow: 0 1px 3px rgba(0,0,0,.2); position: relative; z-index: 1; box-shadow: 0 4px 18px rgba(184,148,74,.35); }
.btn-cv:hover { background: var(--gold-light); color: #fff !important; transform: translateY(-2px); }
.subject-line { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 8px; padding: 10px 16px; font-family: 'DM Sans', sans-serif; font-size: .8rem; color: rgba(255,255,255,.65); position: relative; z-index: 1; }
.subject-line strong { color: var(--gold-light); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 991px) {
  .section-pad { padding: 80px 0; }
  .mission-content { padding: 56px 40px; }
  .mission-img-col { min-height: 400px; }
  .path-item { border-right: none; border-bottom: 1px solid var(--rule); }
  .tl-item { flex-direction: column; }
  .tl-left { width: 100%; padding-right: 0; padding-left: 52px; text-align: left; padding-bottom: 16px; }
  .tl-right { width: 100%; padding-left: 52px; }
  .timeline::before { left: 20px; }
  .tl-dot { left: 20px; }
  .story-img-badge { right: 12px; bottom: -20px; }
  .story-img-side-badge { left: 12px; top: 16px; }
  .form-card { padding: 32px 24px; }
  .openings-card, .open-app-card { padding: 32px 24px; }
}
@media (max-width: 767px) {
  .page-hero, .donate-hero { padding: 72px 0 60px; }
  .hero-slide { height: 86vh; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--rule); }
  .stat-item:last-child { border-bottom: none; }
  .mission-img-col { min-height: 300px; }
  .mission-content { padding: 48px 28px; }
  .mission-quote-badge { left: 20px; right: 20px; bottom: 20px; }
  .mission-mini-stats { flex-direction: column; gap: 12px; }
  .trust-item { border-right: none; padding: 8px 16px; }
  .cert-item { padding: 14px 18px; }
  .story-img-wrap img { height: 320px; }
}

/* ===================================================
   SUPPLEMENTARY — classes used in page bodies
   =================================================== */

/* About Us hero stats */
.hero-stat-row { display: flex; flex-wrap: wrap; gap: 0; }
.hero-stat { padding: 28px 36px 28px 0; border-right: 1px solid rgba(255,255,255,.12); margin-right: 36px; }
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hero-stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: var(--gold); font-weight: 700; line-height: 1; }
.hero-stat span { font-family: 'DM Sans', sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-top: 6px; display: block; }

/* About Us hero circle deco */
.hero-circle-deco { position: absolute; bottom: -100px; left: -100px; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(255,255,255,.04); }

/* Donate page hero deco */
.hero-deco2 { position: absolute; bottom: -100px; left: -100px; width: 380px; height: 380px; border-radius: 50%; border: 1px solid rgba(255,255,255,.04); }

/* Donate cheque section */
.cheque-instruction { font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--muted); line-height: 1.8; }
.cheque-instruction strong { color: var(--green-deep); }
.cheque-address-box { background: var(--green-pale); border: 1px solid var(--green-border); border-radius: 10px; padding: 16px 20px; margin-top: 16px; font-family: 'DM Sans', sans-serif; font-size: .85rem; color: var(--green-deep); line-height: 1.75; font-weight: 500; }

/* Contact page */
.contact-hero { background: var(--green-deep); padding: 96px 0 76px; position: relative; overflow: hidden; text-align: center; }
.contact-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(31,122,94,.3) 0%, transparent 65%); }
.contact-hero::after { content: ''; position: absolute; top: -160px; right: -160px; width: 480px; height: 480px; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.contact-hero h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 18px; }
.contact-hero h1 em { color: var(--gold-light); font-style: italic; }
.contact-hero p { color: rgba(255,255,255,.7); font-family: 'DM Sans', sans-serif; font-size: 1rem; line-height: 1.85; max-width: 500px; margin: 0 auto; }
.contact-body { padding: 80px 0 100px; }

/* Map section */
.map-section { background: #fff; padding: 0; }
.map-wrap { width: 100%; height: 320px; background: var(--green-pale); position: relative; overflow: hidden; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(.3) contrast(1.05); }

/* Careers page */
.careers-body { padding: 90px 0 100px; }
.section-divider { font-family: 'DM Sans', sans-serif; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.section-divider::after { content: ''; flex: 1; height: 1px; background: var(--rule); }

/* Volunteer section (get-involved body) */
.volunteer-gi-section { padding: 90px 0; background: var(--off); }

/* Form wrapper for get-involved apply section */
.apply-form-section { background: #fff; padding: 80px 0; border-top: 1px solid var(--rule); }
.apply-form-card { background: var(--off); border: 1px solid var(--rule); border-radius: 20px; padding: 48px 44px; max-width: 780px; margin: 0 auto; }

@media (max-width: 767px) {
  .hero-stat { padding: 16px 20px 16px 0; margin-right: 16px; }
  .hero-stat strong { font-size: 2rem; }
  .contact-hero { padding: 72px 0 60px; }
  .apply-form-card { padding: 28px 20px; }
}
