/* ============================================
   GINGERBREAD EDINBURGH & LOTHIAN
   Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green-dark:   #1a4d30;
  --green-mid:    #2d6a4a;
  --green-light:  #3d8b5e;
  --green-pale:   #e8f5ee;
  --orange:       #e07a2a;
  --orange-light: #ff8c42;
  --orange-pale:  #fff3e8;
  --white:        #ffffff;
  --bg:           #f8f9f6;
  --bg-card:      #ffffff;
  --text:         #1a1a1a;
  --text-muted:   #6b7280;
  --border:       #e0e7e3;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.14);
  --radius:       14px;
  --radius-lg:    20px;
  --transition:   0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0 2rem;
}

.navbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
}

.nav-logo-text .tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green-dark);
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--green-pale);
  color: var(--green-mid);
}

.nav-donate {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-donate:hover {
  background: var(--orange-light) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   PAGE HEADER BANNER (inner pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  color: var(--white);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 200px; height: 200px;
  background: rgba(224,122,42,0.15);
  border-radius: 50%;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  opacity: 0.75;
  position: relative;
  z-index: 1;
}

.breadcrumb a { opacity: 0.8; }
.breadcrumb a:hover { opacity: 1; }

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 2rem;
}

.section-sm { padding: 3rem 2rem; }

.section-dark {
  background: var(--green-dark);
  color: var(--white);
}

.section-alt { background: var(--bg); }
.section-white { background: var(--white); }
.section-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-dark .section-title,
.section-orange .section-title { color: var(--white); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-dark .section-subtitle,
.section-orange .section-subtitle { color: rgba(255,255,255,0.82); }

.label-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-dark .label-tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.card p, .card li {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.card ul {
  padding-left: 1.2rem;
  list-style: disc;
  margin-top: 0.5rem;
}

.card-accent-green { border-top: 4px solid var(--green-light); }
.card-accent-orange { border-top: 4px solid var(--orange); }

/* Highlight card (light green bg) */
.highlight-card {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  border-left: 5px solid var(--green-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.highlight-card .card-icon { font-size: 2.2rem; }
.highlight-card h3 { font-size: 1rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.5rem; }
.highlight-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--white);
  border-top: 3px solid var(--green-pale);
  border-bottom: 3px solid var(--green-pale);
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  padding: 2.2rem 1rem;
  border-right: 1px solid var(--border);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  display: block;
}

.stat-number .stat-accent { color: var(--orange); }

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.4rem;
  display: block;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
}

.author-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   NEWS / UPDATE CARDS
   ============================================ */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.news-date-badge {
  background: var(--orange);
  color: var(--white);
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-body {
  padding: 1.5rem;
}

.news-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.news-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   NOTICE / ALERT BOXES
   ============================================ */
.notice-red {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: var(--white);
  padding: 2rem 2.5rem;
  border-radius: var(--radius);
  text-align: center;
  margin: 2rem 0;
}

.notice-red h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.notice-red p { font-size: 0.93rem; opacity: 0.9; margin-top: 0.4rem; }

.notice-green {
  background: var(--green-pale);
  border-left: 5px solid var(--green-light);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.notice-green h3 { color: var(--green-dark); font-size: 1rem; margin-bottom: 0.5rem; }
.notice-green p  { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.35rem; }

.bank-box {
  background: var(--green-dark);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 2rem 0;
}

.bank-box h3 { color: #7fce9e; font-size: 1.1rem; margin-bottom: 1.5rem; }
.bank-box p  { font-size: 0.93rem; margin: 0.5rem 0; }
.bank-box strong { color: #b8f0ce; }

/* ============================================
   FEE TABLES
   ============================================ */
.fee-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 1.5rem 0 2.5rem;
}

.fee-table-wrap h3 {
  background: var(--green-mid);
  color: var(--white);
  padding: 1.2rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
}

.fee-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.fee-table-wrap th {
  background: var(--green-dark);
  color: var(--white);
  padding: 1rem 1.4rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
}

.fee-table-wrap td {
  padding: 1rem 1.4rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.fee-table-wrap tr:nth-child(even) td { background: var(--bg); }
.fee-table-wrap tr:hover td           { background: var(--green-pale); }

/* ============================================
   RESOURCE LINKS
   ============================================ */
.resource-category {
  margin-bottom: 3rem;
}

.resource-category h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--green-pale);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.resource-link {
  display: block;
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}

.resource-link:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

/* ============================================
   LOCATION CARDS
   ============================================ */
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.location-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: 1.4rem 1.8rem;
}

.location-header h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-header p {
  font-size: 0.82rem;
  opacity: 0.8;
}

.location-body {
  padding: 1.5rem 1.8rem;
}

.times-block {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin: 1rem 0;
  border-left: 4px solid var(--green-light);
}

.times-block h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.times-block p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0.25rem 0;
}

.times-block em {
  font-size: 0.8rem;
  color: var(--orange);
  font-style: normal;
  font-weight: 500;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-banner-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-green {
  background: var(--green-mid);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,106,74,0.4);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-orange:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,122,42,0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-mid);
  border: 2px solid var(--green-mid);
}

.btn-outline-green:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0f2e1c;
  color: rgba(255,255,255,0.8);
  padding: 4rem 2rem 0;
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.footer-brand .brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.2rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  align-items: flex-start;
}

.footer-contact-item .icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.charity-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   FLOATING PHONE BUTTON
   ============================================ */
.float-phone {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: var(--green-mid);
  color: var(--white);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(45,106,74,0.45);
  transition: all var(--transition);
  text-decoration: none;
}

.float-phone:hover {
  background: var(--orange);
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(224,122,42,0.45);
}

.float-phone .tooltip {
  position: absolute;
  right: 65px;
  background: var(--green-dark);
  color: var(--white);
  white-space: nowrap;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: all var(--transition);
}

.float-phone:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
/* Content is visible by default — hidden only when JS is confirmed running */
.reveal {
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-loaded .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   JOBS PAGE
   ============================================ */
.job-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--green-light);
  margin-bottom: 1.5rem;
  transition: transform var(--transition);
}

.job-card:hover { transform: translateX(4px); }

.job-card h3 {
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.job-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.job-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   DONATE PAGE
   ============================================ */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.impact-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--orange);
}

.impact-item .icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.impact-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .navbar-inner { height: 64px; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-md); padding: 1rem 0 1.5rem; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7rem 2rem; border-radius: 0; }
  .nav-donate { margin: 0.5rem 2rem 0 !important; border-radius: 50px !important; }
  .navbar { position: sticky; }
  .nav-toggle { display: flex; }

  .section { padding: 3.5rem 1.25rem; }
  .section-sm { padding: 2rem 1.25rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner-buttons { flex-direction: column; align-items: center; }
  .float-phone .tooltip { display: none; }

  .page-header { padding: 3rem 1.25rem 2.5rem; }
}

@media (max-width: 480px) {
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2rem; }
}
