/* ============================================================
   CSS CUSTOM PROPERTIES — Exact match from index.html
============================================================ */
:root {
  --blue-dark:    #0d2a4e;
  --blue-mid:     #1a4480;
  --blue-light:   #2563a8;
  --orange:       #f07c1e;
  --orange-dark:  #d96712;
  --orange-light: #ffb347;
  --white:        #ffffff;
  --gray-50:      #f8f9fb;
  --gray-100:     #eef1f6;
  --gray-200:     #dde3ed;
  --gray-400:     #94a3b8;
  --gray-600:     #475569;
  --gray-800:     #1e293b;
  --text:         #1e293b;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.18);
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --max-w:        1200px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; }

/* ============================================================
   UTILITIES
============================================================ */
.container { max-width:var(--max-w); margin:0 auto; padding:0 24px; }

.section-label {
  display:inline-block; font-size:.75rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--orange); margin-bottom:12px;
}
.section-title {
  font-family:'Playfair Display', serif;
  font-size:clamp(2rem,4vw,3rem); font-weight:800;
  color:var(--blue-dark); line-height:1.15; margin-bottom:20px;
}
.section-title.white { color:var(--white); }
.body-text { font-size:1.05rem; color:var(--gray-600); line-height:1.8; }

/* Buttons */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 32px; border-radius:50px;
  font-weight:700; font-size:.95rem; letter-spacing:.02em;
  cursor:pointer; border:none; transition:var(--transition);
  text-decoration:none; white-space:nowrap; position:relative;
  overflow:hidden;
}
.btn::after {
  content:''; position:absolute; inset:0;
  background:rgba(255,255,255,.15); opacity:0;
  transition:opacity var(--transition);
}
.btn:hover::after { opacity:1; }
.btn-primary {
  background:var(--orange); color:var(--white);
  box-shadow:0 4px 20px rgba(240,124,30,.35);
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.btn-primary:hover {
  background:var(--orange-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 36px rgba(240,124,30,.55), 0 0 22px rgba(240,124,30,.3);
}
.btn-primary:active {
  transform: translateY(0) scale(.97);
  box-shadow: 0 4px 16px rgba(240,124,30,.4);
  transition-duration: .1s;
}
.btn-blue {
  background:var(--blue-dark); color:var(--white);
  box-shadow:0 4px 20px rgba(13,42,78,.22);
}
.btn-blue:hover { background:var(--blue-mid); transform:translateY(-2px); }
.btn-ghost {
  background:transparent; color:var(--orange);
  border:1.5px solid var(--orange);
  transition: background .3s ease, border-color .3s ease, color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.btn-ghost:hover {
  background:var(--orange); color:var(--white);
  transform:translateY(-1px);
  box-shadow: 0 6px 20px rgba(240,124,30,.35);
}
.btn-ghost:active {
  transform: scale(.97);
  transition-duration: .1s;
}

/* ── Hero-context ghost button — white variant over dark bg ───── */
.hero-actions .btn-ghost {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.04);
}
.hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.75);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,255,255,.12), 0 6px 20px rgba(0,0,0,.2);
  transform: translateY(-2px);
}
.hero-actions .btn-ghost:active {
  background: rgba(255,255,255,.08);
  transform: scale(.97);
}

/* Scroll reveal */
.reveal {
  opacity:0; transform:translateY(28px);
  transition:opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-32px); transition:opacity .65s ease, transform .65s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(32px); transition:opacity .65s ease, transform .65s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* Staggered reveal delay helpers */
.delay-1 { transition-delay:.1s; }
.delay-2 { transition-delay:.2s; }
.delay-3 { transition-delay:.3s; }
.delay-4 { transition-delay:.4s; }
.delay-5 { transition-delay:.5s; }

