/* ============================================================
   Sanskar Life Care Foundation — Main Stylesheet
   Colors derived from official logo:
     Primary Green : #1a5c2e  |  Gold : #c9991a
============================================================ */

/* ---------- 1. Variables ---------- */
:root {
  --g900: #0a2e14;
  --g800: #0f3a1c;
  --g700: #154f26;
  --g600: #1a5c2e;
  --g500: #2d7a44;
  --g400: #4a9e5c;
  --g300: #7abf88;
  --g100: #e8f5ec;
  --g50: #f4fbf6;

  --gld700: #9a7412;
  --gld600: #c9991a;
  --gld500: #e0aa1e;
  --gld400: #f0c040;
  --gld100: #fef9e7;

  --cream: #fdf8f0;
  --creamD: #f0e8d5;
  --white: #ffffff;
  --dark: #0f1f14;
  --text: #2a3a2e;
  --muted: #5a6e60;
  --border: #d5e8d9;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(10, 46, 20, 0.07);
  --shadow: 0 6px 24px rgba(10, 46, 20, 0.1);
  --shadow-lg: 0 16px 48px rgba(10, 46, 20, 0.15);
  --shadow-gold: 0 8px 32px rgba(201, 153, 26, 0.25);

  --transition: 0.3s ease;

  --nav-h: 76px;
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}

/* ---------- 3. Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  line-height: 1.25;
  color: var(--g800);
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
}
h4 {
  font-size: 1.15rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.8;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gld600);
  margin-bottom: 0.75rem;
}
.section-label::before,
.section-label::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gld600);
  border-radius: 2px;
}

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

/* ---------- 4. Utility ---------- */
.container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section-pad {
  padding: 6rem 0;
}
.section-pad-sm {
  padding: 3.5rem 0;
}

.tag {
  display: inline-block;
  padding: 0.28rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--g100);
  color: var(--g600);
}
.tag.gold {
  background: var(--gld100);
  color: var(--gld700);
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  outline: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--g600);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(26, 92, 46, 0.35);
}
.btn-primary:hover {
  background: var(--g500);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 92, 46, 0.45);
}
.btn-gold {
  background: var(--gld600);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gld500);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201, 153, 26, 0.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--g600);
  transform: translateY(-2px);
}
.btn-outline-green {
  background: transparent;
  border: 2px solid var(--g600);
  color: var(--g600);
}
.btn-outline-green:hover {
  background: var(--g600);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 1rem 2.4rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.82rem;
}

/* ---------- 6. Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: #fff;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
}
.navbar.scrolled .nav-logo-text span:first-child {
  color: var(--g600);
}
.navbar.scrolled .nav-logo-text span:last-child {
  color: var(--gld600);
}
.navbar.scrolled .nav-link {
  color: var(--text);
}
.navbar.scrolled .nav-link:hover {
  color: var(--g600);
}
.navbar.scrolled .hamburger span {
  background: var(--text);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}
.nav-logo-text span {
  display: block;
  transition: color 0.35s;
}
.nav-logo-text span:first-child {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-text span:last-child {
  font-size: 0.60rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--dark) !important;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color:var(--dark);
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover {
  color: var(--g700);
  background: rgba(255, 255, 255, 0.12);
}
.nav-link.active {
  color: var(--g700);
  font-weight: 600;
}
.navbar.scrolled .nav-link.active {
  color: var(--g700);
}
.nav-cta {
  margin-left: 0.75rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--g700);
  border-radius: 3px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- 7. Hero (Home) ---------- */
.hero-home {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--g900) 0%,
    var(--g700) 45%,
    var(--g500) 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 85%,
      rgba(201, 153, 26, 0.18) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(74, 158, 92, 0.25) 0%,
      transparent 45%
    );
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-pattern::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-pattern::after {
  content: "";
  position: absolute;
  top: 5%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}
.hero-text {
  color: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 153, 26, 0.2);
  border: 1px solid rgba(201, 153, 26, 0.4);
  color: var(--gld400);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.hero-badge i {
  font-size: 0.7rem;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title .highlight {
  color: var(--gld400);
  position: relative;
}
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 540px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-mini-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-mini-stat .num {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: var(--gld400);
  line-height: 1;
}
.hero-mini-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.2rem;
}

