/* =====================================================================
   MISSION RABIES FREE INDIA — Premium Design System v3
   Playfair Display (headings) + Poppins (body)
   Forest Green #1A6B3C · Orange #F26B22 · Warm White #F9F7F2
   ===================================================================== */

/* ================================================================
   CSS CUSTOM PROPERTIES
   ================================================================ */
:root {
  /* Brand Colors */
  --green:         #1A6B3C;
  --green-hover:   #22873F;
  --green-dark:    #145530;
  --green-soft:    #EEF8F2;
  --green-muted:   #D0EBD9;
  --orange:        #F26B22;
  --orange-hover:  #D4561A;
  --orange-soft:   #FEF3EC;

  /* Aliases for compatibility */
  --primary:       var(--green);
  --primary-hover: var(--green-hover);
  --accent:        var(--orange);
  --accent-hover:  var(--orange-hover);
  --secondary:     var(--green-dark);
  --border-color:  var(--text-border);

  /* Backgrounds */
  --bg-main:       #F9F7F2;
  --bg-cream:      #FFF8F0;
  --bg-dark:       #1C1C1E;
  --bg-dark2:      #2D3436;
  --bg-white:      #FFFFFF;

  /* Text */
  --text-heading:  #1A1A1A;
  --text-body:     #3D3D3D;
  --text-muted:    #7A7A7A;
  --text-border:   #E2DDD8;

  /* Gradients */
  --grad-green:    linear-gradient(135deg, #1A6B3C 0%, #2EAD60 100%);
  --grad-orange:   linear-gradient(135deg, #F26B22 0%, #F9A825 100%);
  --grad-hero:     linear-gradient(to bottom right, rgba(26,107,60,0.82), rgba(242,107,34,0.52));
  --grad-dark:     linear-gradient(135deg, #1C1C1E 0%, #2D3436 100%);

  /* Typography */
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Poppins', system-ui, sans-serif;

  /* Spacing */
  --section-pad:   100px;
  --section-pad-sm: 60px;
  --radius-card:   14px;
  --radius-btn:    10px;
  --radius-input:  10px;
  --max-w:         1280px;

  /* Shadows */
  --shadow-sm:     0 4px 24px rgba(0,0,0,.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,.09);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.12);
  --shadow-green:  0 8px 24px rgba(26,107,60,.22);
  --shadow-orange: 0 8px 24px rgba(242,107,34,.28);

  /* Transitions */
  --ease:          .25s ease;
  --ease-out:      .3s cubic-bezier(.25,.46,.45,.94);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-main);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.01em;
}

a { text-decoration: none; color: inherit; transition: color var(--ease); }
img { max-width: 100%; height: auto; }

.container { max-width: var(--max-w); padding-inline: 24px; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--green-muted); border-radius: 99px; }

/* ================================================================
   UTILITY CLASSES
   ================================================================ */
.text-green    { color: var(--green) !important; }
.text-orange   { color: var(--orange) !important; }
.bg-green-soft { background: var(--green-soft) !important; }
.bg-cream      { background: var(--bg-cream) !important; }
.bg-dark-sec   { background: var(--bg-dark) !important; }
.rounded-xl    { border-radius: var(--radius-card) !important; }
.img-cover     { object-fit: cover; width: 100%; height: 100%; }

/* Section Helpers */
.section    { padding: var(--section-pad) 0; }
.section-sm { padding: var(--section-pad-sm) 0; }