/* ============================================================
   NAVIGATION
============================================================ */
#navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(13,42,78,.97);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:box-shadow var(--transition);
}
#navbar.scrolled { box-shadow:0 4px 32px rgba(0,0,0,.28); }
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:72px; gap:24px;
}
.nav-logo { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-logo img { height:48px; width:auto; object-fit:contain; }
.nav-links { display:flex; align-items:center; gap:4px; }
.nav-links a {
  color:rgba(255,255,255,.82); font-size:.9rem; font-weight:500;
  padding:8px 14px; border-radius:6px; transition:var(--transition);
}
.nav-links a:hover { color:var(--white); background:rgba(255,255,255,.08); }
.nav-links a.active { color:var(--white); font-weight:600; background:rgba(255,255,255,.13); text-decoration:underline; text-underline-offset:3px; text-decoration-color:rgba(240,124,30,.85); }
.btn-nav-donate {
  background:var(--orange); color:var(--white);
  font-weight:700; padding:9px 20px; border-radius:50px;
  margin-left:8px; font-size:.88rem;
  box-shadow:0 2px 12px rgba(240,124,30,.4);
  transition:var(--transition);
}
.btn-nav-donate:hover {
  background:var(--orange-dark); transform:translateY(-1px);
  box-shadow:0 4px 18px rgba(240,124,30,.55);
}
.nav-toggle {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; padding:6px;
}
.nav-toggle span {
  display:block; width:26px; height:2px;
  background:var(--white); border-radius:2px;
  transition:var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display:none; flex-direction:column;
  background:var(--blue-dark);
  padding:12px 24px 24px;
  border-top:1px solid rgba(255,255,255,.08);
}
.nav-mobile.open { display:flex; }
.nav-mobile a {
  color:rgba(255,255,255,.85); font-size:1rem; font-weight:500;
  padding:14px 0; border-bottom:1px solid rgba(255,255,255,.07);
}
.nav-mobile a:last-child { border-bottom:none; }
.nav-mobile a:hover { color:var(--orange); }
.nav-mobile a.active { color:var(--orange); font-weight:600; }
.nav-mobile .btn-nav-donate {
  margin-top:16px; text-align:center; padding:14px 24px;
  border-radius:50px; border-bottom:none;
}

/* ============================================================
   HERO SECTION
============================================================ */
#contact-hero {
  position:relative; padding:160px 0 100px;
  min-height:560px; display:flex; align-items:center;
  overflow:hidden;
}
.hero-gradient-bg {
  position:absolute; inset:0; z-index:0;
  background:linear-gradient(135deg, var(--blue-dark) 0%, #0f3460 40%, #1a4480 70%, #0d3a6e 100%);
  animation:gradientShift 8s ease-in-out infinite;
}
@keyframes gradientShift {
  0%,100% { background-position:0% 50%; }
  50% { background-position:100% 50%; }
}
/* Animated orbs */
.hero-orb {
  position:absolute; border-radius:50%;
  filter:blur(60px); animation:orbFloat 8s ease-in-out infinite;
  pointer-events:none;
}
.hero-orb-1 {
  width:500px; height:500px;
  background:rgba(240,124,30,.12);
  top:-150px; right:-100px;
  animation-delay:0s;
}
.hero-orb-2 {
  width:360px; height:360px;
  background:rgba(37,99,168,.25);
  bottom:-100px; left:-80px;
  animation-delay:-3s;
}
.hero-orb-3 {
  width:240px; height:240px;
  background:rgba(255,179,71,.08);
  top:40%; left:40%;
  animation-delay:-5s;
}
@keyframes orbFloat {
  0%,100% { transform:translate(0,0) scale(1); }
  33%      { transform:translate(20px,-20px) scale(1.04); }
  66%      { transform:translate(-12px,14px) scale(.97); }
}

/* Grid overlay texture */
.hero-grid {
  position:absolute; inset:0; z-index:1; opacity:.05;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size:44px 44px;
  /* Fade grid toward all edges so it doesn't crowd text */
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 45%, black 30%, transparent 90%);
  mask-image:         radial-gradient(ellipse 85% 80% at 50% 45%, black 30%, transparent 90%);
}
/* ── Ambient glow: large, warm/cool radial bloom behind content ── */
.hero-glow {
  position: absolute;
  top: 50%; left: 38%;
  transform: translate(-50%, -50%);
  width: 900px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(240,124,30,.13) 0%,
    rgba(37,99,168,.2)  40%,
    transparent          72%
  );
  filter: blur(56px);
  pointer-events: none;
  z-index: 1;
  animation: glowPulse 7s ease-in-out infinite;
}
/* ── Spotlight: tight bright halo right behind the H1 ─────────── */
.hero-spotlight {
  position: absolute;
  top: 42%; left: 22%;
  transform: translate(-50%, -50%);
  width: 480px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(255,179,71,.08) 0%,
    transparent          68%
  );
  filter: blur(32px);
  pointer-events: none;
  z-index: 1;
  animation: glowPulse 5s ease-in-out 1.5s infinite reverse;
}
@keyframes glowPulse {
  0%, 100% { opacity: .85; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.07); }
}