/* Hero visual card */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  color: var(--white);
}
.hero-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--gld400);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.program-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  transition: var(--transition);
}
.program-pill:hover {
  background: rgba(255, 255, 255, 0.12);
}
.program-pill i {
  color: var(--gld400);
  font-size: 1rem;
  width: 18px;
  flex-shrink: 0;
}
.hero-card-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}
.funded-tag {
  background: rgba(201, 153, 26, 0.25);
  color: var(--gld400);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-weight: 600;
}

/* ---------- 8. Stats Bar ---------- */
.stats-bar {
  background: var(--g800);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gld400);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
}
.stat-suffix {
  font-size: 1.6rem;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.5rem;
  font-weight: 400;
}
.stat-icon {
  font-size: 1.4rem;
  color: var(--g400);
  margin-bottom: 0.75rem;
}

/* ---------- 9. Section: About Intro ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-bg {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--g100), var(--g200, #d4eedd));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-image-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--g600) 0%, var(--g400) 100%);
  opacity: 0.9;
}
.about-image-icon {
  position: relative;
  z-index: 1;
  font-size: 7rem;
  color: rgba(255, 255, 255, 0.15);
}
.about-overlay-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 160px;
}
.about-overlay-card .num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--g600);
  line-height: 1;
}
.about-overlay-card .lbl {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.about-list {
  margin-top: 1.75rem;
}
.about-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
  font-size: 0.92rem;
  color: var(--text);
}
.about-list li i {
  color: var(--g600);
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* ---------- 10. Programs Preview ---------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--g600), var(--g400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.program-card:hover::before {
  transform: scaleX(1);
}

.prog-icon {
  width: 58px;
  height: 58px;
  background: var(--g100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--g600);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.program-card:hover .prog-icon {
  background: var(--g600);
  color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}
.program-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  color: var(--g800);
}
.program-card p {
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}
.prog-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--g600);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}
.prog-link:hover {
  gap: 0.65rem;
  color: var(--g500);
}

/* ---------- 11. Impact Preview ---------- */
.impact-section {
  background: linear-gradient(135deg, var(--g900) 0%, var(--g700) 100%);
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(201, 153, 26, 0.12) 0%,
    transparent 60%
  );
}
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.impact-text h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.impact-text p {
  color: rgba(255, 255, 255, 0.75);
}
.impact-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.metric-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.metric-box .num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gld400);
  line-height: 1;
}
.metric-box .lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.4rem;
}