/* Eyebrow Label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 10px;
}

/* Section Title Block */
.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 14px;
}
.section-bar {
  width: 60px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 16px;
}
.section-head.center .section-bar { margin-inline: auto; }
.section-head p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-head.center p { margin-inline: auto; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

/* Primary — Orange CTA */
.btn-primary {
  background: var(--grad-orange);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(135deg, var(--orange-hover), #c44a14);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(242,107,34,.38);
}

/* Secondary — Green */
.btn-secondary-action {
  background: var(--grad-green);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-green);
}
.btn-secondary-action:hover {
  background: linear-gradient(135deg, var(--green-dark), #0e3d22);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}

/* Outlined Green */
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

/* Outlined White */
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--green);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Donate Navbar Button */
.btn-donate {
  background: var(--grad-orange);
  color: #fff !important;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 14px rgba(242,107,34,.35);
}
.btn-donate:hover {
  background: linear-gradient(135deg, var(--orange-hover), #c44a14);
  color: #fff !important;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 8px 20px rgba(242,107,34,.45);
}

/* Login Navbar Button */
.btn-nav-login {
  color: var(--green) !important;
  border: 1.5px solid var(--green);
  background: transparent;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
}
.btn-nav-login:hover {
  background: var(--green);
  color: #fff !important;
}

.btn-lg { padding: 16px 38px; font-size: 16px; }
.btn-sm { padding: 9px 20px; font-size: 13px; border-radius: 8px; }

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.announce-bar {
  background: var(--grad-orange);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar-mr {
  position: sticky;
  top: 0;
  z-index: 1050;
  min-height: 80px;
  height: auto;
  background: rgba(249,247,242,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--text-border);
  transition: box-shadow var(--ease), background var(--ease), min-height var(--ease);
  padding: 10px 0;
}
.navbar-mr .container { display: flex; align-items: center; justify-content: space-between; }
@media (min-width: 1200px) {
  .navbar-mr .container { max-width: 96% !important; }
}

.navbar-mr.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,.1);
  border-bottom-color: var(--text-border);
  min-height: 68px;
  padding: 6px 0;
}

/* Brand */
.navbar-mr .navbar-brand {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green) !important;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Nav Links */
.navbar-mr .nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body) !important;
  padding: 6px 8px !important;
  border-radius: 8px;
  transition: color var(--ease), background var(--ease);
  position: relative;
  white-space: nowrap;
}
.navbar-mr .nav-link:hover { color: var(--green) !important; background: var(--green-soft); }
.navbar-mr .nav-link.active { color: var(--green) !important; }

.navbar-mr .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.navbar-mr .nav-link:hover::after,
.navbar-mr .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.navbar-mr .dropdown-menu {
  border: 1px solid var(--text-border);
  box-shadow: var(--shadow-md);
  border-radius: 14px;
  padding: 8px;
  margin-top: 8px !important;
  background: #fff;
  animation: dropIn .18s ease both;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.navbar-mr .dropdown-item {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  border-radius: 9px;
  padding: 9px 14px;
  transition: all var(--ease);
  border-left: 3px solid transparent;
}
.navbar-mr .dropdown-item:hover {
  background: var(--green-soft);
  color: var(--green);
  border-left-color: var(--green);
}

/* Hamburger */
.navbar-toggler {
  border: 1.5px solid var(--text-border);
  border-radius: 9px;
  padding: 7px 10px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(26,107,60,.14); }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: var(--grad-hero);
  z-index: 0;
  animation: heroZoom 16s ease-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}
.hero-bg.has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,38,22,0.85) 0%, rgba(26,107,60,0.65) 55%, rgba(0,0,0,0.6) 100%);
}

/* Content inside hero */
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 45px 0 65px;
}

/* Label pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(242,107,34,.22);
  border: 1px solid rgba(242,107,34,.5);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 18px;
  border-radius: 99px;
  margin-bottom: 26px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.hero-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FFB800;
  box-shadow: 0 0 8px #FFB800;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.75); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.8vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
  font-family: var(--font-heading);
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero h1 span { color: #FFAA55; text-shadow: 0 0 15px rgba(242,107,34,0.4); }

.hero .hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,.9);
  max-width: 580px;
  margin-bottom: 38px;
  line-height: 1.75;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* Custom Glassmorphism Carousel Controls */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 56px;
  height: 56px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  margin: 0 30px;
  opacity: 0.8;
  transition: all 0.3s ease;
  z-index: 10;
}
.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  background: rgba(26,107,60,0.85);
  border-color: var(--green);
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}
@media (max-width: 768px) {
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    display: none;
  }
}

/* Impact counter bar */
.hero-counter-bar {
  position: relative;
  z-index: 2;
  background: rgba(10,25,15,.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.hero-counter-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.hero-counter-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 32px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.hero-counter-item:last-child { border-right: none; }
.hero-counter-item .hci-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(34,135,63,.3);
  display: grid; place-items: center;
  font-size: 1.2rem;
  color: #6ee09a;
  flex-shrink: 0;
}
.hero-counter-item .hci-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-counter-item .hci-label {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
  font-weight: 600;
}

/* carousel */
.hero .carousel-item { min-height: 100vh; }

/* ================================================================
   ABOUT SNAPSHOT
   ================================================================ */
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--grad-orange);
  color: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow-orange);
  text-align: center;
  min-width: 110px;
  z-index: 2;
}
.about-img-badge .aib-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.about-img-badge .aib-label {
  font-size: 11px;
  font-weight: 600;
  opacity: .9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-check-list { list-style: none; padding: 0; margin: 0; }
.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .95rem;
  color: var(--text-body);
}
.about-check-list li .check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  font-size: .65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ================================================================
   IMPACT COUNTERS (Dark Green BG)
   ================================================================ */
