/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== FINGER PAINT FONT ===== */
.nav-logo .logo-text { font-family: 'Finger Paint', cursive; }

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #6c3de8;
  --primary-dark: #5429c8;
  --secondary: #f7971e;
  --accent: #ff6b6b;
  --grad-1: linear-gradient(135deg, #6c3de8 0%, #a855f7 50%, #ec4899 100%);
  --grad-2: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
  --grad-3: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --grad-hero: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8888aa;
  --bg-light: #f8f7ff;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(108,61,232,0.12);
  --shadow-lg: 0 20px 60px rgba(108,61,232,0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(108,61,232,0.08);
  transition: var(--transition);
}
.navbar.scrolled { padding: 0.6rem 0; box-shadow: var(--shadow); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.4rem; font-weight: 800; font-family: 'Finger Paint', cursive; }
.logo-icon { font-size: 1.6rem; }
.logo-text { color: var(--text-dark); }
.logo-text .accent { background: var(--grad-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-mid); transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--grad-1); color: white !important; padding: 0.5rem 1.2rem; border-radius: 50px; font-weight: 600 !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(108,61,232,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--grad-hero);
  position: relative; overflow: hidden; padding: 8rem 2rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(168,85,247,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(236,72,153,0.1) 0%, transparent 50%);
}
.hero-content { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 500; margin-bottom: 1.5rem; backdrop-filter: blur(10px); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); color: white; line-height: 1.2; margin-bottom: 1.5rem; }
.gradient-text { background: linear-gradient(135deg, #f7971e, #ffd200, #ff6b6b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.stat { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); padding: 1rem; backdrop-filter: blur(10px); }
.stat-num { display: block; font-size: 1.6rem; font-weight: 800; color: #ffd200; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.hero-visual { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; }
.hero-circle { width: 300px; height: 300px; border-radius: 50%; background: var(--grad-1); opacity: 0.15; filter: blur(40px); position: absolute; }
.hero-card { position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(20px); border-radius: var(--radius); padding: 1rem 1.5rem; display: flex; align-items: center; gap: 0.75rem; color: white; font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.hero-card i { font-size: 1.2rem; color: #ffd200; }
.card-float { top: 20%; left: 0; animation: float 3s ease-in-out infinite; }
.card-float-2 { top: 50%; right: 0; animation: float 3s ease-in-out infinite 1s; }
.card-float-3 { bottom: 15%; left: 10%; animation: float 3s ease-in-out infinite 2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background: var(--grad-1); color: white; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(108,61,232,0.35); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.btn-outline-dark { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: white; transform: translateY(-3px); }
.btn-program { background: var(--grad-1); color: white; width: 100%; justify-content: center; margin-top: 1.5rem; }
.btn-program:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(108,61,232,0.3); }
.btn-white { background: white; color: var(--primary); font-weight: 700; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.15); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; background: var(--grad-1); color: white; border-radius: 50px; }
.btn-sm:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(108,61,232,0.3); }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTIONS ===== */
.section { padding: 6rem 2rem; }
.section-alt { background: var(--bg-light); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { display: inline-block; background: linear-gradient(135deg, rgba(108,61,232,0.1), rgba(168,85,247,0.1)); color: var(--primary); padding: 0.35rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--text-dark); margin-bottom: 1rem; }
.section-header p { color: var(--text-mid); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.sub-heading { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--text-dark); margin-bottom: 2rem; text-align: center; }

/* ===== ABOUT ===== */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 4rem; }
.mv-card { padding: 2.5rem; border-radius: var(--radius); position: relative; overflow: hidden; }
.mv-card.mission { background: var(--grad-1); color: white; }
.mv-card.vision { background: linear-gradient(135deg, #1a1a2e, #302b63); color: white; }
.mv-icon { width: 56px; height: 56px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem; }
.mv-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; }
.mv-card p { opacity: 0.9; line-height: 1.7; }

/* Values */
.values-section { margin-bottom: 4rem; }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.value-card { background: white; border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid rgba(108,61,232,0.06); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.value-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.8rem; color: var(--text-mid); line-height: 1.5; }

/* Timeline */
.journey-section { margin-bottom: 4rem; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0.5rem; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), #ec4899); }
.timeline-item { position: relative; padding: 0 0 2rem 2rem; }
.timeline-dot { position: absolute; left: -1.6rem; top: 0.3rem; width: 14px; height: 14px; border-radius: 50%; background: var(--primary); border: 3px solid white; box-shadow: 0 0 0 3px rgba(108,61,232,0.2); }
.timeline-dot.active { background: var(--secondary); box-shadow: 0 0 0 3px rgba(247,151,30,0.3); }
.timeline-content { background: white; border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; box-shadow: var(--shadow); }
.timeline-content h4 { font-weight: 700; color: var(--text-dark); margin-bottom: 0.4rem; }
.timeline-content p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card { background: white; border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 800; color: white; margin: 0 auto 1rem; }
.team-card h4 { font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.team-role { display: inline-block; background: linear-gradient(135deg, rgba(108,61,232,0.1), rgba(168,85,247,0.1)); color: var(--primary); padding: 0.2rem 0.75rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; margin-bottom: 1rem; }
.linkedin-btn { display: inline-flex; align-items: center; gap: 0.4rem; background: #0077b5; color: white; padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; transition: var(--transition); }
.linkedin-btn:hover { background: #005885; transform: translateY(-2px); }

/* ===== PROGRAMS ===== */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.program-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); position: relative; }
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.program-card.featured { border: 2px solid var(--primary); }
.program-badge { position: absolute; top: 1rem; right: 1rem; background: var(--secondary); color: white; padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; z-index: 1; }
.program-header { padding: 2rem; text-align: center; color: white; }
.sojo-grad { background: var(--grad-1); }
.solo-grad { background: linear-gradient(135deg, #f7971e, #ffd200, #ff6b6b); }
.resilient-grad { background: linear-gradient(135deg, #43e97b, #38f9d7, #0099f7); }
.program-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6re
m; margin: 0 auto 1rem; }
.program-header h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.program-subtitle { font-size: 0.85rem; opacity: 0.85; }
.program-body { padding: 1.5rem; }
.program-body p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.program-features { display: flex; flex-direction: column; gap: 0.5rem; }
.program-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--text-mid); }
.program-features i { color: #43e97b; font-size: 0.9rem; flex-shrink: 0; }
.roadmap { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }
.roadmap-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.year { background: var(--grad-1); color: white; padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.75rem; font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.roadmap-item p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }
.roadmap-item.highlight .year { background: var(--grad-2); }

/* ===== SUPPORT ===== */
.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.support-card { background: white; border-radius: var(--radius); padding: 2rem; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.support-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.support-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1.25rem; }
.donate-icon { background: linear-gradient(135deg, #ff6b6b, #ffd200); color: white; }
.volunteer-icon { background: var(--grad-1); color: white; }
.partner-icon { background: var(--grad-3); color: white; }
.spread-icon { background: linear-gradient(135deg, #0077b5, #00a0dc); color: white; }
.support-card h3 { font-weight: 700; margin-bottom: 0.75rem; }
.support-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1.5rem; }
.impact-banner { background: var(--grad-1); border-radius: var(--radius); padding: 2.5rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.impact-text h3 { color: white; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.impact-text p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* ===== BLOGS ===== */
.blogs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2.5rem; }
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img { height: 180px; }
.blog-img-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.blog-img-2 { background: linear-gradient(135deg, #f7971e, #ffd200); }
.blog-img-3 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.blog-body { padding: 1.5rem; }
.blog-tag { display: inline-block; background: linear-gradient(135deg, rgba(108,61,232,0.1), rgba(168,85,247,0.1)); color: var(--primary); padding: 0.2rem 0.75rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; margin-bottom: 0.75rem; }
.blog-body h4 { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 0.6rem; line-height: 1.4; }
.blog-body p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; }
.blog-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--primary); font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.blog-link:hover { gap: 0.7rem; }
.blogs-cta { text-align: center; }

/* ===== CAREERS ===== */
.careers-tabs { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; background: white; padding: 0.5rem; border-radius: 50px; box-shadow: var(--shadow); width: fit-content; }
.tab-btn { padding: 0.6rem 1.5rem; border-radius: 50px; border: none; background: transparent; font-weight: 600; font-size: 0.9rem; color: var(--text-mid); cursor: pointer; transition: var(--transition); }
.tab-btn.active { background: var(--grad-1); color: white; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.job-card { background: white; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); transition: var(--transition); }
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.job-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 0.75rem; }
.job-header i { font-size: 1.4rem; color: var(--primary); margin-top: 0.2rem; flex-shrink: 0; }
.job-header h4 { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.2rem; }
.job-header span { font-size: 0.8rem; color: var(--text-light); }
.job-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; }
.job-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.job-tags span { background: var(--bg-light); color: var(--primary); padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.75rem; font-weight: 500; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { width: 44px; height: 44px; background: var(--grad-1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; flex-shrink: 0; }
.contact-item h4 { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-item a, .contact-item p { font-size: 0.85rem; color: var(--text-mid); }
.contact-item a:hover { color: var(--primary); }
.social-links { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-btn { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; transition: var(--transition); }
.social-btn:hover { transform: translateY(-3px) scale(1.1); }
.social-btn.linkedin { background: #0077b5; }
.social-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.whatsapp { background: #25d366; }
.social-btn.telegram { background: #0088cc; }
.contact-form { background: white; border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #e8e8f0; border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text-dark);
  transition: var(--transition); background: #fafafa; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(108,61,232,0.08); }
.form-group textarea { resize: vertical; }
.form-success { display: none; align-items: center; gap: 0.5rem; color: #43e97b; font-weight: 600; margin-top: 1rem; font-size: 0.9rem; }
.form-success.show { display: flex; }
.form-success i { font-size: 1.2rem; }

/* ===== FOOTER ===== */
.footer { background: #0f0c29; color: rgba(255,255,255,0.75); padding: 4rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { margin-bottom: 1rem; display: inline-flex; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-3px); }
.footer-links h4 { color: white; font-weight: 700; margin-bottom: 1.25rem; font-size: 0.95rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ===== SCROLL TOP ===== */
.scroll-top { position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px; background: var(--grad-1); color: white; border: none; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(108,61,232,0.4); transition: var(--transition); opacity: 0; pointer-events: none; z-index: 999; }
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(108,61,232,0.5); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 1.5rem 2rem; box-shadow: var(--shadow); gap: 1rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr 1fr; }
  .blogs-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .impact-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .careers-tabs { flex-wrap: wrap; border-radius: var(--radius); }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== NEWSLETTER STRIP ===== */
.newsletter-strip { background: var(--grad-1); padding: 3rem 2rem; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.newsletter-text h3 { color: white; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.3rem; }
.newsletter-text p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.newsletter-form input { padding: 0.75rem 1.25rem; border-radius: 50px; border: none; font-size: 0.9rem; min-width: 280px; outline: none; font-family: 'Inter', sans-serif; }
.newsletter-form input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }

/* ===== ADMIN LINK ===== */
.admin-link { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.admin-link:hover { color: rgba(255,255,255,0.7); }

/* ===== NAV ACTIVE ===== */
.nav-links a.active { color: var(--primary); font-weight: 600; }

@media (max-width: 768px) {
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { justify-content: center; }
  .newsletter-form input { min-width: 240px; }
}

/* ===== APPLICATION MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(15,12,41,0.7); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white; border-radius: var(--radius); padding: 2.5rem;
  width: 100%; max-width: 620px; max-height: 90vh; overflow-y: auto;
  position: relative; box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
.modal-close {
  position: absolute; top: 1rem; right: 1.25rem;
  background: none; border: none; font-size: 1.8rem; cursor: pointer;
  color: var(--text-light); line-height: 1; transition: var(--transition);
}
.modal-close:hover { color: var(--text-dark); }
.modal-box h2 { font-size: 1.5rem; margin-bottom: 0.25rem; color: var(--text-dark); }
.modal-subtitle { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 1.75rem; }