.impact-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.impact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: var(--transition);
}
.impact-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.impact-card:first-child {
  grid-column: span 2;
  background: rgba(201, 153, 26, 0.15);
  border-color: rgba(201, 153, 26, 0.3);
}
.impact-card i {
  font-size: 1.8rem;
  color: var(--gld400);
  margin-bottom: 1rem;
}
.impact-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.impact-card p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ---------- 12. CTA Banner ---------- */
.cta-banner {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3rem 0;
}
.cta-inner h2 {
  font-size: 1.8rem;
  color: var(--g800);
  max-width: 500px;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- 13. Why Partner Strip ---------- */
.partner-strip {
  background: var(--g600);
  padding: 4rem 0;
}
.partner-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.ps-item {
  text-align: center;
  color: var(--white);
}
.ps-item i {
  font-size: 2rem;
  color: var(--gld400);
  margin-bottom: 1rem;
}
.ps-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.ps-item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ---------- 14. Footer ---------- */
.footer {
  background: var(--g900);
  padding: 5rem 0 2rem;
  color: rgba(255, 255, 255, 0.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .nav-logo {
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gld600);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover {
  color: var(--gld400);
  padding-left: 4px;
}
.footer-links a::before {
  content: "›";
  font-size: 1rem;
  opacity: 0.5;
}

.footer-contact-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.footer-contact-item i {
  color: var(--gld400);
  font-size: 0.95rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.85rem;
}

.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a {
  color: var(--gld400);
}

/* ---------- 15. Page Heroes ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--g900) 0%, var(--g700) 100%);
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 153, 26, 0.12) 0%,
    transparent 70%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
}
.breadcrumb a {
  color: var(--gld400);
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb span {
  opacity: 0.5;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- 16. About Page ---------- */
.dr-profile {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dr-photo-wrap {
  background: linear-gradient(180deg, var(--g100) 0%, var(--g600) 100%);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.dr-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
  background: var(--g300);
}
.dr-photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--g300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--g600);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}
.dr-name {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.dr-role {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}
.dr-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.dr-content {
  padding: 2.5rem 2.5rem 2.5rem 0;
}
.dr-content p {
  margin-bottom: 1.1rem;
}
.dr-publications {
  margin-top: 1.5rem;
}
.dr-publications h4 {
  margin-bottom: 1rem;
  color: var(--g700);
}
.pub-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: var(--g50);
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  border-left: 3px solid var(--g600);
}
.pub-item i {
  color: var(--g600);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Philosophy / Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.value-icon {
  width: 64px;
  height: 64px;
  background: var(--g100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--g600);
  margin: 0 auto 1.25rem;
}
.value-card h4 {
  margin-bottom: 0.65rem;
  color: var(--g800);
}
.value-card p {
  font-size: 0.85rem;
}

/* ---------- 17. Programs Page ---------- */
.program-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.program-full:last-child {
  border-bottom: none;
}
.program-full.reverse {
  direction: rtl;
}
.program-full.reverse > * {
  direction: ltr;
}

.prog-content .prog-num {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--g100);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.prog-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.prog-content p {
  margin-bottom: 1.25rem;
}

.prog-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.prog-feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.9rem 1.1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  transition: var(--transition);
}
.prog-feature:hover {
  background: var(--g100);
}
.prog-feature i {
  color: var(--g600);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.prog-impact-box {
  background: var(--g600);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 1.5rem;
}
.prog-impact-box h5 {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gld400);
  margin-bottom: 1rem;
}
.prog-impact-box ul {
  padding: 0;
}
.prog-impact-box ul li {
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.prog-impact-box ul li::before {
  content: "✓";
  color: var(--gld400);
  font-weight: 700;
  flex-shrink: 0;
}
.prog-impact-box ul li:last-child {
  border-bottom: none;
}

.prog-visual {
  background: linear-gradient(135deg, var(--g600), var(--g400));
  border-radius: var(--radius-xl);
  aspect-ratio: 1 / 1;
  max-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.prog-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(201, 153, 26, 0.2) 0%,
    transparent 60%
  );
}
.prog-visual-icon {
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}
.prog-visual-label {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.25rem;
  text-align: center;
  padding: 0 2rem;
}

/* ---------- 18. Impact Page ---------- */
.impact-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.impact-num-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.impact-num-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.impact-num-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--g600), var(--gld600));
}
.impact-num-card i {
  font-size: 2rem;
  color: var(--g400);
  margin-bottom: 1rem;
}
.impact-num-card .big-num {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--g700);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
}
.impact-num-card .big-num .unit {
  font-size: 1.4rem;
}
.impact-num-card p {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--g600), var(--gld600));
  transform: translateX(-50%);
}
.tl-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}
.tl-item:nth-child(even) {
  flex-direction: row-reverse;
}
.tl-item:nth-child(even) .tl-content {
  text-align: right;
}
.tl-content {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.tl-content:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.tl-phase {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gld600);
  margin-bottom: 0.5rem;
}
.tl-content h4 {
  margin-bottom: 0.65rem;
  color: var(--g800);
}
.tl-content p {
  font-size: 0.88rem;
  margin: 0;
}
.tl-dot {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--g600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 0 0 6px var(--g100);
  margin-top: 0.5rem;
  z-index: 1;
  position: relative;
}
.tl-spacer {
  flex: 1;
}

/* Risk Table */
.risk-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.risk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.risk-table thead {
  background: var(--g600);
  color: var(--white);
}
.risk-table thead th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.risk-table tbody tr {
  transition: var(--transition);
}
.risk-table tbody tr:nth-child(even) {
  background: var(--cream);
}
.risk-table tbody tr:hover {
  background: var(--g50);
}
.risk-table td {
  padding: 1.1rem 1.5rem;
  color: var(--text);
}
.risk-badge {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.risk-badge.high {
  background: #fce8e8;
  color: #c0392b;
}
.risk-badge.med {
  background: #fef3e2;
  color: #e67e22;
}
.risk-badge.low {
  background: var(--g100);
  color: var(--g600);
}

/* ---------- 19. CSR Partner Page ---------- */
.allocation-section {
  background: var(--cream);
}
.allocation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.alloc-chart-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
canvas#allocChart {
  max-width: 340px;
}
.alloc-legend {
  margin-top: 2rem;
}
.alloc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.alloc-item:last-child {
  border-bottom: none;
}
.alloc-dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}
.alloc-name {
  flex: 1;
  color: var(--text);
}
.alloc-pct {
  font-weight: 700;
  color: var(--g700);
}
.alloc-amt {
  color: var(--muted);
  font-size: 0.82rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
  text-align: center;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--g300);
}
.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--g600), var(--g400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
}
.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.strategic-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.sv-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}
.sv-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.sv-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--gld100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gld600);
}
.sv-text h4 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}
.sv-text p {
  font-size: 0.85rem;
  margin: 0;
}