.counters-section {
  background: var(--grad-green);
  position: relative;
  overflow: hidden;
}
.counters-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,.06) 0%, transparent 65%);
  pointer-events: none;
}
.counter-box {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.counter-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
.counter-box .cb-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #FF8A00);
  box-shadow: 0 8px 24px rgba(230, 81, 0, 0.4);
  display: grid; place-items: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 24px;
  transition: transform 0.4s;
}
.counter-box:hover .cb-icon {
  transform: scale(1.1) rotate(5deg);
}
.counter-box .num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.counter-box .label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ================================================================
   PROGRAM CARDS
   ================================================================ */
.program-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px;
  border-top: 4px solid var(--green);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--ease-out), box-shadow var(--ease-out);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.program-card .pc-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: background var(--ease), color var(--ease);
}
.program-card:hover .pc-icon { background: var(--orange-soft); color: var(--orange); }
.program-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.program-card p { font-size: .9rem; color: var(--text-muted); margin-bottom: 16px; }
.program-card .learn-more {
  color: var(--green);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease), color var(--ease);
}
.program-card:hover .learn-more { gap: 10px; color: var(--orange); }

/* ================================================================
   CAMPAIGN CARDS
   ================================================================ */
.campaign-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--ease-out), box-shadow var(--ease-out);
}
.campaign-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.campaign-card .cc-img {
  height: 200px;
  background: var(--green-soft);
  overflow: hidden;
  position: relative;
}
.campaign-card .cc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.campaign-card:hover .cc-img img { transform: scale(1.05); }
.campaign-card .cc-body { padding: 24px; }
.campaign-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.campaign-card p  { font-size: .88rem; color: var(--text-muted); margin-bottom: 16px; }

/* Progress Bar */
.progress-mr {
  height: 8px;
  background: #eee;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 10px;
}
.progress-mr .progress-bar {
  height: 100%;
  background: var(--grad-green);
  border-radius: 99px;
  width: 0;
  transition: width 1.2s cubic-bezier(.25,.46,.45,.94);
}
.cc-raised { font-size: .85rem; font-weight: 600; }
.cc-raised .raised { color: var(--green); }
.cc-raised .goal   { color: var(--text-muted); }

/* ================================================================
   EVENT CARDS (Horizontal)
   ================================================================ */
.event-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  transition: transform var(--ease-out), box-shadow var(--ease-out);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-card .ec-date {
  flex-shrink: 0;
  width: 72px;
  background: var(--grad-green);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  gap: 0;
}
.event-card .ec-date .day  { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; line-height: 1; }
.event-card .ec-date .mon  { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: .85; }
.event-card .ec-body { padding: 20px 22px; flex: 1; }
.event-card .ec-body h4  { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.event-card .ec-body .loc { font-size: .82rem; color: var(--text-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.event-card .ec-body p   { font-size: .85rem; color: var(--text-muted); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ================================================================
   GALLERY (Dark BG)
   ================================================================ */
.gallery-section { background: var(--bg-dark); }
.gallery-section .section-head h2,
.gallery-section .section-head .eyebrow { color: #fff; }
.gallery-section .section-bar { background: var(--orange); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item::after {
  content: '\F52A';
  font-family: 'bootstrap-icons';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,107,60,.7), rgba(242,107,34,.5));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2rem;
  opacity: 0;
  transition: opacity var(--ease);
}
.gallery-item:hover img   { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border: 1px solid var(--text-border);
  transition: transform var(--ease-out), box-shadow var(--ease-out);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card .tq-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5rem;
  line-height: .8;
  color: var(--orange);
  opacity: .2;
  margin-bottom: 8px;
  display: block;
}
.testimonial-card p { font-size: .95rem; color: var(--text-muted); font-style: italic; margin-bottom: 24px; line-height: 1.7; }
.testimonial-card .ta-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ta-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green-soft);
  overflow: hidden;
  flex-shrink: 0;
  display: grid; place-items: center;
}
.ta-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ta-name { font-weight: 700; font-size: .92rem; color: var(--text-heading); margin-bottom: 2px; }
.ta-designation { font-size: .78rem; color: var(--text-muted); }
.star-rating { color: var(--orange); font-size: .8rem; margin-bottom: 14px; }

/* ================================================================
   MEMBERSHIP CTA (Green Gradient)
   ================================================================ */
.membership-cta-section {
  background: var(--grad-green);
  position: relative;
  overflow: hidden;
}
.membership-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.07) 0%, transparent 60%);
}