.hero-content {
  position:relative; z-index:2;
  max-width:760px;
}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(240,124,30,.18);
  border:1px solid rgba(240,124,30,.35);
  border-radius:50px; padding:6px 18px;
  font-size:.78rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--orange-light); margin-bottom:24px;
  animation:fadeSlideUp .6s ease both;
}
.hero-eyebrow-dot {
  width:7px; height:7px; border-radius:50%;
  background:var(--orange); animation:pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.5)} }
.hero-title {
  font-family:'Playfair Display', serif;
  font-size:clamp(2.6rem,6vw,4.2rem); font-weight:800;
  color:var(--white); line-height:1.1; margin-bottom:14px;
  animation:fadeSlideUp .7s .1s ease both;
  text-shadow: 0 2px 24px rgba(0,0,0,.35), 0 0 60px rgba(240,124,30,.08);
}
.hero-subtitle {
  font-size:clamp(1rem,2vw,1.2rem); font-weight:600;
  color:rgba(255,255,255,.7); margin-bottom:20px;
  letter-spacing:.04em; text-transform:uppercase;
  animation:fadeSlideUp .7s .18s ease both;
}
.hero-desc {
  font-size:1.05rem; color:rgba(255,255,255,.72);
  max-width:560px; line-height:1.8;
  animation:fadeSlideUp .7s .26s ease both;
  margin-bottom:36px;
}
.hero-actions {
  display:flex; flex-wrap:wrap; gap:14px;
  animation:fadeSlideUp .7s .34s ease both;
}
@keyframes fadeSlideUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ============================================================
   CONTACT FORM SECTION
============================================================ */
#contact-form-section {
  padding:32px 0 36px;
  background:var(--white);
}
.contact-form-container {
  display:grid; grid-template-columns:1fr 1fr;
  gap:44px; align-items:start;
}
/* 2×2 grid on desktop so all 4 cards fit without scrolling */
.contact-info-sidebar {
  display:grid; grid-template-columns:1fr 1fr; gap:12px;
  align-content:start;
}
.contact-form-card {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);
  padding:24px 28px;
  box-shadow:var(--shadow-md);
  transition:transform var(--transition), box-shadow var(--transition);
}
.contact-form-card:hover {
  transform:translateY(-3px);
  box-shadow:var(--shadow-lg);
}
.form-title {
  font-family:'Playfair Display', serif;
  font-size:1.75rem; font-weight:800; color:var(--blue-dark);
  margin-bottom:4px;
}
.form-subtitle {
  font-size:.88rem; color:var(--gray-600);
  margin-bottom:16px;
}
.form-group {
  margin-bottom:12px;
}
.form-row {
  display:grid; grid-template-columns:1fr 1fr;
  gap:16px;
}
.form-label {
  display:block; font-size:.78rem; font-weight:600;
  color:var(--gray-600); margin-bottom:6px;
  letter-spacing:.05em; text-transform:uppercase;
  transition:color var(--transition);
}
.form-input, .form-select, .form-textarea {
  width:100%; padding:9px 13px;
  background:var(--gray-50);
  border:2px solid var(--gray-100);
  border-radius:var(--radius-sm);
  font-family:'Inter', sans-serif; font-size:.95rem;
  color:var(--text); outline:none;
  transition:all var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color:var(--orange);
  background:var(--white);
  box-shadow:0 0 0 3px rgba(240,124,30,.1);
  transform:translateY(-1px);
}
.form-input::placeholder, .form-textarea::placeholder {
  color:var(--gray-400);
}
.form-textarea {
  resize:vertical; min-height:76px;
  line-height:1.6;
}
.char-counter {
  font-size:.75rem; color:var(--gray-400);
  text-align:right; margin-top:4px;
}

/* Laravel validation */
.input-error {
  border-color: #ef4444 !important;
  background: #fffafa !important;
}

.input-error:focus {
  box-shadow: 0 0 0 3px rgba(239,68,68,.12) !important;
}

.form-errors {
  background: #fef2f2;
  border: 1.5px solid #fecaca;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: .875rem;
  color: #991b1b;
}

.form-errors strong {
  display: block;
  margin-bottom: 6px;
  font-size: .875rem;
}

.form-errors ul {
  margin: 0;
  padding-left: 16px;
}

