/* ============================================================
   JEEVAN SHIKSHA WEBSITE — Main Stylesheet
   Palette derived from the Jeevan Shiksha logo (woodpecker):
     Primary   — Logo Maroon-Red  #c64b35
     Secondary — Forest Green     #768a6b
     Accent    — Warm Amber       #dda121
   Fonts: Lora (display) + Nunito Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

/* === CSS VARIABLES === */
:root {
  /* Primary — deep logo red (woodpecker body) */
  --blue:        #c64b35;
  --blue-mid:    #b64530;
  --blue-light:  #f6e3df;

  /* Secondary — forest green (branch & leaves) */
  --teal:        #768a6b;
  --teal-light:  #e7ece4;

  /* Accent — warm amber (earthy warmth from logo) */
  --maroon:      #dda121;
  --maroon-light:#f9edd4;

  /* Backgrounds — warm cream, barely changed */
  --cream:       #f9f6ee;
  --cream-dark:  #eee8db;

  /* Text — warm charcoal */
  --text:        #1C1A18;
  --text-mid:    #4A4540;
  --text-light:  #7A746C;
  --white:       #FFFFFF;

  /* Shadows — use primary red tint */
  --shadow-sm:   0 2px 12px rgba(198,75,53,0.07);
  --shadow:      0 6px 28px rgba(198,75,53,0.11);
  --shadow-lg:   0 12px 48px rgba(198,75,53,0.15);

  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Gradients */
  --gradient-overlay: linear-gradient(160deg, rgba(198,75,53,0.97) 0%, rgba(42,12,9,0.95) 100%);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Lora', serif;
  line-height: 1.25;
  color: var(--blue);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1rem; color: var(--text-mid); }

/* === UTILITIES === */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }

.section-label {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  margin-bottom: 16px;
}
.section-title + p {
  font-size: 1.07rem;
  max-width: 620px;
}
.text-center .section-title + p { margin: 0 auto; }

.divider {
  width: 52px; height: 4px;
  background: var(--maroon);
  border-radius: 99px;
  margin-bottom: 28px;
}
.text-center .divider { margin: 0 auto 28px; }

.tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tag-teal   { background: var(--teal-light);  color: var(--teal); }
.tag-blue   { background: var(--blue-light);  color: var(--blue); }
.tag-maroon { background: var(--maroon-light);color: var(--maroon); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 99px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--maroon);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(221,161,33,0.35);
}
.btn-primary:hover {
  background: #c58f1d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(221,161,33,0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-donate {
  background: var(--maroon);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.85rem;
  box-shadow: 0 3px 14px rgba(221,161,33,0.3);
}
.btn-donate:hover {
  background: #c58f1d;
  transform: translateY(-2px);
}

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(198,75,53,0.97);
  backdrop-filter: blur(12px);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar.scrolled {
  background: rgba(198,75,53,1);
  box-shadow: var(--shadow);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.navbar-logo img {
  height: 44px; width: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  object-fit: contain;
  background: white;
}
/* Icon-based logo (no image) */
.logo-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem;
  flex-shrink: 0;
}
.logo-icon-sm {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem;
  flex-shrink: 0;
}
.logo-text .logo-name {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.logo-text .logo-tagline {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.navbar-links {
  display: flex; align-items: center; gap: 6px;
}
.navbar-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 8px;
  transition: var(--transition);
}
.navbar-links a:hover, .navbar-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.navbar-actions {
  display: flex; align-items: center; gap: 10px;
}
.lang-toggle {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  padding: 3px;
}
.lang-btn {
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.lang-btn.active {
  background: var(--teal);
  color: var(--white);
}
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 99px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--blue);
  z-index: 999;
  padding: 30px 24px;
  flex-direction: column; gap: 6px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 10px;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.mobile-nav .mobile-lang {
  margin-top: 20px;
  display: flex; gap: 12px;
}
.mobile-nav .mobile-lang .lang-btn {
  font-size: 0.9rem; padding: 8px 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px; color: white;
}
.mobile-nav .mobile-lang .lang-btn.active {
  background: var(--teal);
}

/* === HERO SLIDER === */
.hero {
  position: relative;
  height: 100vh; min-height: 560px;
  overflow: hidden;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; }

/* Mobile fallback colours; desktop hero uses real banner images */
.slide-1 { background-color: #c64b35; }
.slide-2 { background-color: #768a6b; }
.slide-3 { background-color: #dda121; }

/* Banner images: apply to all viewports so mobile devices also show the photos.
   Keep the solid background colour above as a lightweight fallback. */
.slide-1 { background-image: url("../public/images/learning-centres/learning-centres-01.jpg"); }
.slide-2 { background-image: url("../public/images/library/library-01.jpg"); }
.slide-3 { background-image: url("../public/images/environment/environment-01.jpg"); }

/* Prev / Next arrows */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s;
  color: white; font-size: 1rem;
}
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }
.slider-arrow:hover { background: rgba(255,255,255,0.32); }

/* Dot indicators — centred at bottom */
.slider-dots {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.slider-dot.active {
  background: var(--white);
  transform: scale(1.35);
}

/* === ABOUT STRIP (two-column brief) === */
.about-strip {
  background: var(--white);
  padding: 80px 0;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.stat-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  border-bottom: 3px solid var(--teal);
}
.stat-card .num {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card .label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap .img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
}
.about-image-wrap .img-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-image-wrap .floating-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--teal);
  color: white;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: 'Lora', serif;
  font-size: 0.92rem;
  font-style: italic;
  max-width: 170px;
  text-align: center;
  line-height: 1.4;
}

/* === VISION/MISSION/VALUES === */
/* =========================================================
   COMPACT & RESPONSIVE VMV SECTION
   ========================================================= */

.vmv-section {
    width: 100%;
    padding: 55px 20px 60px;
    background: #f5f6f7;
    overflow: hidden;
}

.vmv-section .container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}