/* Donation form */
.donation-section {
  background: linear-gradient(135deg, var(--g800) 0%, var(--g600) 100%);
}
.donation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.donation-text h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.donation-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}
.donation-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
}
.donation-highlight {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.9rem;
}
.donation-highlight i {
  color: var(--gld400);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  margin-bottom: 1.75rem;
  color: var(--g800);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--g500);
  box-shadow: 0 0 0 3px rgba(45, 122, 68, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---------- 20. Contact Page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-card {
  background: var(--g600);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
}
.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.contact-info-card > p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}
.ci-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ci-item:last-of-type {
  border-bottom: none;
}
.ci-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gld400);
}
.ci-item h5 {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gld400);
  margin-bottom: 0.25rem;
}
.ci-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ---------- 21. Animations ---------- */
.fade-up,
.fade-left,
.fade-right,
.scale-in {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-up {
  transform: translateY(40px);
}
.fade-left {
  transform: translateX(-40px);
}
.fade-right {
  transform: translateX(40px);
}
.scale-in {
  transform: scale(0.9);
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.stagger > * {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

/* Pulse ring */
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.pulse {
  position: relative;
  display: inline-block;
}
.pulse::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--gld400);
  animation: pulse-ring 2s infinite;
}

/* Float */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.float-anim {
  animation: float 4s ease-in-out infinite;
}

/* ---------- 22. Mobile Overlay ---------- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.4);
}
.nav-overlay.active {
  display: block;
}

/* ---------- 23. Responsive ---------- */
@media (max-width: 1100px) {
  .hero-content {
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 68px;
  }
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    right: -100%;
    bottom: 0;
    z-index: 999;
    width: 290px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 0.25rem;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    transition: right 0.35s ease;
    overflow-y: auto;
  }
  .nav-menu.open {
    right: 0;
  }
  .nav-link {
    color: var(--text) !important;
    width: 100%;
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
  }
  .nav-link:hover {
    background: var(--g50) !important;
    color: var(--g600) !important;
  }
  .nav-link.active {
    background: var(--g50);
    color: var(--g600) !important;
  }
  .nav-cta {
    width: 100%;
    margin: 1rem 0 0;
  }
  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
  }
  .hero-visual {
    justify-content: center;
  }
  .hero-card {
    max-width: 100%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .about-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .impact-visual {
    grid-template-columns: 1fr 1fr;
  }
  .partner-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > :first-child {
    grid-column: span 2;
  }
  .allocation-inner {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .strategic-value-grid {
    grid-template-columns: 1fr;
  }
  .donation-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .dr-profile {
    grid-template-columns: 1fr;
  }
  .dr-content {
    padding: 0 2rem 2rem;
  }
  .program-full {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .program-full.reverse {
    direction: ltr;
  }
  .timeline::before {
    left: 25px;
  }
  .tl-item,
  .tl-item:nth-child(even) {
    flex-direction: row;
  }
  .tl-item:nth-child(even) .tl-content {
    text-align: left;
  }
  .tl-dot {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  .tl-spacer {
    display: none;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-inner h2 {
    max-width: 100%;
  }
  .cta-buttons {
    justify-content: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-mini-stats {
    gap: 1.25rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .impact-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .impact-visual {
    grid-template-columns: 1fr;
  }
  .impact-card:first-child {
    grid-column: span 1;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .partner-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > :first-child {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .impact-numbers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-pad {
    padding: 3.5rem 0;
  }
}

/* ============================================================
   Page-specific styles (moved from inline <style> blocks)
============================================================ */

/* ---------- Back to Top (global — used on every page) ---------- */
#backToTop {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 46px; height: 46px;
  background: var(--g600); color: var(--white);
  border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
}
#backToTop:hover { background: var(--g500); transform: translateY(-3px); }

/* ---------- Home: scroll indicator ---------- */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size: .8rem;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  animation: scrollBounce 2s ease-in-out infinite; z-index: 2;
}
.scroll-indicator i { font-size: 1.3rem; }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ---------- About: credentials grid ---------- */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.cred-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}
.cred-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cred-card i     { font-size: 2rem; color: var(--gld600); margin-bottom: 1rem; }
.cred-card h4    { font-size: .95rem; margin-bottom: .4rem; color: var(--g800); }
.cred-card p     { font-size: .82rem; margin: 0; }

/* ---------- Programs: anchor nav & divider ---------- */
.programs-nav {
  display: flex; gap: .6rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 4rem;
}
.prog-nav-btn {
  padding: .5rem 1.2rem; border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: .83rem; font-weight: 500; color: var(--muted);
  cursor: pointer; transition: var(--transition);
}
.prog-nav-btn:hover,
.prog-nav-btn.active {
  background: var(--g600); color: var(--white); border-color: var(--g600);
}
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--g600), var(--gld600));
  border-radius: 3px; margin: 1.25rem 0;
}

/* ---------- Impact: sustainability & governance ---------- */
.sustain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.sustain-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: var(--transition);
}
.sustain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.sustain-card i  { font-size: 2rem; color: var(--g600); margin-bottom: 1.1rem; }
.sustain-card h4 { margin-bottom: .6rem; }

.govern-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.govern-card {
  background: var(--g600); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center; color: var(--white);
}
.govern-card i  { font-size: 2rem; color: var(--gld400); margin-bottom: 1rem; }
.govern-card h4 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.govern-card p  { font-size: .82rem; color: rgba(255,255,255,.75); margin: 0; }

/* ---------- CSR Partner: compliance, tiers, chart ---------- */
.compliance-box {
  background: var(--g50); border: 1.5px solid var(--g300);
  border-radius: var(--radius); padding: 1.75rem 2rem;
  display: flex; gap: 1.25rem; align-items: flex-start; margin-top: 2rem;
}
.compliance-box i { font-size: 2rem; color: var(--g600); flex-shrink: 0; }

.tier-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem; margin-top: 2rem;
}
.tier-card {
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  border: 2px solid var(--border);
  text-align: center; position: relative;
  transition: var(--transition);
}
.tier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tier-card.featured {
  border-color: var(--gld600);
  background: linear-gradient(135deg, var(--gld100), var(--white));
}
.tier-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gld600); color: var(--white);
  padding: .3rem 1.1rem; border-radius: 50px;
  font-size: .75rem; font-weight: 700; white-space: nowrap;
}
.tier-amt {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--g700); margin: .75rem 0; line-height: 1;
}
.tier-amt span  { font-size: 1.2rem; }
.tier-perks { text-align: left; margin: 1.5rem 0; display: flex; flex-direction: column; gap: .6rem; }
.tier-perk  { font-size: .85rem; display: flex; gap: .6rem; align-items: flex-start; }
.tier-perk i { color: var(--g600); margin-top: .1rem; flex-shrink: 0; }

