/* ============================================================
   DAMKA — Elevated Stylesheet
   System fonts, clean sections, warm CBO feel
   ============================================================ */

:root {
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --orange: #e8541a;
  --orange-light: #f97316;
  --green-dark: #054d23;
  --green-mid: #066011;
  --green-light: #f0faf4;
  --gold: #c57a10;
  --text: #1a1a1a;
  --text-muted: #555;
  --bg-warm: #fdf8f4;
  --bg-section: #f7f9f8;
  --border: #e5e7eb;
  --footer-bg: #0d060d;
  --footer-bar: #d95b17;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --radius: 10px;
  --transition: all 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: #fff;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
p { color: var(--text-muted); }

/* ── Navbar ── */
.damka-nav {
  background: #fff;
  box-shadow: 0 1px 0 var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 1.5rem;
}
.damka-nav .navbar-brand img { height: 52px; width: auto; }
.damka-nav .nav-link {
  font-weight: 600;
  font-size: 14px;
  color: #333 !important;
  padding: 0.5rem 0.7rem;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.damka-nav .nav-link:hover,
.damka-nav .nav-link.active { color: var(--orange) !important; }
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(34,34,34,0.9)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-donate {
  background: var(--orange);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  padding: 0.5rem 1.4rem;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-donate:hover { background: #c94010; }

/* ── Hero Carousel ── */
.hero-carousel .carousel-item img {
  height: 580px;
  width: 100%;
  object-fit: cover;
}
.hero-carousel .carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.55));
}
.hero-carousel .carousel-caption {
  z-index: 2;
  bottom: 15%;
  text-align: left;
  left: 8%;
  right: 8%;
}
.hero-carousel .carousel-caption h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}
.hero-carousel .carousel-caption .hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
}
.hero-carousel .carousel-caption .btn-hero {
  display: inline-block;
  margin-top: 1.2rem;
  background: var(--orange);
  color: #fff;
  padding: 0.7rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}
.hero-carousel .carousel-caption .btn-hero:hover { background: #c94010; }

@media (max-width: 768px) {
  .hero-carousel .carousel-item img { height: 320px; }
  .hero-carousel .carousel-caption h3 { font-size: 1.4rem; }
  .hero-carousel .carousel-caption .hero-sub { display: none; }
}

/* ── Section Shared ── */
.section-pad { padding: 5rem 1.5rem; }
.section-warm { background: var(--bg-warm); }
.section-alt { background: var(--bg-section); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.section-heading {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-heading span { color: var(--green-dark); }
.section-subtext {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ── Impact Stats Bar ── */
.stats-bar {
  background: var(--green-dark);
  padding: 2.5rem 1.5rem;
}
.stat-item { text-align: center; padding: 0.5rem; }
.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.3rem;
}

/* ── Activity Cards ── */
.activity-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.activity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.activity-card .card-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.activity-card .card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.activity-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.activity-card p { font-size: 0.9rem; flex: 1; }
.activity-card .read-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.875rem;
}
.activity-card .read-more::after { content: ' →'; }

/* ── News Cards ── */
.news-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.news-card img { width: 100%; height: 210px; object-fit: cover; }
.news-card .card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.news-card .pub-date { font-size: 0.78rem; color: #999; margin-bottom: 0.4rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.news-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.news-card p { font-size: 0.88rem; flex: 1; }
.news-card .read-more { display: inline-block; margin-top: 0.8rem; color: var(--orange); font-weight: 700; font-size: 0.875rem; }
.news-card .read-more::after { content: ' →'; }

/* ── Vacancies ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 5rem 2rem;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: 2.2rem; font-weight: 800; }
.page-hero p { color: rgba(255,255,255,0.8); margin-top: 0.5rem; }

.vacancy-card {
  border-left: 4px solid var(--green-dark);
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vacancy-card h4 { color: var(--green-dark); margin-bottom: 0.4rem; font-size: 1.1rem; }
.badge-open { background: var(--green-mid); color: #fff; padding: 0.2rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.badge-closed { background: #aaa; color: #fff; padding: 0.2rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.btn-apply {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.45rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: var(--transition);
  display: inline-block;
  margin-top: 0.75rem;
}
.btn-apply:hover { background: #c94010; color: #fff; }

/* ── Partners ── */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  min-height: 100px;
  transition: var(--transition);
}
.partner-logo:hover { box-shadow: var(--shadow); }
.partner-logo img { max-height: 70px; width: auto; }

/* ── About ── */
.about-hero {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.82);
}
.about-hero > * { position: relative; z-index: 1; }
.about-hero h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; color: var(--green-dark); }
.about-hero p { max-width: 760px; margin: 0 auto 1rem; }

