/* ============================================
   PEDIATRIC INTENSIVE CARE FOUNDATION
   Main Stylesheet
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- COLOURS --- */
:root {
  --green: #81a41e;
  --green-dark: #6a8a15;
  --white: #fff;
  --dark: #1a1a2e;
  --grey-bg: #f5f7f0;
  --text: #333;
  --text-light: #666;
  --border: #e0e4d8;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--green);
  padding: 10px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--green); color: #fff; }

.btn-text {
  display: inline-block;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.btn-text:hover { opacity: 0.7; }

.btn-full { width: 100%; text-align: center; }

.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================
   HEADER
   ============================================ */
#site-header {
  position: static;
  background: #fff;
  border-bottom: 3px solid var(--green);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

/* Logo */
.header-logo a { display: flex; align-items: center; }
.logo-text {
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.logo-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.02em;
}

/* Main nav */
.header-nav { flex: 1; }
.header-nav > ul {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.header-nav > ul > li { position: relative; }
.header-nav > ul > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.header-nav > ul > li > a:hover,
.header-nav > ul > li > a.active { color: var(--green); }

/* Dropdown */
.header-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-top: 3px solid var(--green);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  min-width: 180px;
  z-index: 100;
}
.header-nav .has-dropdown:hover .dropdown { display: block; }
.header-nav .dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 0.15s, color 0.15s;
}
.header-nav .dropdown li a:hover { background: var(--grey-bg); color: var(--green); }

/* Header contact info */
.header-contact-info {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}
.header-contact-info a:hover { opacity: 0.8; }

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  margin-left: auto;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -280px;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  padding: 60px 30px 30px;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav.open { right: 0; }
.mobile-nav ul li a {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}
.mobile-nav ul li a:hover { color: var(--green); }
.mobile-email {
  display: block;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 600;
}
.mobile-nav-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dark);
  line-height: 1;
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1999;
}
.mobile-nav-overlay.open { display: block; }

/* ============================================
   HERO SLIDER (HOME)
   ============================================ */
.hero-slider {
  position: relative;
  margin-top: 0;
  height: 580px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.52);
  z-index: 0;
}

.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 640px;
}
.slide-content h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.slide-content p {
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 28px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 2rem;
  width: 48px; height: 48px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.slider-btn:hover { background: var(--green); border-color: var(--green); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 10px;
}
.slider-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.slider-dot.active { background: var(--green); }

/* ============================================
   PAGE HERO (INNER PAGES)
   ============================================ */
.page-hero {
  position: relative;
  margin-top: 0;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.page-hero--short { height: 240px; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.58);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.page-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.page-hero-content p {
  font-size: 1rem;
  font-weight: 300;
  max-width: 560px;
}

/* Breadcrumb */
.breadcrumb-bar {
  padding: 12px 20px;
  font-size: 0.85rem;
  color: var(--text-light);
  background: var(--grey-bg);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-bar a { color: var(--green); font-weight: 600; }
.breadcrumb-bar a:hover { text-decoration: underline; }
.breadcrumb-bar span { color: var(--text-light); }

/* ============================================
   HOME — BOXES SECTION
   ============================================ */
.boxes-section { padding: 70px 20px; }

.box-board {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.box-board--reverse { flex-direction: row-reverse; }

.box-board-img {
  flex: 0 0 50%;
  overflow: hidden;
}
.box-board-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.box-board:hover .box-board-img img { transform: scale(1.03); }

.box-board-text {
  flex: 0 0 50%;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.box-board-text h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.4;
}
.box-board-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.75;
}

/* ============================================
   HOME — STATS STRIP
   ============================================ */
.stats-strip {
  background: var(--green);
  padding: 48px 20px;
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 10px; }
.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

/* ============================================
   HOME — NEWS SECTION
   ============================================ */
.news-section { padding: 70px 20px; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.section-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s;
}
.news-card:hover { transform: translateY(-4px); }
.news-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.news-card-body { padding: 24px; }
.news-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.news-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ============================================
   HOME — MID BANNER
   ============================================ */
.mid-banner {
  background: var(--grey-bg);
  border-top: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
  padding: 60px 20px;
  text-align: center;
}
.mid-banner-inner h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}
.mid-banner-inner p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   INNER PAGE CONTENT
   ============================================ */
.page-content { padding: 60px 20px 80px; }
.content-section { margin-bottom: 64px; }

.content-section h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--green);
  display: inline-block;
}