.form-errors li {
  margin-bottom: 3px;
}
.form-submit {
  width:100%; padding:12px;
  background:linear-gradient(135deg, var(--orange), var(--orange-dark));
  border:none; border-radius:var(--radius-sm);
  color:var(--white); font-size:1.05rem; font-weight:700;
  cursor:pointer; transition:all var(--transition);
  box-shadow:0 4px 20px rgba(240,124,30,.4);
  position:relative; overflow:hidden;
  letter-spacing:.02em;
}
.form-submit:hover {
  transform:translateY(-2px);
  box-shadow:0 8px 30px rgba(240,124,30,.55);
}
.form-submit:active { transform:translateY(0); }
.form-submit.loading {
  pointer-events:none;
}
.form-submit.loading::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  animation:shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { transform:translateX(-100%); }
  100% { transform:translateX(100%); }
}
.form-success {
  display:none; text-align:center; padding:20px;
  background:var(--gray-50); border-radius:var(--radius-md);
  border:1px solid var(--gray-100);
}
.form-success.show { display:block; }
.success-icon {
  font-size:3rem; margin-bottom:12px;
  animation:successBounce .5s ease;
}
.success-title {
  font-family:'Playfair Display', serif;
  font-size:1.4rem; font-weight:800; color:var(--blue-dark);
  margin-bottom:8px;
}
.success-message {
  color:var(--gray-600); font-size:.9rem;
}
@keyframes successBounce {
  0% { transform:scale(0); opacity:0; }
  70% { transform:scale(1.2); }
  100% { transform:scale(1); opacity:1; }
}

/* ============================================================
   CONTACT INFO SECTION
============================================================ */
#contact-info-section {
  padding:80px 0;
  background:var(--gray-50);
}
.contact-info-grid {
  display:grid; grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:32px;
}
.contact-card {
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-md);
  padding:16px 14px;
  text-align:center;
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position:relative; overflow:hidden;
}
.contact-card::before {
  content:''; position:absolute; top:0; left:0; right:0;
  height:4px; background:linear-gradient(90deg, var(--orange), var(--orange-light));
  transform:scaleX(0); transition:transform var(--transition);
}
.contact-card:hover::before { transform:scaleX(1); }
.contact-card:hover {
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
  border-color:rgba(240,124,30,.2);
}
.contact-icon {
  width:64px; height:64px;
  background:linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; margin:0 auto 20px;
  transition:transform var(--transition);
  box-shadow:0 8px 24px rgba(240,124,30,.3);
}
.contact-card:hover .contact-icon {
  transform:scale(1.1) rotate(5deg);
  animation:pulseIcon 2s infinite;
}
@keyframes pulseIcon {
  0%,100% { box-shadow:0 8px 24px rgba(240,124,30,.3); }
  50% { box-shadow:0 8px 24px rgba(240,124,30,.6); }
}
.contact-title {
  font-family:'Playfair Display', serif;
  font-size:1rem; font-weight:700; color:var(--blue-dark);
  margin-bottom:4px;
}
.contact-text {
  font-size:.95rem; color:var(--gray-600);
  line-height:1.6;
}
.contact-highlight {
  background:linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text; font-weight:600;
}

/* ============================================================
   TRUST SECTION
============================================================ */
#trust-section {
  padding:80px 0;
  background:var(--white);
}
.trust-content {
  max-width:600px; margin:0 auto; text-align:center;
}
.trust-quote {
  font-family:'Playfair Display', serif;
  font-size:1.8rem; font-style:italic; color:var(--blue-dark);
  line-height:1.4; margin-bottom:24px;
  position:relative;
}
.trust-quote::before {
  content:'"'; font-size:3rem; color:var(--orange);
  position:absolute; top:-10px; left:-30px;
}
.trust-quote::after {
  content:'"'; font-size:3rem; color:var(--orange);
  position:absolute; bottom:-30px; right:-30px;
}
.trust-message {
  font-size:1.05rem; color:var(--gray-600);
  line-height:1.7;
}

