/* ==========================================
   TRIPLE JAY EDUCATIONAL FOUNDATION
   Global Stylesheet
   ========================================== */

:root {
  --green-primary: #1B5E20;
  --green-mid: #2E7D32;
  --green-light: #4CAF50;
  --green-pale: #E8F5E9;
  --green-accent: #81C784;
  --gold: #F9A825;
  --gold-light: #FFF9C4;
  --text-dark: #1a1a1a;
  --text-body: #444;
  --text-muted: #777;
  --white: #ffffff;
  --bg-light: #F9FAFB;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { color: var(--text-dark); }

em { font-style: normal; color: var(--green-mid); }

/* ==========================================
   NAVBAR
   ========================================== */
#mainNav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 12px 0;
  transition: all 0.3s ease;
}
#mainNav.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.logo-placeholder {
  width: 44px; height: 44px;
  background: var(--green-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-placeholder span {
  color: #fff; font-weight: 700; font-size: 12px; letter-spacing: 0.5px;
}
.logo-light { background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-top { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; color: var(--green-primary); }
.brand-bottom { font-size: 10px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.3px; }
.nav-link {
  font-weight: 500; font-size: 14.5px; color: var(--text-dark) !important;
  padding: 8px 12px !important; border-radius: 8px; transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--green-primary) !important; background: var(--green-pale); }
.btn-donate {
  background: var(--green-primary); color: #fff !important; font-weight: 600;
  font-size: 14px; padding: 9px 22px; border-radius: 50px;
  transition: all 0.3s; border: 2px solid var(--green-primary);
}
.btn-donate:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,94,32,0.3); }
.active-donate { box-shadow: 0 0 0 3px rgba(27,94,32,0.25) !important; }

/* ==========================================
   HERO
   ========================================== */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-img-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 40%, #1a3a1a 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-inner { text-align: center; color: rgba(255,255,255,0.2); }
.hero-img-inner i { font-size: 4rem; display: block; margin-bottom: 8px; }
.hero-img-inner span { font-size: 14px; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(27,94,32,0.4) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 100px; }
.hero-eyebrow {
  display: inline-block; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 13px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 18px; border-radius: 50px;
  margin-bottom: 20px; backdrop-filter: blur(6px);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 80px); font-weight: 900;
  color: #fff; line-height: 1.08; margin-bottom: 22px;
}
.hero-title em { color: var(--gold); }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: 36px; line-height: 1.7; }
.btn-hero-primary {
  background: var(--gold); color: var(--text-dark) !important; font-weight: 700;
  font-size: 15px; padding: 14px 32px; border-radius: 50px;
  transition: all 0.3s; border: none;
}
.btn-hero-primary:hover { background: #ffb300; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,168,37,0.4); }
.btn-hero-secondary {
  background: transparent; color: #fff !important; font-weight: 600;
  font-size: 15px; padding: 14px 32px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6); transition: all 0.3s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.hero-tagline-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: var(--gold); padding: 14px 0;
}
.tagline-text { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #1a1a1a; }
.tagline-text i { color: var(--green-primary); margin-right: 8px; }

/* ==========================================
   STATS
   ========================================== */
.stats-section { background: var(--bg-light); }
.stat-card {
  background: #fff; border-radius: var(--radius); padding: 28px 20px;
  box-shadow: var(--shadow); transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-icon { font-size: 2rem; color: var(--green-mid); margin-bottom: 12px; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 900; color: var(--green-primary); }
.stat-label { font-size: 13.5px; color: var(--text-muted); font-weight: 500; margin-top: 4px; }

/* ==========================================
   SECTION TYPOGRAPHY
   ========================================== */
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--green-light);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  color: var(--text-dark); line-height: 1.2; margin-bottom: 18px;
}
.section-body { font-size: 16px; color: var(--text-body); line-height: 1.75; }

/* ==========================================
   ABOUT SNIPPET
   ========================================== */