.lead-text {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 780px;
  line-height: 1.8;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.content-text p {
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.8;
}
.content-img { overflow: hidden; border-radius: 2px; }
.content-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* Legal list */
.legal-list {
  list-style: none;
  margin: 18px 0;
  padding: 16px 20px;
  background: var(--grey-bg);
  border-left: 4px solid var(--green);
}
.legal-list li {
  padding: 4px 0;
  font-size: 0.95rem;
  color: var(--text);
}

/* Purpose list */
.purpose-list {
  list-style: disc;
  padding-left: 24px;
  margin: 16px 0;
}
.purpose-list li {
  padding: 4px 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ============================================
   ABOUT — TIMELINE
   ============================================ */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-year {
  flex: 0 0 80px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 4px;
}
.timeline-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.timeline-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================
   ABOUT — LEADERSHIP
   ============================================ */
.leadership-grid { display: grid; gap: 28px; }
.leader-card {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  background: var(--grey-bg);
  padding: 28px;
  border-left: 4px solid var(--green);
}
.leader-avatar {
  flex: 0 0 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 2px;
}
.leader-avatar img { width: 100%; height: 100%; object-fit: cover; }
.leader-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.leader-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.leader-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================
   PURPOSE — QUOTE & VALUES
   ============================================ */
.purpose-intro { text-align: center; max-width: 740px; margin: 0 auto; }
.big-quote {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  border-left: 5px solid var(--green);
  padding: 20px 30px;
  margin-bottom: 24px;
  text-align: left;
  background: var(--grey-bg);
  line-height: 1.5;
}
.purpose-intro-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--grey-bg);
  padding: 28px 22px;
  border-top: 4px solid var(--green);
  text-align: center;
}
.value-icon {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Purpose goal columns */
.goal-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 24px;
}
.goal-col {
  padding: 24px;
  background: var(--grey-bg);
  border-bottom: 4px solid var(--green);
}
.goal-col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.goal-col p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================
   ACTIVITIES
   ============================================ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.activity-card {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s;
}
.activity-card:hover { transform: translateY(-4px); }
.activity-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.activity-card-body { padding: 24px; }
.activity-tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.activity-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.activity-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Achievement banner */
.achievement-banner {
  background: var(--dark);
  color: #fff;
  padding: 50px 48px;
}
.achievement-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}
.achievement-stat { text-align: center; flex: 0 0 200px; }
.achievement-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 10px;
}
.achievement-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}
.achievement-divider {
  width: 2px;
  height: 120px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.achievement-text h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  border-bottom: 3px solid var(--green);
  display: inline-block;
  padding-bottom: 8px;
}
.achievement-text p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* How to help */
.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.help-card {
  padding: 24px 20px;
  background: var(--grey-bg);
  border-left: 4px solid var(--green);
}
.help-icon {
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 10px;
}
.help-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.help-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-details h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--green);
  display: inline-block;
}
.contact-details p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.75;
}
.contact-info-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-block h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 6px;
}
.contact-info-block p {
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 0;
}
.contact-info-block a {
  color: var(--green);
  font-weight: 600;
}
.contact-info-block a:hover { text-decoration: underline; }

/* Contact form */
.contact-form-wrap h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--green);
  display: inline-block;
}
.contact-form-wrap p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.required { color: var(--green); }

/* CTA section */
.cta-section { text-align: center; padding: 40px; background: var(--grey-bg); border-top: 4px solid var(--green); }
.cta-section h2 { display: block; border-bottom: none; padding-bottom: 0; }
.cta-section p { font-size: 0.95rem; color: var(--text-light); margin: 14px auto 24px; max-width: 560px; }
.cta-section .cta-buttons { justify-content: center; }

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  border-top: 4px solid var(--green);
}

/* Top accent stripe */
.footer-top-bar {
  background: var(--green);
  padding: 14px 20px;
}
.footer-top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-top-bar p {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
}
.footer-top-bar a {
  display: inline-block;
  background: #fff;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 22px;
  border: 2px solid #fff;
  transition: background 0.2s, color 0.2s;
}
.footer-top-bar a:hover { background: transparent; color: #fff; }

/* Main footer body */
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 20px 48px;
  align-items: flex-start;
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-brand .logo-text {
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.5;
}
.footer-brand .logo-text strong {
  color: var(--green);
  font-size: 1rem;
  display: block;
  margin-bottom: 2px;
}
.footer-brand-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  border-left: 3px solid var(--green);
  padding-left: 14px;
}
.footer-brand-divider {
  width: 40px;
  height: 3px;
  background: var(--green);
  border: none;
  margin: 0;
}