/* ============================================================
   CTA SECTION
============================================================ */
#cta-section {
  padding:80px 0;
  background:linear-gradient(135deg, var(--blue-dark) 0%, #0f3460 100%);
  position:relative; overflow:hidden;
}
.cta-bg-shape {
  position:absolute; border-radius:50%;
  background:rgba(240,124,30,.1); filter:blur(80px);
  animation:floatShape 6s ease-in-out infinite;
}
.cta-bg-shape-1 {
  width:300px; height:300px; top:-100px; right:-100px;
  animation-delay:0s;
}
.cta-bg-shape-2 {
  width:200px; height:200px; bottom:-50px; left:-50px;
  animation-delay:-2s;
}
@keyframes floatShape {
  0%,100% { transform:translate(0,0) scale(1); }
  33% { transform:translate(30px,-30px) scale(1.1); }
  66% { transform:translate(-20px,20px) scale(0.9); }
}
.cta-content {
  position:relative; z-index:2; text-align:center;
}
.cta-title {
  font-family:'Playfair Display', serif;
  font-size:clamp(2.5rem,5vw,3.5rem); font-weight:800;
  color:var(--white); line-height:1.1; margin-bottom:20px;
}
.cta-actions {
  display:flex; flex-wrap:wrap; justify-content:center; gap:16px;
  margin-top:40px;
}
.cta-btn {
  padding:16px 32px; border-radius:50px;
  font-size:1rem; font-weight:700;
  transition:all var(--transition);
  text-decoration:none;
}
.cta-btn-primary {
  background:var(--orange); color:var(--white);
  box-shadow:0 6px 24px rgba(240,124,30,.4);
}
.cta-btn-primary:hover {
  background:var(--orange-dark); transform:translateY(-3px);
  box-shadow:0 12px 36px rgba(240,124,30,.6);
}
.cta-btn-secondary {
  background:transparent; color:var(--white);
  border:2px solid rgba(255,255,255,.3);
}
.cta-btn-secondary:hover {
  background:rgba(255,255,255,.1); border-color:var(--white);
  transform:translateY(-2px);
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background:#060f1e; color:rgba(255,255,255,.7);
  padding:80px 0 0;
}
.footer-grid {
  display:grid; grid-template-columns:1.8fr 1fr 1fr 1.3fr;
  gap:48px; padding-bottom:60px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.footer-brand img { height:52px; width:auto; margin-bottom:20px; object-fit:contain; }
.footer-brand p { font-size:.88rem; line-height:1.8; color:rgba(255,255,255,.5); margin-bottom:24px; }
.footer-socials { display:flex; gap:10px; }
.social-icon {
  width:38px; height:38px; background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1); border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; transition:var(--transition); cursor:pointer;
  color:rgba(255,255,255,.5);
}
.social-icon:hover { background:var(--orange); border-color:var(--orange); color:var(--white); transform:translateY(-2px); }
.footer-heading {
  font-family:'Playfair Display', serif; font-weight:700; color:var(--white);
  font-size:1rem; margin-bottom:20px; padding-bottom:12px;
  position:relative;
}
.footer-heading::after {
  content:''; position:absolute; bottom:0; left:0;
  width:28px; height:2px; background:var(--orange); border-radius:2px;
}
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a {
  font-size:.88rem; color:rgba(255,255,255,.5);
  display:flex; align-items:center; gap:6px; transition:color var(--transition);
}
.footer-links a::before { content:'›'; color:var(--orange); }
.footer-links a:hover { color:var(--orange); }
.footer-contact { display:flex; flex-direction:column; gap:14px; }
.contact-row { display:flex; align-items:flex-start; gap:12px; font-size:.88rem; color:rgba(255,255,255,.5); line-height:1.6; }
.contact-icon {
  width:32px; height:32px; background:rgba(240,124,30,.15);
  border-radius:8px; display:flex; align-items:center; justify-content:center;
  color:var(--orange); flex-shrink:0; font-size:.85rem;
}
.contact-row a { color:rgba(255,255,255,.5); transition:color var(--transition); }
.contact-row a:hover { color:var(--orange); }
.footer-bottom {
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between;
  gap:16px; padding:24px 0;
}
.footer-copy { font-size:.8rem; color:rgba(255,255,255,.3); }
.footer-legal { display:flex; gap:20px; }
.footer-legal a { font-size:.8rem; color:rgba(255,255,255,.3); transition:color var(--transition); }
.footer-legal a:hover { color:var(--orange); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width:1100px) {
  .contact-form-container { grid-template-columns:1fr; gap:48px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
}
@media (max-width:860px) {
  .nav-links { display:none; }
  .nav-toggle { display:flex; }
  .hero-visual { display:none; }
  .hero-content { max-width:100%; }
  .contact-info-grid { grid-template-columns:1fr; }
  .cta-actions { flex-direction:column; align-items:center; }
  .trust-quote { font-size:1.5rem; }
  .trust-quote::before, .trust-quote::after { display:none; }
}
@media (max-width:600px) {
  #contact-hero { padding:120px 0 56px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .hero-stats-row { gap:24px; }
  .filter-row { gap:8px; }
  .filter-btn { padding:9px 16px; font-size:.82rem; }
  .form-row { grid-template-columns:1fr; }
  .cta-title { font-size:2rem; }
}


@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* ============================================================
   SCROLL TO TOP
============================================================ */
#scrollToTop {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1199;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--orange-light) 0%, var(--orange-dark) 100%);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(240,124,30,.5), 0 2px 6px rgba(0,0,0,.12);
  opacity: 0;
  transform: scale(1) translateY(0);
  pointer-events: none;
  transition: opacity .35s ease, box-shadow .25s ease, filter .25s ease;
  will-change: transform, opacity;
}
#scrollToTop::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(240,124,30,.65);
  pointer-events: none;
}
#scrollToTop.visible {
  opacity: 1;
  pointer-events: auto;
  animation: sttBounceIn .55s cubic-bezier(.34,1.56,.64,1) forwards,
             sttBob 3s ease-in-out .6s infinite;
}
#scrollToTop.visible::before {
  animation: sttPulse 2.5s ease-out .8s infinite;
}
#scrollToTop:hover {
  animation-play-state: paused;
  filter: brightness(1.1);
  box-shadow: 0 16px 44px rgba(240,124,30,.7), 0 0 0 10px rgba(240,124,30,.12), 0 2px 8px rgba(0,0,0,.15);
}
#scrollToTop:hover::before { animation-duration: 1.1s; }
#scrollToTop:active {
  filter: brightness(.92);
  box-shadow: 0 4px 16px rgba(240,124,30,.45);
}
#scrollToTop svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  pointer-events: none;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.3));
  position: relative;
  z-index: 1;
}
@keyframes sttBounceIn {
  0%   { transform: scale(0.2) translateY(30px); }
  60%  { transform: scale(1.18) translateY(-5px); }
  80%  { transform: scale(.96) translateY(2px); }
  100% { transform: scale(1) translateY(0); }
}
@keyframes sttBob {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-7px) scale(1.03); }
}
@keyframes sttPulse {
  0%   { transform: scale(1);    opacity: .7; }
  70%  { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}
@media (max-width: 480px) {
  #scrollToTop { left: 8px; right: auto; bottom: 12px; width: 44px; height: 44px; }
}

/* ────────────────────────────────────────────────────────────
   MOBILE FOOTER OVERHAUL — accordion + widget-collision fix
──────────────────────────────────────────────────────────── */

.footer-accordion-btn {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: default;
  padding: 0;
  display: block;
  width: 100%;
  text-align: left;
  pointer-events: none;
}
.footer-accordion-icon { display: none; }

/* ============================================================
   CONTACT PAGE — MOBILE ENHANCEMENTS
   Layered after the base responsive blocks; overrides where
   needed. Applies at ≤768 px, ≤480 px, ≤375 px.
============================================================ */
@media (max-width: 768px) {

  /* ── Container gutters — consistent 16 px on small viewports */
  .container { padding: 0 16px; }

  /* ── Hero ─────────────────────────────────────────────────── */
  #contact-hero  { padding: 100px 0 52px; min-height: auto; }
  /* Tighter clamp prevents H1 from wrapping awkwardly */
  .hero-title    { font-size: clamp(1.85rem, 7.5vw, 2.6rem); line-height: 1.15; }
  .hero-subtitle { font-size: .86rem; margin-bottom: 14px; }
  .hero-desc     { font-size: .93rem; margin-bottom: 24px; }

  /* Shrink and reposition glows to fit mobile viewport */
  .hero-glow {
    width: 110vw; height: 380px;
    top: 45%; left: 50%;
    filter: blur(48px);
  }
  .hero-spotlight {
    width: 90vw; height: 200px;
    top: 36%; left: 50%;
    filter: blur(28px);
  }
  /* Tighter grid fade on mobile — vanishes at both sides quickly */
  .hero-grid {
    -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 40%, black 10%, transparent 75%);
    mask-image:         radial-gradient(ellipse 100% 70% at 50% 40%, black 10%, transparent 75%);
    opacity: .04;
  }

  /* Stack CTA buttons vertically, full-width */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn {
    justify-content: center;
    min-height: 52px;
    padding: 14px 20px;
    border-radius: 14px;  /* slightly less pill on mobile — feels more native */
    font-size: 1rem;
  }

  /* ── Form section ─────────────────────────────────────────── */
  #contact-form-section   { padding: 24px 0 32px; }
  .contact-form-container { gap: 20px; }
  .contact-form-card      { padding: 20px 18px; }
  .form-title    { font-size: 1.35rem; }
  .form-subtitle { font-size: .85rem; margin-bottom: 14px; }
  .form-group    { margin-bottom: 10px; }

  /* iOS zoom fix: inputs need ≥ 16 px font-size to suppress auto-zoom */
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 1rem;
    min-height: 44px;
    padding: 10px 13px;
  }
  .form-textarea { min-height: 80px; }

  /* Submit button: comfortable tap height */
  .form-submit { min-height: 48px; font-size: 1rem; padding: 12px 20px; margin-top: 4px; }

  /* ── Contact info sidebar → 2-column grid (already set on desktop) */
  .contact-info-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .contact-card  { padding: 14px 12px; text-align: center; }
  .contact-icon  { font-size: 1rem; margin-bottom: 6px; }
  .contact-title { font-size: .88rem; margin-bottom: 3px; }
  .contact-text  { font-size: .78rem; line-height: 1.45; }

  /* Tactile active state for tappable cards */
  a.contact-card-link:active {
    transform: scale(.97);
    box-shadow: 0 2px 10px rgba(240,124,30,.2);
    transition: transform .1s ease, box-shadow .1s ease;
  }

  /* ── Form success state ───────────────────────────────────── */
  .form-success   { padding: 28px 14px; }
  .success-icon   { font-size: 2.4rem; margin-bottom: 8px; }
  .success-title  { font-size: 1.1rem; }
  .success-message{ font-size: .85rem; }

  /* ── CTA section ──────────────────────────────────────────── */
  #cta-section { padding: 52px 0; }
  .cta-title   { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  /* Override the 860 px `align-items:center` → stretch so buttons fill width */
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cta-btn {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 22px;
  }
}