.board-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.25s;
}
.board-card:hover { transform: translateY(-4px); }
.board-card img { width: 100%; height: 260px; object-fit: cover; }
.board-card .card-body { padding: 1.2rem; }
.board-card h4 { font-size: 0.85rem; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.board-card p { font-size: 1rem; font-weight: 700; color: var(--green-dark); }

/* ── Resources ── */
.resource-block {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
}
.resource-block h2 { color: var(--green-dark); margin-bottom: 1rem; font-size: 1.5rem; }
.resource-block h3 { font-size: 1rem; color: #333; margin: 1.2rem 0 0.4rem; font-weight: 700; }
.resource-block ul { padding-left: 1.2rem; }
.resource-block li { margin-bottom: 0.4rem; font-size: 0.93rem; color: var(--text-muted); }
.resource-link { display: inline-block; margin-top: 1rem; color: var(--orange); font-weight: 700; font-size: 0.9rem; }
.resource-link::after { content: ' →'; }

/* ── Donate ── */
.donate-box {
  border: 2px solid var(--orange);
  border-radius: 14px;
  padding: 3rem;
  margin: 2rem auto;
  max-width: 900px;
  background: #fff;
}
.donate-box ul li { margin-bottom: 0.4rem; color: var(--text-muted); }

/* ── Login ── */
.login-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: var(--bg-section); }
.login-box { background: #fff; border-radius: 14px; box-shadow: 0 4px 30px rgba(0,0,0,0.1); padding: 2.5rem; max-width: 420px; width: 100%; }
.login-box h1 { color: var(--green-dark); font-size: 1.5rem; margin-bottom: 1.5rem; }
.login-box .btn-submit { background: var(--green-mid); color: #fff; border: none; border-radius: 6px; padding: 0.65rem 1.8rem; font-weight: 700; width: 100%; margin-top: 0.5rem; font-size: 1rem; }

/* ── Mission/Vision boxes ── */
.mv-box {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 2rem;
  height: 100%;
}
.mv-box .mv-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.mv-box h3 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 0.75rem; }
.mv-box p { font-size: 0.93rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #c94010 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}
.cta-banner h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 1rem; margin-bottom: 1.5rem; }
.btn-cta-white {
  display: inline-block;
  background: #fff;
  color: var(--orange);
  font-weight: 800;
  padding: 0.8rem 2.5rem;
  border-radius: 6px;
  font-size: 1rem;
  transition: var(--transition);
}
.btn-cta-white:hover { background: #f0f0f0; color: var(--orange); }

/* ── Footer ── */
.site-footer { background: var(--footer-bg); padding: 4rem 1.5rem 0; }
.site-footer h2 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 0.02em; }
.site-footer p, .site-footer label { color: #aaa; font-size: 0.875rem; }
.site-footer a { color: #aaa; font-size: 0.875rem; transition: var(--transition); }
.site-footer a:hover { color: var(--orange); }

.footer-form input[type="email"],
.footer-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.footer-form textarea { height: 90px; resize: none; }
.footer-form .btn-send { background: var(--orange); color: #fff; border: none; border-radius: 20px; padding: 0.5rem 1.6rem; font-weight: 700; font-size: 0.875rem; transition: var(--transition); }
.footer-form .btn-send:hover { background: #c94010; }

.social-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: var(--transition);
}
.social-links a:hover { background: var(--orange); }
.social-links a svg { width: 17px; height: 17px; fill: currentColor; }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 3rem 0 0; }
.footer-bar { background: var(--footer-bar); color: #fff; text-align: center; padding: 0.85rem 1rem; font-size: 0.8rem; }
.footer-bar a { color: #f0d0c0; font-size: 0.8rem; }

/* ── View All button ── */
.btn-view-all {
  display: inline-block;
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  font-weight: 700;
  padding: 0.65rem 2rem;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-view-all:hover { background: var(--green-dark); color: #fff; }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Utility ── */
.text-orange { color: var(--orange); }
.text-green { color: var(--green-dark); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .section-pad { padding: 3rem 1rem; }
  .section-heading { font-size: 1.5rem; }
  .donate-box { padding: 1.5rem; }
  .about-hero { padding: 3rem 1rem; }
  .page-hero h1 { font-size: 1.5rem; }
  .stats-bar .stat-number { font-size: 1.8rem; }
  .resource-block { padding: 1.5rem; }
  .hero-carousel .carousel-caption { bottom: 8%; }
}
@media (max-width: 480px) {
  .damka-nav .navbar-brand img { height: 42px; }
  .hero-carousel .carousel-item img { height: 260px; }
  .hero-carousel .carousel-caption h3 { font-size: 1.15rem; }
}

/* ── Navbar brand text ── */
.brand-text {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-left: 0.4rem;
  letter-spacing: 0.03em;
}

/* ── Custom hamburger ── */
.navbar-toggler { border: none; padding: 0.4rem; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ── Dropdown ── */
.damka-dropdown {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  min-width: 200px;
}
.damka-dropdown .dropdown-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  padding: 0.55rem 1.2rem;
  transition: var(--transition);
}
.damka-dropdown .dropdown-item:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

/* ── Nav link active indicator ── */
.damka-nav .nav-link.active {
  color: var(--orange) !important;
  position: relative;
}
.damka-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.7rem;
  right: 0.7rem;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

@media (max-width: 991px) {
  .damka-nav .nav-link.active::after { display: none; }
  .damka-dropdown { box-shadow: none; border: none; padding-left: 1rem; }
  .brand-text { font-size: 1rem; }
}

/* ── Fullscreen Mobile Menu ── */
.hamburger-btn {
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger-btn .toggler-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: var(--transition);
}

/* Overlay */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 2.5rem;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.fullscreen-menu.open {
  transform: translateX(0);
}

/* Backdrop */
.fs-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.fs-backdrop.show {
  opacity: 1;
  pointer-events: all;
}

/* Close button */
.fullscreen-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.12);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: background 0.2s;
}
.fullscreen-close:hover { background: rgba(255,255,255,0.2); }
.fullscreen-close span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
}
.fullscreen-close span:first-child { transform: rotate(45deg); }
.fullscreen-close span:last-child { transform: rotate(-45deg); }

/* Logo inside overlay */
.fullscreen-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  margin-top: 0.5rem;
}
.fullscreen-logo img { height: 48px; width: auto; }
.fullscreen-logo span {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
}

/* Nav links */
.fullscreen-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.2rem;
}

.fs-link {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, padding-left 0.2s;
  text-decoration: none;
}
.fs-link:hover { color: #fff; padding-left: 0.5rem; }
.fs-link.fs-active { color: var(--orange-light); }

/* Sub links under Our Work */
.fs-group { padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.fs-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.3rem;
  display: block;
}
.fs-link.fs-sub {
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: none;
  padding: 0.35rem 0 0.35rem 0.75rem;
  color: rgba(255,255,255,0.75);
}
.fs-link.fs-sub:hover { color: #fff; padding-left: 1.2rem; }

/* Footer with donate */
.fullscreen-footer {
  margin-top: 2rem;
  text-align: center;
}
.fs-donate-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.85rem 3rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: background 0.2s;
  text-decoration: none;
  width: 100%;
}
.fs-donate-btn:hover { background: #c94010; color: #fff; }
.fullscreen-footer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* Only show hamburger on mobile */
@media (min-width: 992px) {
  .hamburger-btn { display: none !important; }
  .fullscreen-menu { display: none !important; }
  .fs-backdrop { display: none !important; }
}

/* ── Elevated Footer ── */

/* Top strip */
.footer-top {
  background: var(--green-dark);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-tagline {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  font-family: var(--font);
}
.footer-tagline-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin: 0;
}
.btn-footer-donate {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 2rem;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}
.btn-footer-donate:hover { background: #c94010; color: #fff; }

/* Body */
.footer-body {
  background: #111;
  padding: 4rem 0 3rem;
}

/* Brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-brand img { height: 44px; width: auto; }
.footer-brand span {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
}

.footer-blurb {
  color: #888;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* Headings */
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  font-family: var(--font);
}

/* Links list */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links li { font-size: 0.875rem; }
.footer-links a {
  color: #888;
  transition: var(--transition);
  font-size: 0.875rem;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

/* Form */
.footer-form { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-form input[type="email"],
.footer-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 0.65rem 0.9rem;
  color: #fff;
  font-size: 0.875rem;
  width: 100%;
  transition: border-color 0.2s;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.footer-form input:focus,
.footer-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.footer-form textarea { height: 100px; resize: none; }
.footer-form .btn-send {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.65rem 1.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}
.footer-form .btn-send:hover { background: #c94010; }

/* Social links */
.social-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: #aaa;
  transition: var(--transition);
  text-decoration: none;
}
.social-links a:hover { background: var(--orange); color: #fff; }
.social-links a svg { width: 16px; height: 16px; fill: currentColor; }

/* Footer bar */
.footer-bar {
  background: #0a0a0a;
  padding: 1rem 0;
  font-size: 0.8rem;
  color: #555;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bar a { color: #666; transition: var(--transition); font-size: 0.8rem; }
.footer-bar a:hover { color: var(--orange); }

@media (max-width: 768px) {
  .footer-tagline { font-size: 1.05rem; }
  .footer-body { padding: 2.5rem 0 2rem; }
  .btn-footer-donate { width: 100%; text-align: center; margin-top: 0.5rem; }
  .footer-bar .container { flex-direction: column; text-align: center; }
}