/* ================================================================
   DONATE CTA (Orange Gradient)
   ================================================================ */
.donate-cta-section {
  background: var(--grad-orange);
  position: relative;
  overflow: hidden;
}
.donate-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.1) 0%, transparent 60%);
}

/* ================================================================
   CARD MR (General)
   ================================================================ */
.card-mr {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.04);
  height: 100%;
  overflow: hidden;
  transition: transform var(--ease-out), box-shadow var(--ease-out);
}
.card-mr:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.icon-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.6);
  padding: 80px 0 0;
}
.footer h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer .footer-brand-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer p { font-size: .85rem; line-height: 1.75; }
.footer a { color: rgba(255,255,255,.6); transition: color var(--ease); }
.footer a:hover { color: var(--orange); }

.footer .footer-links { list-style: none; padding: 0; }
.footer .footer-links li { margin-bottom: 10px; }
.footer .footer-links a { font-size: .875rem; }

.footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .875rem;
}
.footer .fci-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  display: grid; place-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Social Icons */
.footer .social-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.footer .social-links a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center;
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  transition: all var(--ease);
}
.footer .social-links a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

/* Newsletter in footer */
.footer .newsletter-form { display: flex; gap: 0; margin-top: 14px; }
.footer .newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-right: none;
  border-radius: 9px 0 0 9px;
  padding: 11px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: .875rem;
  outline: none;
}
.footer .newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.footer .newsletter-form input:focus { border-color: rgba(255,255,255,.25); }
.footer .newsletter-form button {
  background: var(--orange);
  border: none;
  border-radius: 0 9px 9px 0;
  padding: 11px 18px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--ease);
}
.footer .newsletter-form button:hover { background: var(--orange-hover); }

/* Footer bottom */
.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .8rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ================================================================
   PAGE BANNER (Inner Pages)
   ================================================================ */
.page-banner {
  background: var(--grad-green);
  color: #fff;
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(255,255,255,.07) 0%, transparent 60%);
}
.page-banner h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  font-family: var(--font-heading);
  position: relative;
  z-index: 1;
}
.breadcrumb-mr {
  --bs-breadcrumb-divider-color: rgba(255,255,255,.5);
  position: relative;
  z-index: 1;
}
.breadcrumb-mr a { color: rgba(255,255,255,.75); }
.breadcrumb-mr a:hover { color: #fff; }
.breadcrumb-mr .active { color: rgba(255,255,255,.95); }

/* ================================================================
   FORMS
   ================================================================ */
.form-control, .form-select {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-body);
  border: 1.5px solid var(--text-border);
  border-radius: var(--radius-input);
  padding: 14px 18px;
  background: #fff;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,107,60,.12);
  outline: none;
}
.form-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 7px;
}

/* Alerts */
.alert {
  font-family: var(--font-body);
  border-radius: var(--radius-card);
  border: none;
  font-size: .9rem;
  font-weight: 500;
}
.alert-success { background: var(--green-soft); color: #145530; border-left: 4px solid var(--green); }
.alert-danger  { background: #FEF2F2; color: #B91C1C; border-left: 4px solid #EF4444; }
.alert-warning { background: var(--orange-soft); color: #92400E; border-left: 4px solid var(--orange); }
.alert-info    { background: #EFF6FF; color: #1E40AF; border-left: 4px solid #3B82F6; }

/* ================================================================
   FLOATING WHATSAPP
   ================================================================ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1040;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1EB455);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform var(--ease), box-shadow var(--ease);
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.55);
  color: #fff;
}

/* ================================================================
   REVEAL ANIMATION
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ================================================================
   BADGE / MISC
   ================================================================ */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  :root { --section-pad: 60px; --section-pad-sm: 40px; }
  .navbar-mr { min-height: 64px; height: auto; padding: 6px 0; }
  .hero-content { padding: 30px 0 45px; }
  .hero-counter-item { padding: 8px 18px; }
  .event-card { flex-direction: column; }
  .event-card .ec-date { width: 100%; height: 60px; flex-direction: row; gap: 6px; padding: 10px 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .about-img-badge { right: 0; bottom: -20px; }
  .section-head { margin-bottom: 40px; }
}

@media (max-width: 575px) {
  .hero h1 { font-size: 2rem; }
  .hero-counter-inner { flex-direction: column; align-items: stretch; }
  .hero-counter-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); justify-content: center; }
  .hero-counter-item:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .btn-lg { padding: 14px 24px; font-size: 15px; }
}