/* ================= HEADER ================= */

.vmv-header {
    margin-bottom: 30px;
}

.vmv-header .section-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #b88635;
}

.vmv-header h2 {
    margin: 0;
    font-size: 27px;
    line-height: 1.2;
    font-weight: 700;
    color: #26384d;
}

.vmv-header .divider {
    width: 48px;
    height: 2px;
    margin: 9px auto 0;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        var(--blue),
        var(--teal),
        var(--maroon)
    );
}


/* ================= CARDS GRID ================= */

.vmv-modern-grid {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}


/* ================= CARD ================= */

.vmv-modern-card {
    --vmv-color: #333;

    position: relative;

    width: 100%;
    height: 390px;
    min-height: 390px;

    background: #fff;

    border-radius: 14px;

    overflow: hidden;

    border: 1px solid rgba(0,0,0,.04);

    box-shadow:
        0 8px 22px rgba(30,45,60,.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.vmv-modern-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 30px rgba(30,45,60,.13);
}


/* ================= CARD COLORS ================= */

.vmv-vision {
    --vmv-color: #ed3155;
    --vmv-gradient: linear-gradient(
        145deg,
        #f54d6c,
        #df234b
    );
}

.vmv-mission {
    --vmv-color: #079ed8;
    --vmv-gradient: linear-gradient(
        145deg,
        #29b4e9,
        #078dcb
    );
}

.vmv-values {
    --vmv-color: #079d52;
    --vmv-gradient: linear-gradient(
        145deg,
        #28bd70,
        #079b51
    );
}


/* ================= BACKGROUND PATTERN ================= */

.vmv-pattern {
    position: absolute;

    width: 130px;
    height: 130px;

    top: -45px;
    left: -45px;

    border: 1px solid var(--vmv-color);

    border-radius: 50%;

    opacity: .08;

    pointer-events: none;
}

.vmv-pattern::before,
.vmv-pattern::after {
    content: "";

    position: absolute;

    border: 1px solid var(--vmv-color);

    border-radius: 50%;
}

.vmv-pattern::before {
    inset: 15px;
}

.vmv-pattern::after {
    inset: 30px;
}


/* ================= ICON AREA ================= */

.vmv-icon-area {
    position: relative;

    width: 125px;
    height: 125px;

    margin: 27px auto 8px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Outer ring */

.vmv-icon-ring {
    position: absolute;

    width: 108px;
    height: 108px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 7px 20px rgba(20,40,60,.12);

    z-index: 1;
}


/* Main icon */

.vmv-main-icon {
    position: relative;

    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--vmv-gradient);

    color: #fff;

    font-size: 30px;

    z-index: 3;

    box-shadow:
        0 7px 16px rgba(20,40,60,.15);
}


/* Arc */

.vmv-icon-arc {
    position: absolute;

    width: 105px;
    height: 45px;

    bottom: 0;

    border:
        1.5px solid var(--vmv-color);

    border-top: 0;

    border-radius:
        0 0 60px 60px;

    z-index: 2;
}


/* ================= CARD CONTENT ================= */

.vmv-card-content {
    position: relative;

    z-index: 10;

    padding:
        0 24px 100px;
}


/* Heading */

.vmv-card-content .vmv-label {
    text-align: center;

    font-size: 19px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: .5px;

    color: var(--vmv-color);

    text-transform: uppercase;
}


/* Heading line */

.vmv-title-line {
    width: 48px;
    height: 2px;

    margin: 7px auto 12px;

    position: relative;

    background: var(--vmv-color);
}

.vmv-title-line::before,
.vmv-title-line::after {
    content: "";

    position: absolute;

    top: 0;

    width: 13px;
    height: 2px;

    background: var(--vmv-color);
}

.vmv-title-line::before {
    left: -18px;
}

.vmv-title-line::after {
    right: -18px;
}


/* ================= SMALL ICON ================= */

.vmv-small-icon {
    width: 28px;
    height: 28px;

    margin: 0 auto 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--vmv-color);

    font-size: 15px;
}