/* ── Extra-small: keep 2-col sidebar, just tighter ───────── */
@media (max-width: 480px) {
  .contact-info-sidebar  { grid-template-columns: 1fr 1fr; gap: 8px; }
  .contact-card          { padding: 12px 10px; }
  .hero-eyebrow          { font-size: .7rem; padding: 5px 14px; }
  #contact-hero          { padding: 88px 0 44px; }
  .form-title            { font-size: 1.2rem; }
  .hero-title            { font-size: clamp(1.65rem, 8vw, 2rem); }
}

/* ── Very small (≤ 375 px) — prevent any bleed ───────────── */
@media (max-width: 375px) {
  .container      { padding: 0 12px; }
  .form-title     { font-size: 1.2rem; }
  .hero-eyebrow   { display: none; }   /* saves vertical space, not critical content */
  .cta-btn        { font-size: .92rem; padding: 13px 16px; }
}

/* ============================================================
   END CONTACT PAGE MOBILE ENHANCEMENTS
============================================================ */

@media (max-width: 768px) {
  .footer-accordion-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
  }

  .footer-accordion-icon {
    display: block;
    flex-shrink: 0;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    will-change: transform;
  }

  .footer-nav-accordion.open .footer-accordion-icon {
    transform: rotate(180deg);
  }

  .footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s cubic-bezier(.4,0,.2,1),
                opacity .3s ease;
  }

  .footer-nav-accordion.open .footer-accordion-content {
    max-height: 400px;
    opacity: 1;
  }

  .footer-accordion-content li,
  .footer-accordion-content > a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .footer-accordion-content li:last-child,
  .footer-accordion-content > a:last-child {
    border-bottom: none;
  }

  .footer-social a,
  .social-links a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #footer { padding-bottom: 140px; }

  #stickyDonate {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  #scrollToTop {
    left: 14px;
    right: auto;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }
}