.about-snippet { background: #fff; }
.about-img-wrap { position: relative; padding: 0 0 40px 0; }
.img-placeholder {
  background: var(--green-pale); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--green-mid); gap: 10px; overflow: hidden;
}
.img-placeholder i { font-size: 2.5rem; opacity: 0.5; }
.img-placeholder span { font-size: 13px; font-weight: 500; opacity: 0.6; }
.main-img { width: 100%; min-height: 340px; }
.small-img {
  width: 200px; min-height: 160px;
  position: absolute; bottom: 0; right: 0;
  border: 4px solid #fff; box-shadow: var(--shadow-lg);
}
.green-blob {
  position: absolute; top: -20px; left: -30px; z-index: -1;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--green-pale); opacity: 0.6;
}
.values-chips { flex-wrap: wrap; }
.chip {
  background: var(--green-pale); color: var(--green-primary);
  font-size: 13px; font-weight: 600; padding: 6px 14px;
  border-radius: 50px; border: 1px solid rgba(46,125,50,0.2);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary-green {
  background: var(--green-primary); color: #fff !important;
  font-weight: 600; font-size: 15px; padding: 12px 28px;
  border-radius: 50px; transition: all 0.3s; border: 2px solid var(--green-primary);
}
.btn-primary-green:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(27,94,32,0.3); }
.btn-outline-green {
  background: transparent; color: var(--green-primary) !important;
  font-weight: 600; font-size: 14px; padding: 11px 26px;
  border-radius: 50px; border: 2px solid var(--green-primary); transition: all 0.3s;
}
.btn-outline-green:hover { background: var(--green-primary); color: #fff !important; }

/* ==========================================
   PROGRAMS SECTION
   ========================================== */
.programs-section { background: var(--bg-light); }
.program-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow); height: 100%; transition: all 0.3s;
  border-bottom: 3px solid transparent;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--green-light); }
.program-icon {
  width: 56px; height: 56px; background: var(--c); color: var(--ic);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.program-card h5 { font-weight: 700; font-size: 17px; margin-bottom: 12px; color: var(--text-dark); }
.program-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.prog-link { font-weight: 600; font-size: 14px; color: var(--green-primary); text-decoration: none; }
.prog-link:hover { text-decoration: underline; }
.prog-link i { font-size: 11px; vertical-align: middle; margin-left: 2px; }

/* ==========================================
   FOUNDER SECTION
   ========================================== */
.founder-section { background: var(--green-pale); }
.founder-card {
  background: #fff; border-radius: var(--radius-lg); padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.founder-img { width: 160px; height: 160px; border-radius: 50%; margin: auto; }
.founder-img i { font-size: 4rem; }
.founder-quote-icon { font-size: 3rem; color: var(--green-accent); line-height: 1; }
.founder-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2vw, 20px); line-height: 1.75;
  color: var(--text-dark); border: none; padding: 0; margin: 0 0 20px;
  font-style: italic;
}
.founder-sig { font-size: 15px; color: var(--text-muted); font-weight: 500; }
.founder-img-wrap { display: flex; justify-content: center; }

/* ==========================================
   DONATE CTA
   ========================================== */
.donate-cta { background: #fff; }
.cta-card {
  background: var(--green-primary); border-radius: var(--radius-lg);
  padding: 64px 40px; overflow: hidden; position: relative;
}
.cta-bg-pattern {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle at 10% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(249,168,37,0.15) 0%, transparent 50%);
}
.cta-card h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px);
  color: #fff; margin-bottom: 16px;
}
.cta-card h2 em { color: var(--gold); }
.cta-card p { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 520px; margin: auto; }
.btn-donate-white {
  background: #fff; color: var(--green-primary) !important;
  font-weight: 700; font-size: 15px; padding: 13px 32px;
  border-radius: 50px; border: 2px solid #fff; transition: all 0.3s;
}
.btn-donate-white:hover { background: var(--gold); border-color: var(--gold); }
.btn-outline-white {
  background: transparent; color: #fff !important;
  font-weight: 600; font-size: 15px; padding: 13px 30px;
  border-radius: 50px; border: 2px solid rgba(255,255,255,0.6); transition: all 0.3s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ==========================================
   NEWS
   ========================================== */
.news-preview { background: var(--bg-light); }
.news-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); height: 100%; transition: transform 0.3s;
}
.news-card:hover { transform: translateY(-4px); }
.news-img-placeholder {
  width: 100%; height: 200px;
  background: var(--green-pale); display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: var(--green-mid);
}
.news-img-placeholder i { font-size: 2rem; opacity: 0.4; }
.news-img-placeholder span { font-size: 12px; opacity: 0.5; margin-top: 6px; }
.news-body { padding: 20px; }
.news-tag {
  display: inline-block; background: var(--green-pale); color: var(--green-primary);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px; margin-bottom: 10px;
}
.news-body h6 { font-weight: 700; font-size: 15px; line-height: 1.5; margin-bottom: 10px; color: var(--text-dark); }
.news-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.news-read-more { font-size: 13px; font-weight: 600; color: var(--green-primary); text-decoration: none; }
.news-read-more:hover { text-decoration: underline; }
.news-date { font-size: 12px; color: var(--text-muted); }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer { background: #0d2b0f; color: rgba(255,255,255,0.75); }
.footer-top { padding: 60px 0 40px; }
.footer-about { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.6); }
.footer-heading { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--green-accent); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--green-accent); margin-top: 2px; flex-shrink: 0; }
.social-btn {
  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); text-decoration: none; font-size: 15px; transition: all 0.2s;
}
.social-btn:hover { background: var(--green-mid); color: #fff; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; font-size: 13px; color: rgba(255,255,255,0.45);
}
.footer-tagline { font-family: 'Playfair Display', serif; font-size: 14px; color: var(--green-accent) !important; }

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
  position: relative; min-height: 340px;
  display: flex; align-items: flex-end; padding-bottom: 60px;
  overflow: hidden;
}
.page-hero-img-ph {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1B5E20 0%, #2d6a30 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.15); gap: 8px;
}
.page-hero-img-ph i { font-size: 3rem; }
.page-hero-img-ph span { font-size: 13px; }
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}
.page-hero-content {
  position: relative; z-index: 2; padding-top: 100px;
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px); font-weight: 900; color: #fff; margin-bottom: 10px;
}
.page-hero-content p { font-size: 17px; color: rgba(255,255,255,0.8); }
.page-breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.page-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb i { font-size: 10px; margin: 0 6px; }