.chart-center-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; pointer-events: none;
}
.chart-center-text .big   { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--g700); }
.chart-center-text .small { font-size: .72rem; color: var(--muted); }

/* ---------- Contact: FAQ & quick links ---------- */
.faq-list  { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.faq-item  { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem;
  background: none; border: none;
  font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 600;
  color: var(--g800); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: var(--transition);
}
.faq-q:hover          { color: var(--g600); }
.faq-q .icon          { transition: transform .3s; color: var(--g600); }
.faq-q.open .icon     { transform: rotate(45deg); }
.faq-a                { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-a.open           { max-height: 300px; }
.faq-a-inner          { padding: 0 1.5rem 1.25rem; font-size: .88rem; color: var(--muted); line-height: 1.8; }

.quick-links-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.ql-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  text-align: center; transition: var(--transition);
}
.ql-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--g300); }
.ql-card i  { font-size: 1.8rem; color: var(--g600); margin-bottom: 1rem; }
.ql-card h4 { font-size: .95rem; margin-bottom: .5rem; }
.ql-card p  { font-size: .82rem; margin-bottom: 1.25rem; }

/* ---------- Responsive additions ---------- */
@media (max-width: 900px) {
  .sustain-grid  { grid-template-columns: 1fr 1fr; }
  .govern-grid   { grid-template-columns: 1fr 1fr; }
  .tier-grid     { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .credentials-grid  { grid-template-columns: 1fr 1fr; }
  .quick-links-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .sustain-grid  { grid-template-columns: 1fr; }
  .govern-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .credentials-grid  { grid-template-columns: 1fr; }
  .quick-links-grid  { grid-template-columns: 1fr; }
}