/* ============================================================
   HERO BUTTON WOW FACTOR
   GPU-safe: box-shadow, transform, opacity only — 60 fps.
============================================================ */

/* ── 1. Idle ambient glow — primary button ──────────────────── */
@keyframes heroBtnGlow {
  0%, 100% {
    box-shadow:
      0 4px 20px rgba(240,124,30,.35),
      0 0   0   0   rgba(240,124,30,0);
  }
  50% {
    box-shadow:
      0 12px 40px rgba(240,124,30,.55),
      0 0   28px  6px rgba(240,124,30,.18);
  }
}

#contact-hero .btn-primary {
  animation: heroBtnGlow 3.2s ease-in-out infinite;
  will-change: box-shadow;
  transition:
    background  .3s ease,
    transform   .38s cubic-bezier(.34,1.56,.64,1),
    box-shadow  .3s ease;
}

/* Pause idle glow while interacting so hover shadow takes over cleanly */
#contact-hero .btn-primary:hover,
#contact-hero .btn-primary:active  { animation-play-state: paused; }

/* ── 2. Hover shimmer sweep — primary (replaces base ::after fade) */
.btn-primary::after {
  top: 0; bottom: 0; left: 0; right: auto;
  width: 52%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.32) 50%,
    transparent
  );
  opacity: 1;
  transform: translateX(-220%) skewX(-14deg);
  transition: transform .58s cubic-bezier(.4,0,.2,1);
}