/* ==========================================
   ABOUT PAGE
   ========================================== */
.vm-section { background: var(--bg-light); }
.vm-card {
  border-radius: var(--radius-lg); padding: 40px 36px; height: 100%;
  box-shadow: var(--shadow);
}
.vision-card { background: var(--green-primary); color: #fff; }
.vision-card h3 { color: #fff; font-family: 'Playfair Display', serif; }
.vision-card p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.75; }
.mission-card { background: var(--gold-light); }
.mission-card h3 { color: var(--text-dark); font-family: 'Playfair Display', serif; }
.mission-card p { color: var(--text-body); font-size: 16px; line-height: 1.75; }
.vm-icon { font-size: 2.4rem; margin-bottom: 16px; }
.vision-card .vm-icon { color: var(--green-accent); }
.mission-card .vm-icon { color: var(--gold); }

.objectives-section { background: #fff; }
.objective-card {
  background: var(--bg-light); border-radius: var(--radius); padding: 28px 24px;
  border-left: 4px solid var(--green-light); transition: all 0.3s; height: 100%;
}
.objective-card:hover { background: var(--green-pale); border-left-color: var(--green-primary); transform: translateX(4px); }
.obj-number { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; color: var(--green-pale); line-height: 1; margin-bottom: 8px; }
.objective-card:hover .obj-number { color: var(--green-accent); }
.objective-card h5 { font-weight: 700; font-size: 16px; color: var(--green-primary); margin-bottom: 10px; }
.objective-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.values-section { background: var(--bg-light); }
.value-card {
  background: #fff; border-radius: var(--radius); padding: 28px 16px;
  text-align: center; box-shadow: var(--shadow); transition: all 0.3s;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.value-card:hover { transform: translateY(-4px); background: var(--green-primary); }
.value-card i { font-size: 1.8rem; color: var(--green-mid); }
.value-card:hover i { color: var(--gold); }
.value-card span { font-weight: 600; font-size: 14px; color: var(--text-dark); }
.value-card:hover span { color: #fff; }

.board-section { background: #fff; }
.board-card { background: var(--bg-light); border-radius: var(--radius); padding: 32px 24px; transition: all 0.3s; }
.board-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.board-photo { display: flex; justify-content: center; margin-bottom: 16px; }
.board-img { width: 100px; height: 100px; border-radius: 50%; border: 3px solid var(--green-pale); }
.board-img i { font-size: 3rem; }
.board-card h5 { font-weight: 700; font-size: 16px; color: var(--text-dark); margin-bottom: 6px; }
.board-role { font-size: 13px; font-weight: 600; color: var(--green-mid); background: var(--green-pale); padding: 4px 14px; border-radius: 50px; }

/* ==========================================
   PROGRAMS PAGE
   ========================================== */
.program-detail-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); background: #fff;
}
.prog-detail-img {
  background: color-mix(in srgb, var(--accent) 15%, #fff);
  min-height: 320px; position: relative;
}
.full-img { min-height: 320px; width: 100%; border-radius: 0; background: color-mix(in srgb, var(--accent,#2E7D32) 10%, #f9f9f9); }
.prog-detail-body { padding: 40px 36px; }
.prog-detail-tag {
  display: inline-block; background: var(--c); color: var(--tc);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 14px;
}
.prog-detail-body h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; margin-bottom: 14px; }
.prog-detail-body p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.prog-list { list-style: none; padding: 0; margin-bottom: 28px; }
.prog-list li { font-size: 14.5px; color: var(--text-body); margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.prog-list i { color: var(--green-mid); margin-top: 2px; flex-shrink: 0; }

/* ==========================================
   VOLUNTEER PAGE
   ========================================== */
.why-card {
  background: var(--green-pale); border-radius: var(--radius);
  padding: 18px 16px; display: flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 14px; color: var(--green-primary);
  transition: all 0.2s;
}
.why-card:hover { background: var(--green-primary); color: #fff; }
.why-card i { font-size: 1.3rem; flex-shrink: 0; }
.why-card:hover i { color: var(--gold); }

/* ==========================================
   DONATE PAGE
   ========================================== */
.donate-type-btn, .amount-btn {
  padding: 10px 20px; border-radius: 50px; cursor: pointer;
  font-size: 14px; font-weight: 600; border: 2px solid var(--border);
  color: var(--text-body); transition: all 0.2s; background: #fff;
}
.donate-type-btn:hover, .amount-btn:hover { border-color: var(--green-light); color: var(--green-primary); }
.donate-type-btn.active, .amount-btn.active {
  background: var(--green-primary); color: #fff; border-color: var(--green-primary);
}
.impact-list { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.impact-item { display: flex; gap: 16px; align-items: flex-start; }
.impact-icon { width: 46px; height: 46px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.impact-item strong { display: block; font-size: 18px; font-weight: 700; color: var(--green-primary); margin-bottom: 4px; }
.impact-item p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.ways-to-donate { background: var(--bg-light); border-radius: var(--radius); padding: 24px; }
.donate-ways-list { list-style: none; padding: 0; margin: 0; }
.donate-ways-list li { font-size: 14px; color: var(--text-body); margin-bottom: 10px; display: flex; gap: 10px; align-items: center; }
.donate-ways-list i { color: var(--green-mid); }

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 46px; height: 46px; background: var(--green-pale); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-primary); font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.map-section { }
.map-placeholder {
  height: 340px; background: var(--green-pale);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--green-mid); gap: 8px;
}
.map-placeholder i { font-size: 3rem; opacity: 0.4; }
.map-placeholder span { font-size: 16px; font-weight: 600; }
.map-placeholder p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ==========================================
   FORMS
   ========================================== */
.contact-form-card {
  background: #fff; border-radius: var(--radius-lg); padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.tjef-input {
  border: 2px solid var(--border) !important; border-radius: 10px !important;
  padding: 11px 16px !important; font-size: 14.5px !important;
  transition: border-color 0.2s !important;
}
.tjef-input:focus {
  border-color: var(--green-mid) !important;
  box-shadow: 0 0 0 3px rgba(46,125,50,0.12) !important;
}
.form-label { font-size: 13.5px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.fw-600 { font-weight: 600; }

/* ==========================================
   NEWS PAGE
   ========================================== */
.news-filter-btn {
  background: #fff; border: 2px solid var(--border); border-radius: 50px;
  padding: 8px 20px; font-size: 13.5px; font-weight: 600; cursor: pointer;
  color: var(--text-body); transition: all 0.2s;
}
.news-filter-btn.active { background: var(--green-primary); color: #fff; border-color: var(--green-primary); }
.news-filter-btn:hover:not(.active) { border-color: var(--green-light); color: var(--green-primary); }
.featured-news .news-img-placeholder.featured-news-img { height: 100%; min-height: 260px; border-radius: 0; }
.featured-news-body { padding: 36px 32px; }
.featured-news-body h4 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.featured-news-body p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; }

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeInUp 0.6s ease 0.2s both; }
.hero-title { animation: fadeInUp 0.6s ease 0.4s both; }
.hero-subtitle { animation: fadeInUp 0.6s ease 0.6s both; }
.hero-cta-group { animation: fadeInUp 0.6s ease 0.8s both; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .small-img { display: none; }
  .founder-card { padding: 28px 20px; }
  .cta-card { padding: 40px 20px; }
  .contact-form-card { padding: 24px 20px; }
  .prog-detail-body { padding: 28px 24px; }
  .featured-news-body { padding: 24px; }
  .brand-top { font-size: 15px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 36px; }
  .section-title { font-size: 26px; }
}