/* Footer column headings */
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--green);
  opacity: 0.5;
}

/* Contact info */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(129,164,30,0.15);
  border: 1px solid rgba(129,164,30,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.footer-contact-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.footer-contact-text a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.footer-contact-text a:hover { color: var(--green); }

/* Reg info */
.footer-reg-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-reg-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-reg-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}
.footer-reg-value {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* Nav links */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-nav a::before {
  content: '›';
  color: var(--green);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s;
}
.footer-nav a:hover {
  color: #fff;
  padding-left: 4px;
}

/* Footer bottom bar */
.footer-bottom {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 20px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   HOW TO HELP — DETAILED CARDS
   ============================================ */
.help-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.help-detailed-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--grey-bg);
  padding: 30px 28px;
  border-top: 4px solid var(--green);
}
.help-detailed-icon {
  font-size: 2rem;
  color: var(--green);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}
.help-detailed-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.help-detailed-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 10px;
}
.help-bank-box {
  background: #fff;
  border-left: 4px solid var(--green);
  padding: 16px 18px;
  margin-top: 16px;
}
.help-bank-box h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 10px;
}
.help-bank-box p {
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.6;
}
.help-krs-number {
  font-size: 1.8rem !important;
  font-weight: 800;
  color: var(--dark) !important;
  letter-spacing: 0.06em;
  margin-bottom: 8px !important;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
}
.faq-item a { color: var(--green); font-weight: 600; }
.faq-item a:hover { text-decoration: underline; }

/* ============================================
   OUR TEAM — ROLES GRID
   ============================================ */
.team-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.team-role-card {
  background: var(--grey-bg);
  padding: 28px 22px;
  border-top: 4px solid var(--green);
}
.team-role-icon {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
}
.team-role-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.team-role-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   NEWS PAGE
   ============================================ */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  background: var(--grey-bg);
  overflow: hidden;
}
.news-featured-img {
  position: relative;
  overflow: hidden;
}
.news-featured-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.news-featured-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
}
.news-featured-body {
  padding: 36px 36px 36px 0;
}
.news-featured-body h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--green);
  display: inline-block;
}
.news-featured-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.news-date {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 10px;
}

.news-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 24px;
}
.news-full-card {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s;
}
.news-full-card:hover { transform: translateY(-4px); }
.news-full-card-img {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.news-full-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
}
.news-full-card-body {
  padding: 24px;
}
.news-full-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  margin-top: 6px;
  line-height: 1.4;
}
.news-full-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .header-contact-info { display: none; }
  .burger-btn { display: flex; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .goal-columns { grid-template-columns: 1fr 1fr; }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .help-detailed-grid { grid-template-columns: 1fr; }
  .team-roles-grid { grid-template-columns: repeat(2, 1fr); }
  .news-full-grid { grid-template-columns: 1fr; }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-body { padding: 28px; }
  .news-featured-img img { height: 260px; }
}

@media (max-width: 768px) {
  .hero-slider { height: 440px; }

  .help-detailed-card { flex-direction: column; gap: 14px; }
  .team-roles-grid { grid-template-columns: 1fr; }
  .news-full-grid { grid-template-columns: 1fr; }
  .slide-content h1 { font-size: 1.6rem; }
  .slide-content p { font-size: 0.95rem; }

  .box-board,
  .box-board--reverse { flex-direction: column; }
  .box-board-img { flex: none; }
  .box-board-img img { min-height: 220px; }
  .box-board-text { flex: none; padding: 28px 24px; }

  .two-col,
  .two-col.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .content-img img { height: 240px; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 32px; }
  .footer-top-bar-inner { flex-direction: column; text-align: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .news-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .goal-columns { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .achievement-inner { flex-direction: column; gap: 28px; }
  .achievement-divider { width: 60px; height: 2px; }

  .leader-card { flex-direction: column; }
  .timeline { padding-left: 28px; }
  .timeline-item { flex-direction: column; gap: 6px; }
  .timeline-year { flex: none; }
}

@media (max-width: 480px) {
  .hero-slider { height: 380px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .box-board-text { padding: 22px 18px; }
}