/* ================= DESCRIPTION ================= */

.vmv-card-content p {
    max-width: 230px;

    margin: 0 auto;

    text-align: center;

    font-size: 10.5px;

    line-height: 1.65;

    color: #42546a;
}


/* ================= VALUES ================= */

.vmv-values-list {
    width: 100%;
    max-width: 230px;

    margin: 0 auto;
}

.vmv-value-item {
    display: flex;

    align-items: center;

    gap: 9px;

    padding: 6px 0;

    border-bottom:
        1px solid rgba(7,157,82,.15);

    font-size: 10.5px;

    color: #34475b;
}

.vmv-value-item:last-child {
    border-bottom: none;
}


/* Value icon */

.vmv-value-icon {
    width: 22px;
    height: 22px;

    min-width: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--vmv-gradient);

    color: white;

    font-size: 9px;

    box-shadow:
        0 3px 8px rgba(0,100,60,.15);
}


/* ================= WAVES ================= */

.vmv-waves {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 55px;

    overflow: hidden;

    pointer-events: none;
}

.vmv-wave {
    position: absolute;

    width: 130%;
    height: 45px;

    left: -15%;

    border-radius:
        50% 50% 0 0 /
        70% 70% 0 0;

    transform: rotate(-3deg);
}

.vmv-wave-back {
    bottom: -28px;

    background: rgba(255,255,255,.7);

    z-index: 1;
}

.vmv-wave-front {
    bottom: -36px;

    background: var(--vmv-gradient);

    z-index: 2;
}


/* ================= DOTS ================= */

.vmv-dots-decoration {
    position: absolute;

    bottom: 7px;
    left: 50%;

    transform: translateX(-50%);

    display: grid;

    grid-template-columns:
        repeat(4, 3px);

    gap: 4px;

    z-index: 10;
}