.btn-primary:hover::after,
.btn-primary:focus-visible::after {
  transform: translateX(320%) skewX(-14deg);
  opacity: 1;
}

/* ── 3. Enhanced primary hover lift (magnetic CSS vars applied here) */
#contact-hero .btn-primary:hover {
  transform:
    translate(calc(var(--mx, 0) * 1px), calc(var(--my, 0) * 1px))
    translateY(-4px) scale(1.035);
  box-shadow:
    0 16px 48px rgba(240,124,30,.65),
    0 0   28px  6px rgba(240,124,30,.22);
}

/* ── 4. Ghost button — fluid left-to-right fill on hover ────── */
.hero-actions .btn-ghost {
  background:
    linear-gradient(
      to right,
      rgba(255,255,255,.14) 50%,
      rgba(255,255,255,.04) 50%
    )
    right / 200% 100% no-repeat;
  transition:
    background-position .44s cubic-bezier(.4,0,.2,1),
    border-color        .35s ease,
    color               .35s ease,
    box-shadow          .3s  ease,
    transform           .38s cubic-bezier(.34,1.56,.64,1);
}

.hero-actions .btn-ghost:hover {
  background-position: left center;
}

/* Magnetic lift for ghost (CSS vars injected by JS) */
#contact-hero .btn-ghost:hover {
  transform:
    translate(calc(var(--mx, 0) * 1px), calc(var(--my, 0) * 1px))
    translateY(-2px);
}

/* ── 5. Honour prefers-reduced-motion ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  #contact-hero .btn-primary            { animation: none; }
  .btn-primary::after                   { transition: none; }
  .hero-actions .btn-ghost              { transition: none; }
  #contact-hero .btn-primary:hover,
  #contact-hero .btn-ghost:hover        { transform: translateY(-2px); }
}

/* ── PRIMARY: continuous idle sheen via ::before ─────────────── */
#contact-hero .btn-primary::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 46%;
  background: linear-gradient(
    90deg,
    transparent           0%,
    rgba(255,255,255,.22) 46%,
    rgba(255,255,255,.30) 54%,
    transparent          100%
  );
  transform: translateX(-280%) skewX(-18deg);
  animation: heroBtnIdleSheen 4.4s cubic-bezier(.45, 0, .55, 1) infinite;
  pointer-events: none;
  z-index: 1;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@keyframes heroBtnIdleSheen {
  0%, 20%   { transform: translateX(-280%) skewX(-18deg); opacity: 0; }
  23%       { opacity: 1; }
  46%       { transform: translateX(360%)  skewX(-18deg); opacity: 1; }
  49%, 100% { transform: translateX(-280%) skewX(-18deg); opacity: 0; }
}

/* Freeze idle sheen while hover shimmer (::after) fires */
#contact-hero .btn-primary:hover::before,
#contact-hero .btn-primary:active::before {
  animation-play-state: paused;
  opacity: 0;
}

/* ── GHOST: idle border-glow breath ─────────────────────────── */
@keyframes ghostBorderBreath {
  0%, 100% {
    border-color: rgba(255,255,255,.30);
    box-shadow: none;
  }
  50% {
    border-color: rgba(255,255,255,.65);
    box-shadow: 0 0 0 3px rgba(255,255,255,.05),
                0 0 22px rgba(255,255,255,.09);
  }
}

#contact-hero .btn-ghost {
  animation: ghostBorderBreath 3.8s ease-in-out 1.4s infinite;
  will-change: border-color, box-shadow;
}

#contact-hero .btn-ghost:hover,
#contact-hero .btn-ghost:active { animation-play-state: paused; }

/* ── Click ripple (both hero buttons) ───────────────────────── */
.hero-btn-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: heroBtnRipple .65s linear forwards;
  pointer-events: none;
  z-index: 0;
}
.btn-primary .hero-btn-ripple { background: rgba(255,255,255,.30); }
.btn-ghost   .hero-btn-ripple { background: rgba(255,255,255,.18); }

@keyframes heroBtnRipple {
  to { transform: scale(5.5); opacity: 0; }
}

/* Strip new idle animations for reduced-motion users */
@media (prefers-reduced-motion: reduce) {
  #contact-hero .btn-primary::before { animation: none; opacity: 0; }
  #contact-hero .btn-ghost           { animation: none; }
  .hero-btn-ripple                   { display: none; }
}
