/* css/styles.css - Happy Hands Foundation Design System */

:root {
  --cream: #fffaf4;
  --orange: #f97316;
  --orange-dark: #c2410c;
  --orange-soft: #ffedd5;
  --line: #fed7aa;
  --slate: #020617;
  --muted: #64748b;
  --white: #ffffff;
  --green: #047857;
  --green-bg: #ecfdf5;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow: 0 24px 70px rgba(249, 115, 22, 0.14);
  --shadow-dark: 0 24px 70px rgba(15, 23, 42, 0.16);
  --shadow-hover: 0 32px 80px rgba(249, 115, 22, 0.2);
  
  --radius-xl: 44px;
  --radius-lg: 34px;
  --radius-md: 26px;
  --radius-sm: 18px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--slate);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }

/* Typography */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  background: white; color: var(--orange-dark);
  font-size: 13px; font-weight: 800;
  box-shadow: 0 10px 30px rgba(249,115,22,.08);
  border: 1px solid var(--line);
}
.section-kicker { margin: 0 0 14px; color: var(--orange-dark); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .22em; }
.section-title { margin: 0; font-size: clamp(38px, 5vw, 64px); line-height: .98; letter-spacing: -0.055em; font-weight: 900; }
.section-lede { margin: 22px 0 0; color: #475569; font-size: 18px; line-height: 1.75; max-width: 700px; }

/* Buttons */
.btn { 
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; 
  border-radius: 999px; padding: 15px 28px; font-size: 15px; font-weight: 800; 
  border: 1px solid transparent; cursor: pointer; 
  transition: all .25s ease; 
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-dark { background: var(--slate); color: white; box-shadow: var(--shadow-dark); }
.btn-dark:hover { box-shadow: 0 32px 80px rgba(15, 23, 42, 0.25); }
.btn-orange { background: linear-gradient(135deg, var(--orange), #f59e0b); color: white; box-shadow: 0 14px 38px rgba(249,115,22,.28); position: relative; overflow: hidden; }
.btn-orange::after {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.btn-orange:hover::after { opacity: 1; }
.btn-orange:hover { box-shadow: 0 20px 50px rgba(249,115,22,.35); }
.btn-light { background: white; color: var(--orange-dark); border-color: var(--line); }
.btn-light:hover { background: var(--orange-soft); }
.btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* Header */
.site-header { 
  position: sticky; top: 0; z-index: 100; 
  background: rgba(255, 250, 244, 0.8); backdrop-filter: blur(16px); 
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(255, 250, 244, 0.95); box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; transition: height 0.3s ease; }
.site-header.scrolled .nav-wrap { height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark img { width: 44px; height: 44px; object-fit: contain; }
.brand-name { margin: 0; font-size: 20px; line-height: 1; font-weight: 900; letter-spacing: -0.04em; }
.brand-sub { margin: 5px 0 0; font-size: 10px; line-height: 1; font-weight: 900; letter-spacing: .24em; color: var(--orange-dark); text-transform: uppercase; }

/* Desktop Navigation */
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 800; color: #334155; height: 100%; }
.nav-links > a, .nav-item { position: relative; height: 100%; display: flex; align-items: center; cursor: pointer; }
.nav-links > a:hover, .nav-item:hover { color: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Dropdown */
.has-dropdown { display: flex; align-items: center; gap: 4px; }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  background: white; border: 1px solid var(--line); border-radius: 24px;
  padding: 24px; width: 600px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: all 0.25s ease;
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-col h4 { margin: 0 0 16px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.dropdown-link { display: flex; gap: 12px; padding: 12px; border-radius: 12px; transition: background 0.2s; color: var(--slate); }
.dropdown-link:hover { background: var(--orange-soft); color: var(--slate) !important; }
.dropdown-link i { color: var(--orange); margin-top: 2px; }
.dropdown-link-text { display: flex; flex-direction: column; gap: 4px; }
.dropdown-link-text strong { font-size: 15px; font-weight: 800; }
.dropdown-link-text span { font-size: 13px; color: var(--muted); font-weight: 500; }

/* Mobile Menu */
.menu-btn { 
  display: none; border: 0; background: white; border-radius: 50%; 
  width: 48px; height: 48px; box-shadow: var(--shadow-sm); 
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  cursor: pointer; z-index: 101;
}
.menu-btn span { width: 20px; height: 2px; background: var(--slate); border-radius: 2px; transition: all 0.3s ease; }
.mobile-menu { 
  position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100vh;
  background: white; z-index: 100; padding: 100px 30px 40px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1); transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto; display: flex; flex-direction: column; gap: 20px;
}
.mobile-menu.open { right: 0; }
.mobile-menu a { font-size: 20px; font-weight: 800; padding: 10px 0; border-bottom: 1px solid var(--orange-soft); }
.mobile-actions { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }

/* Hero */
.hero { position: relative; padding: 80px 0 100px; overflow: hidden; background: linear-gradient(180deg, var(--cream) 0%, #fff7ed 40%, var(--cream) 100%); }
.hero::before, .hero::after { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.hero::before { right: -120px; top: 20px; background: rgba(249,115,22,.18); animation: orbPulse 8s ease-in-out infinite; }
.hero::after { left: -180px; bottom: 10px; background: rgba(253,224,71,.22); animation: orbPulse 10s ease-in-out infinite reverse; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero h1 { margin: 24px 0 0; font-size: clamp(48px, 6vw, 76px); line-height: .95; letter-spacing: -0.06em; font-weight: 900; }
.hero h1 span { color: var(--orange); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-badges { display: flex; gap: 16px; margin-top: 40px; }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; color: var(--slate); }
.hero-badge i { color: var(--orange); width: 24px; height: 24px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }

/* Hero Image Collage */
.hero-collage { position: relative; min-height: 600px; }
.hero-img-main { position: absolute; right: 0; top: 0; width: 85%; height: 500px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); z-index: 1; }
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); }
.hero-img-secondary { position: absolute; left: 0; bottom: 20px; width: 45%; height: 300px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-dark); border: 6px solid var(--cream); z-index: 2; }
.hero-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.float-card { position: absolute; z-index: 3; padding: 12px 16px; border-radius: 16px; background: white; box-shadow: var(--shadow-sm); font-size: 13px; font-weight: 800; display: flex; align-items: center; gap: 8px; animation: cardFloat 5s ease-in-out infinite; }
.float-card i { color: var(--orange); }
.float-card.one { right: -20px; top: 100px; }
.float-card.two { left: -10px; top: 180px; animation-delay: 1s; }
.impact-card { position: absolute; right: 20px; bottom: -10px; z-index: 3; border-radius: 24px; padding: 20px; background: var(--slate); color: white; box-shadow: var(--shadow-dark); width: 300px; }
.impact-card small { color: #fdba74; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: 11px; }
.impact-card p { margin: 8px 0; font-size: 20px; line-height: 1.2; font-weight: 800; }

@keyframes cardFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Stats */
.stats { position: relative; padding: 120px 0; background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e293b 100%); color: white; overflow: hidden; }
.stats-deco-1 { position: absolute; width: 600px; height: 600px; border-radius: 50%; top: -200px; left: -100px; background: radial-gradient(circle, rgba(249,115,22,0.2) 0%, transparent 70%); pointer-events: none; animation: orbPulse 6s ease-in-out infinite; }
.stats-deco-2 { position: absolute; width: 500px; height: 500px; border-radius: 50%; bottom: -200px; right: -50px; background: radial-gradient(circle, rgba(4,120,87,0.2) 0%, transparent 70%); pointer-events: none; animation: orbPulse 8s ease-in-out infinite reverse; }
@keyframes orbPulse { 0%, 100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.15); opacity: 1; } }
.stats-header { text-align: center; margin-bottom: 60px; }
.stats-header .section-title { font-size: clamp(32px, 4vw, 52px); }
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.stat-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 44px 20px 36px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), #f59e0b); opacity: 0; transition: opacity 0.4s ease; }
.stat-card:hover { transform: translateY(-12px); background: rgba(255,255,255,0.08); border-color: rgba(249,115,22,0.4); box-shadow: 0 30px 60px rgba(249,115,22,0.15); }
.stat-card:hover::before { opacity: 1; }
.stat-icon { color: var(--orange); margin-bottom: 20px; background: rgba(249,115,22,0.12); border-radius: 20px; width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.stat-card:hover .stat-icon { background: rgba(249,115,22,0.25); transform: scale(1.1); }
.stat-card strong { font-size: 52px; line-height: 1; letter-spacing: -0.04em; font-weight: 900; color: white; display: flex; align-items: baseline; gap: 2px; }
.stat-card strong small { font-size: 28px; font-weight: 800; color: var(--orange); }
.stat-card span { margin-top: 8px; color: #94a3b8; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.stat-bar { width: 100%; height: 4px; background: rgba(255,255,255,0.06); border-radius: 4px; margin-top: 20px; overflow: hidden; }
.stat-bar-fill { height: 100%; background: linear-gradient(90deg, var(--orange), #f59e0b); border-radius: 4px; transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1); }

/* Grids & Panels */
.about-grid, .program-intro, .donate-wrap, .testimonial-head, .volunteer-grid, .contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.orange-panel, .white-panel { border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--shadow-sm); }
.orange-panel { background: var(--orange); color: white; position: relative; overflow: hidden; }
.orange-bg-img { position: absolute; inset: 0; opacity: 0.1; mix-blend-mode: overlay; background-size: cover; background-position: center; }
.orange-panel > * { position: relative; z-index: 1; }
.orange-panel h2, .white-panel h2 { margin: 16px 0 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; letter-spacing: -0.05em; font-weight: 900; }
.quote-box { margin-top: 32px; border-radius: var(--radius-md); padding: 24px; background: rgba(255,255,255,.15); backdrop-filter: blur(4px); }
.quote-box strong { display: block; font-size: 24px; line-height: 1.2; font-weight: 900; }
.quote-box small { display: block; margin-top: 8px; color: rgba(255,255,255,.8); font-weight: 700; }
.white-panel { background: white; }
.white-panel-img { width: 100%; height: 200px; border-radius: var(--radius-md); object-fit: cover; margin-bottom: 24px; }
.white-panel > p { margin: 0; color: #475569; font-size: 18px; line-height: 1.7; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.mission-card { border-radius: var(--radius-md); padding: 24px; background: var(--cream); }
.mission-card.alt { background: #f8fafc; }
.mission-card i { color: var(--orange); width: 40px; height: 40px; background: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.mission-card h3 { margin: 16px 0 8px; font-size: 20px; letter-spacing: -0.03em; }
.mission-card p { margin: 0; color: #475569; font-size: 14px; line-height: 1.6; }
.about-actions { display: flex; gap: 12px; margin-top: 32px; }

/* Programs */
.program-intro { align-items: end; }
.pillar-block { border-radius: var(--radius-xl); padding: 40px; margin-top: 40px; }
.pillar-education { background: #fff7ed; border: 1px solid var(--line); }
.pillar-health { background: var(--slate); color: white; }
.pillar-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.pillar-title { display: flex; align-items: center; gap: 16px; }
.pillar-icon { width: 56px; height: 56px; border-radius: 20px; display: flex; align-items: center; justify-content: center; background: var(--orange); color: white; }
.pillar-title small { color: var(--orange-dark); font-size: 12px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.pillar-health .pillar-title small { color: #fdba74; }
.pillar-title h3 { margin: 4px 0 0; font-size: 32px; letter-spacing: -0.04em; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-grid.two { grid-template-columns: repeat(2, 1fr); }
.program-card { border-radius: var(--radius-lg); background: white; color: var(--slate); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s ease; display: flex; flex-direction: column; }
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.program-image { position: relative; height: 220px; overflow: hidden; }
.program-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.program-card:hover .program-image img { transform: scale(1.05); }
.program-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); }
.program-tag { position: absolute; top: 16px; left: 16px; border-radius: 999px; background: rgba(255,255,255,.9); padding: 6px 12px; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-dark); z-index: 2; }
.program-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.program-body h4 { margin: 0; font-size: 24px; line-height: 1.2; letter-spacing: -0.04em; }
.program-sentence { margin: 12px 0 0; color: var(--orange-dark); font-weight: 800; line-height: 1.5; font-size: 14px; }
.program-desc { margin: 12px 0 0; color: #475569; line-height: 1.6; font-size: 15px; flex-grow: 1; }
.program-actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }

/* Donate */
.donate-wrap { background: var(--slate); overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow-dark); }
.donate-copy { padding: 48px; color: white; position: relative; }
.donate-copy::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at top right, rgba(249,115,22,0.1), transparent 50%); pointer-events: none; }
.donate-copy h2 { margin: 24px 0 0; font-size: clamp(36px, 4vw, 56px); line-height: 1.1; letter-spacing: -0.05em; }
.donate-copy p { margin: 20px 0 0; color: #cbd5e1; font-size: 18px; line-height: 1.7; }
.payment-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.payment-card { border-radius: var(--radius-md); background: rgba(255,255,255,.05); padding: 24px; border: 1px solid rgba(255,255,255,0.1); }
.payment-card i { color: var(--orange); margin-bottom: 12px; }
.payment-card h3 { margin: 0 0 8px; font-size: 18px; }
.payment-card p { margin: 0; font-size: 14px; line-height: 1.5; color: #94a3b8; }
.donate-panel { background: #fff7ed; padding: 40px; display: flex; align-items: center; justify-content: center; }
.donation-card { border-radius: var(--radius-lg); background: white; padding: 32px; box-shadow: 0 20px 40px rgba(249,115,22,.1); width: 100%; max-width: 450px; }
.donation-label { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; margin: 0 0 8px; }
.donation-card h3 { margin: 0 0 24px; font-size: 28px; line-height: 1.1; letter-spacing: -0.04em; }
.amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.amount-btn { border: 1px solid var(--line); background: white; border-radius: 12px; padding: 14px 8px; font-size: 16px; font-weight: 800; cursor: pointer; transition: all 0.2s; color: var(--slate); }
.amount-btn:hover { border-color: var(--orange); }
.amount-btn.active { background: var(--orange); color: white; border-color: var(--orange); }
.custom-amount { margin-top: 16px; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; display: flex; align-items: center; gap: 8px; }
.custom-amount span { font-weight: 800; color: var(--muted); }
.custom-amount input { border: none; outline: none; font-size: 16px; font-weight: 800; font-family: inherit; width: 100%; }
.funds { margin-top: 24px; }
.funds > p { font-weight: 800; margin: 0 0 12px; font-size: 14px; color: var(--slate); }
.fund-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.fund-btn { border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 800; cursor: pointer; background: white; color: var(--slate); transition: all 0.2s; }
.fund-btn:hover { background: var(--cream); }
.fund-btn.active { background: var(--slate); color: white; border-color: var(--slate); }
.donation-actions { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
.ssl-badge { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 16px; color: var(--green); font-size: 12px; font-weight: 800; }

/* Gallery */
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 20px; margin-top: 40px; }
.gallery-card { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card.tall { grid-column: span 2; grid-row: span 2; }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: white; }
.gallery-overlay small { font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--line); }
.gallery-overlay h3 { margin: 4px 0 0; font-size: 20px; line-height: 1.2; letter-spacing: -0.02em; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
blockquote { margin: 0; border-radius: var(--radius-lg); background: white; padding: 32px; box-shadow: var(--shadow-sm); position: relative; border: 1px solid var(--cream); transition: border-color 0.3s; }
blockquote:hover { border-color: var(--orange); }
.quote-icon { color: var(--orange-soft); width: 40px; height: 40px; margin-bottom: 16px; }
blockquote p { margin: 0; color: #475569; line-height: 1.7; font-size: 15px; font-style: italic; }
blockquote footer { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--orange-soft), var(--line)); color: var(--orange-dark); font-weight: 900; font-size: 18px; }
blockquote strong { display: block; color: var(--slate); font-size: 15px; font-weight: 800; }
blockquote small { color: var(--orange); font-weight: 700; font-size: 13px; }

/* Volunteer & Contact */
.role-card { border-radius: var(--radius-md); background: white; padding: 32px; box-shadow: var(--shadow-sm); }
.role-icon { width: 48px; height: 48px; background: var(--orange-soft); color: var(--orange-dark); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.role-card h3 { margin: 0 0 16px; font-size: 22px; letter-spacing: -0.03em; }
.role-card ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.role-card li { display: flex; gap: 12px; color: #475569; font-size: 14px; font-weight: 700; align-items: center; }
.role-card li i { color: var(--orange); flex-shrink: 0; }

.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 16px; border-radius: var(--radius-md); background: #fff7ed; padding: 24px; color: #334155; font-weight: 700; line-height: 1.5; align-items: center; }
.contact-card i { color: var(--orange); flex-shrink: 0; width: 24px; height: 24px; }
.contact-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-card { border-radius: var(--radius-md); background: white; padding: 32px; border: 1px solid var(--line); }
.contact-form-card h3 { margin: 0 0 20px; font-size: 20px; }
.form-group { margin-bottom: 16px; }
.form-control { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line); font-family: inherit; font-size: 14px; }
.form-control:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-soft); }
textarea.form-control { resize: vertical; min-height: 100px; }

/* Footer */
.footer { background: white; padding: 60px 0 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { width: 60px; height: 60px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { color: #64748b; line-height: 1.6; max-width: 300px; margin: 0 0 16px; }
.footer-heading { font-size: 16px; font-weight: 900; color: var(--slate); margin: 0 0 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: #64748b; font-weight: 700; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: var(--cream); color: var(--slate); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.social-links a:hover { background: var(--orange); color: white; transform: translateY(-3px); }
.footer-bottom { padding-top: 30px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; color: #94a3b8; font-size: 13px; font-weight: 700; }

/* Animations */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

#scrollTop { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; border-radius: 50%; background: var(--slate); color: white; border: none; box-shadow: var(--shadow-dark); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; pointer-events: none; transition: all 0.3s ease; z-index: 99; }
#scrollTop:hover { background: var(--orange); transform: translateY(-5px); }

/* Page Hero */
.page-hero { padding: 120px 0 80px; text-align: center; background: var(--cream); position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::before { content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%; right: -100px; top: -100px; background: rgba(249,115,22,.1); filter: blur(60px); pointer-events: none; }
.page-hero::after { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; left: -50px; bottom: -50px; background: rgba(253,224,71,.15); filter: blur(50px); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.page-hero h1 { font-size: clamp(40px, 5vw, 64px); letter-spacing: -0.05em; font-weight: 900; margin: 16px 0; }
.page-hero p { font-size: 18px; color: #475569; line-height: 1.7; }

/* Content Blocks */
.content-block { font-size: 16px; line-height: 1.8; color: #334155; }
.content-block h2 { font-size: 32px; letter-spacing: -0.03em; margin: 40px 0 20px; font-weight: 900; color: var(--slate); }
.content-block h3 { font-size: 24px; margin: 30px 0 16px; font-weight: 800; }
.content-block p { margin-bottom: 20px; }
.content-block ul { margin-bottom: 24px; padding-left: 20px; }
.content-block li { margin-bottom: 10px; }

/* Page Layouts & Sections */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-image { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.split-image::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.4); border-radius: inherit; pointer-events: none; }
.split-content h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.1; letter-spacing: -0.04em; font-weight: 900; margin: 0 0 24px; color: var(--slate); }
.split-content p { font-size: 18px; color: #475569; line-height: 1.7; margin-bottom: 20px; }

.quote-banner { background: var(--slate); color: white; padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.quote-banner::before { content: ""; position: absolute; top: -50%; left: -10%; width: 50%; height: 200%; background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 60%); pointer-events: none; }
.quote-banner h3 { font-size: clamp(36px, 5vw, 56px); line-height: 1.1; letter-spacing: -0.04em; font-weight: 900; max-width: 800px; margin: 0 auto 20px; position: relative; z-index: 1; }
.quote-banner p { color: #94a3b8; font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 800; position: relative; z-index: 1; }

.mission-vision-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: -40px; position: relative; z-index: 10; padding: 0 20px; }
.mv-card { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform 0.3s ease; }
.mv-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: transparent; }
.mv-icon { width: 64px; height: 64px; border-radius: 20px; background: var(--orange-soft); color: var(--orange-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.mv-card h3 { font-size: 28px; font-weight: 900; margin: 0 0 16px; letter-spacing: -0.03em; }
.mv-card p { color: #475569; font-size: 16px; line-height: 1.7; margin: 0; }

/* Responsive */
@media (max-width: 1040px) {
  .nav-links, .nav-actions { display: none; }
  .menu-btn { display: flex; }
  .hero-grid, .about-grid, .program-intro, .donate-wrap, .testimonial-head, .volunteer-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-collage { min-height: 400px; margin-top: 40px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats { padding: 80px 0; }
  .program-grid, .program-grid.two { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero h1 { font-size: 40px; }
  .hero-img-main { width: 100%; position: relative; height: 350px; }
  .hero-img-secondary { display: none; }
  .float-card { display: none; }
  .stats-grid, .mission-grid, .payment-cards, .contact-two, .program-grid, .program-grid.two, .gallery-grid, .testimonial-grid, .footer-grid, .split-layout, .mission-vision-wrapper { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { padding: 60px 0; }
  .stat-card strong { font-size: 40px; }
  .mission-vision-wrapper { margin-top: 20px; }
  .gallery-card.tall { grid-column: span 1; grid-row: span 1; }
  .orange-panel, .white-panel, .donate-copy, .donate-panel { padding: 32px 24px; }
  .pillar-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .quote-banner { padding: 60px 20px; }
}