.vmv-dots-decoration span {
    width: 3px;
    height: 3px;

    background: #fff;

    border-radius: 50%;

    opacity: .95;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

    .vmv-section {
        padding-top: 60px;
        padding-bottom: 65px;
    }

    .vmv-modern-grid {
        max-width: 950px;
    }

    .vmv-modern-card {
        height: 400px;
        min-height: 400px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .vmv-section {
        padding: 50px 18px;
    }

    .vmv-modern-grid {
        max-width: 680px;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 10px;
    }

    .vmv-modern-card {
        height: 370px;
        min-height: 370px;
    }

    .vmv-icon-area {
        transform: scale(.9);

        margin-top: 22px;
        margin-bottom: 0;
    }

    .vmv-card-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .vmv-card-content .vmv-label {
        font-size: 17px;
    }

    .vmv-card-content p,
    .vmv-value-item {
        font-size: 9.5px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .vmv-section {
        padding: 45px 15px;
    }

    .vmv-header {
        margin-bottom: 25px;
    }

    .vmv-header h2 {
        font-size: 25px;
    }

    .vmv-modern-grid {
        grid-template-columns: 1fr;

        max-width: 340px;

        gap: 18px;
    }

    .vmv-modern-card {
        height: 380px;
        min-height: 380px;
    }

    .vmv-icon-area {
        width: 120px;
        height: 120px;

        margin-top: 25px;
    }

    .vmv-icon-ring {
        width: 103px;
        height: 103px;
    }

    .vmv-main-icon {
        width: 73px;
        height: 73px;

        font-size: 29px;
    }

    .vmv-icon-arc {
        width: 100px;
        height: 43px;
    }

    .vmv-card-content {
        padding:
            0 28px 100px;
    }

    .vmv-card-content .vmv-label {
        font-size: 20px;
    }

    .vmv-card-content p,
    .vmv-value-item {
        font-size: 11px;
    }

    .vmv-card-content p {
        max-width: 250px;
    }

    .vmv-values-list {
        max-width: 250px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .vmv-modern-grid {
        max-width: 310px;
    }

    .vmv-modern-card {
        height: 365px;
        min-height: 365px;
    }

    .vmv-card-content p,
    .vmv-value-item {
        font-size: 10px;
    }
}

/* === CAUSE / PROGRAMS SLIDESHOW === */
.causes-section { background: var(--cream); }
.causes-slider-wrap { position: relative; overflow: hidden; margin-top: 48px; }
.causes-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cause-card {
  min-width: calc(33.33% - 16px);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex-shrink: 0;
}
.cause-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cause-img {
  height: 190px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.cause-img.health   { background: linear-gradient(135deg, #e8f4f8, #c7e8f0); }
.cause-img.edu      { background: linear-gradient(135deg, #f0f8e8, #c7f0c7); }
.cause-img.env      { background: linear-gradient(135deg, #e8f8e8, #a8e0a8); }
.cause-img.sports   { background: linear-gradient(135deg, #fff0e8, #ffd0b0); }
.cause-img.culture  { background: linear-gradient(135deg, #f8e8f8, #e0b0e0); }
.cause-body { padding: 26px 24px; }
.cause-body h4 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  color: var(--blue);
  margin-bottom: 10px;
}
.cause-body p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }
.cause-nav {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; margin-top: 36px;
}
.cause-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cause-nav-btn:hover { background: var(--blue); color: white; }
.cause-dots { display: flex; gap: 8px; }
.cause-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  transition: var(--transition);
}
.cause-dot.active { background: var(--teal); transform: scale(1.3); }

/* === TEAM SECTION === */
.team-section { background: var(--white); }
.team-tabs {
  display: flex; gap: 6px;
  margin-bottom: 42px;
  background: var(--cream);
  padding: 6px;
  border-radius: 12px;
  width: fit-content;
}
.team-tab {
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-mid);
}
.team-tab.active {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  background: var(--white);
}
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--teal);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--blue);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--blue);
  margin-bottom: 6px;
}
.team-card .role {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.team-card .state {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* === ONGOING PROGRAMS (detailed) === */
.programs-section { background: var(--cream); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  transition: var(--transition);
}
.program-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.program-accent {
  width: 6px;
  background: var(--teal);
  flex-shrink: 0;
}
.program-accent.maroon { background: var(--maroon); }
.program-accent.blue   { background: var(--blue); }
.program-body {
  padding: 28px 24px;
}
.program-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.program-body h4 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 8px;
}
.program-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* === GALLERY PREVIEW === */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-dark);
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(198,75,53,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  color: white; font-size: 1.6rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.gallery-cta { text-align: center; margin-top: 36px; }

/* === REVIEWS === */
.reviews-section { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.review-quote {
  font-size: 3rem;
  color: var(--teal);
  font-family: 'Lora', serif;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.4;
}
.review-text {
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 22px;
  font-size: 0.95rem;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.review-author-info .name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue);
}
.review-author-info .role {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* === EVENTS === */
.events-section { background: var(--white); }
.events-list { margin-top: 48px; display: flex; flex-direction: column; gap: 20px; }
.event-card {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: var(--transition);
}
.event-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.event-date {
  background: var(--blue);
  color: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  min-width: 70px;
  flex-shrink: 0;
}
.event-date .day {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.event-date .month {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
.event-info h4 {
  color: var(--blue); margin-bottom: 6px; font-size: 1.05rem;
}
.event-info p { font-size: 0.88rem; color: var(--text-mid); }
.event-tag { margin-top: 10px; }

/* === CONTACT STRIP === */
.contact-strip {
  background: var(--blue);
  padding: 80px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact-info h2 { color: var(--white); margin-bottom: 16px; }
.contact-info p  { color: rgba(255,255,255,0.72); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item .ci-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.contact-item .ci-value {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.92rem;
}
.contact-form { background: rgba(255,255,255,0.06); border-radius: var(--radius-lg); padding: 36px 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 9px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,0.14);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 20px; }
.form-submit .btn-primary { width: 100%; justify-content: center; }

/* === FOOTER === */
.footer {
  background: #2A0C09;
  padding: 70px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .logo-wrap {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.footer-brand .logo-wrap img {
  height: 48px; width: 48px;
  border-radius: 50%;
  background: white;
  object-fit: contain;
}
.footer-brand .brand-name {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
}
.footer-brand .brand-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 22px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--teal); color: var(--white); }
.footer-col h5 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--teal); }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  color: white; font-size: 1.6rem;
  text-decoration: none;
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
@keyframes pulse-wa {
  0%  { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
  100%{ box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 130px 0 70px;
  background: linear-gradient(135deg, var(--blue) 0%, #b64530 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .section-label { color: rgba(255,255,255,0.65); }
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.72); max-width: 580px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.4; }

/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.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; }

/* === ABOUT PAGE SPECIFIC === */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 48px;
}
.collab-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.collab-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.collab-item .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* === PROJECTS PAGE === */
.project-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.project-detail-header {
  background: var(--blue);
  padding: 28px 32px;
  display: flex; align-items: center; gap: 16px;
}
.project-detail-header .picon { font-size: 2rem; }
.project-detail-header h3 { color: var(--white); margin: 0; }
.project-detail-header .sub { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.project-detail-body { padding: 32px; }
.project-detail-body p { margin-bottom: 14px; font-size: 0.95rem; line-height: 1.75; }
.sub-programs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 20px;
}
.sub-program {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
}
.sub-program h5 { color: var(--blue); margin-bottom: 6px; font-size: 0.95rem; }
.sub-program p { font-size: 0.84rem; }

/* === GALLERY PAGE === */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.gallery-full-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  position: relative; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.gallery-full-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-full-item:hover img { transform: scale(1.06); }
.gallery-full-item .goverlay {
  position: absolute; inset: 0;
  background: rgba(198,75,53,0.55);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  color: white;
}
.gallery-full-item:hover .goverlay { opacity: 1; }
.gallery-full-item .goverlay span { font-size: 2rem; }
.gallery-full-item .goverlay p { font-size: 0.85rem; margin-top: 6px; color: rgba(255,255,255,0.85); }

/* === REPORTS PAGE === */
.report-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: flex-start; gap: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.report-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.report-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  background: var(--maroon-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; flex-shrink: 0;
  color: var(--maroon);
}
.report-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.report-info p { font-size: 0.88rem; margin-bottom: 16px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vmv-grid { grid-template-columns: 1fr; gap: 20px; }
  .programs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .navbar-links, .navbar-actions .btn-donate { display: none; }
  .hamburger { display: flex; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { display: none; }
  .about-stats { grid-template-columns: repeat(4,1fr); gap: 12px; }
  .cause-card { min-width: calc(100% - 0px); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .programs-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-full-grid { grid-template-columns: 1fr 1fr; }
  .sub-programs { grid-template-columns: 1fr; }
  .collab-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr; }
  .slide-actions { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: 1fr; }
}

/* === PROGRAMS HOME GRID (2×2, image + text) === */
.programs-home { background: var(--cream); }

/* === PROGRAMS — 2 column, image top / text bottom === */
.prog-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.prog-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.prog-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.prog-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f2f6;
}

.prog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}

.prog-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf0f7;
  border-bottom: 2px dashed #c8cfe0;
  z-index: 1;
}

.prog-photo-placeholder span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9aa3b8;
}

.prog-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 99px;
}

.prog-text {
  padding: 22px 24px 26px;
}

.prog-text h3 {
  font-size: 1.05rem;
  color: var(--blue);
  line-height: 1.35;
  margin-bottom: 10px;
}

.prog-text p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.72;
}

@media (max-width: 720px) {
  .prog-list { grid-template-columns: 1fr; }
}
