/* ── Home Page Specific Styles ── */

/* Hero Slider */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
}

/* Slider wrapper fills entire hero */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Each slide is stacked */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Full-cover banner image (image-only slides) */
.hero-banner-img,
picture.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

picture.hero-banner-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Background image with zoom */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(18, 71, 38, .85) 0%,
      rgba(27, 107, 58, .65) 50%,
      rgba(18, 71, 38, .90) 100%);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 20px 100px;
}

/* Content entrance animation when slide activates */
.hero-slide.active .hero-badge {
  animation: contentIn 0.6s 0.05s ease both;
}

.hero-slide.active .hero-title {
  animation: contentIn 0.6s 0.15s ease both;
}

.hero-slide.active .hero-sub {
  animation: contentIn 0.6s 0.25s ease both;
}

.hero-slide.active .hero-actions {
  animation: contentIn 0.6s 0.35s ease both;
}

.hero-slide.active .hero-stats,
.hero-slide.active .hero-partner-grid {
  animation: contentIn 0.6s 0.45s ease both;
}

@keyframes contentIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 28px;
}

.hero-badge i {
  color: var(--gold-light);
}

.hero-title {
  color: var(--white);
  line-height: 1.18;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, .85);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-family: var(--font-body);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

/* Stats bar (Slide 1) */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  align-items: stretch;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .2), inset 0 0 0 1px rgba(255, 255, 255, .05);
  border-radius: var(--radius-md);
  max-width: 680px;
  margin: 0 auto;
  overflow: hidden;
}

.hstat {
  flex: 1;
  min-width: 100px;
  padding: 20px 16px;
  text-align: center;
}

.hstat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.hstat-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.3;
}

.hstat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .15);
  align-self: stretch;
}

/* Partner cards grid (Slide 2) */
.hero-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  justify-content: center;
  margin-bottom: 8px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  min-width: 155px;
  transition: all 0.3s ease;
  cursor: default;
}

.hero-partner-card:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-5px);
  border-color: rgba(245, 200, 66, .5);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
}

.hero-partner-card i {
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.hero-partner-card strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.hero-partner-card span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, .75);
  text-align: center;
  line-height: 1.4;
  max-width: 130px;
}

/* Navigation arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider-arrow:hover {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .5);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.hero-slider-prev {
  left: 28px;
}

.hero-slider-next {
  right: 28px;
}

/* Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 76px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: all 0.35s ease;
}

.hero-slider-dot.active {
  width: 36px;
  border-radius: 5px;
  background: var(--gold-light);
}

/* Progress bar */
.hero-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, .12);
  z-index: 20;
}

.hero-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-accent), var(--gold-light));
  width: 0%;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .7), transparent);
  margin: 0 auto;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(.6);
    opacity: .5;
  }
}

/* ── Hero Responsive ── */

/* Slide 2 action spacing (Desktop) */
#heroSlide1 .hero-actions {
  margin-top: 28px;
  margin-bottom: 0;
}

/* Hide scrollbars inside individual slides */
.hero-slide {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.hero-slide::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, and Opera */
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-content {
    padding: 110px 28px 80px;
  }

  .hero-partner-card {
    padding: 18px 16px;
    min-width: 130px;
  }

  .hero-partner-grid {
    max-width: 620px;
  }

  #heroSlide1 .hero-actions {
    margin-top: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  /* Hero takes full viewport */
  #hero {
    height: 100svh;
    min-height: 480px;
    contain: paint;
    overflow: hidden;
  }

  .hero-slider-arrow {
    display: none;
  }

  /* Slider and slides: keep absolute stack so .hero-banner-img fills correctly */
  .hero-slider {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slide.active {
    display: flex;
  }

  /*
   * Top padding = actual navbar height (JS-measured) + 6px gap
   * Bottom padding = dots zone (~44px) + progress bar (3px) + breathing room
   */
  .hero-content {
    padding: calc(var(--navbar-height, 88px) + 6px) 16px 68px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Badge */
  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 10px;
  }

  /* Title */
  .hero-title {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
    margin-bottom: 8px;
  }

  /* Subtitle */
  .hero-sub {
    font-size: 0.87rem;
    margin-bottom: 14px;
    max-width: 100%;
    line-height: 1.65;
  }

  /* Buttons — stack vertically, full-width pill */
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 11px 20px;
    font-size: 0.9rem;
  }

  /* Stats: convert to 2×2 grid, hide flex dividers */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    border-radius: 10px;
  }

  .hstat-divider {
    display: none;
  }

  .hstat {
    padding: 10px 8px;
  }

  .hstat:nth-child(1),
  .hstat:nth-child(5) {
    border-right: 1px solid rgba(255, 255, 255, .15);
  }

  .hstat:nth-child(1),
  .hstat:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }

  .hstat-num {
    font-size: 1.35rem;
    margin-bottom: 2px;
  }

  .hstat-label {
    font-size: 0.65rem;
  }

  /* Partner cards — 2×2, compact */
  .hero-partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 100%;
    margin-bottom: 0;
  }

  .hero-partner-card {
    padding: 12px 8px;
    min-width: unset;
  }

  .hero-partner-card i {
    font-size: 1.15rem;
    margin-bottom: 1px;
  }

  .hero-partner-card strong {
    font-size: 0.85rem;
  }

  .hero-partner-card span {
    font-size: 0.68rem;
    max-width: 100%;
  }

  /* Slide 2 action buttons margin */
  #heroSlide1 .hero-actions {
    margin-top: 12px;
    margin-bottom: 0;
  }

  /* Dots & scroll indicator — sit above the progress bar */
  .hero-slider-dots {
    bottom: 22px;
  }

  .hero-progress-bar {
    height: 3px;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
  #hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: calc(var(--navbar-height, 84px) + 4px) 14px 64px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    margin-bottom: 8px;
  }

  .hero-title {
    font-size: clamp(1.25rem, 7vw, 1.55rem);
    margin-bottom: 6px;
  }

  .hero-sub {
    font-size: 0.82rem;
    margin-bottom: 12px;
  }

  .hero-actions .btn {
    max-width: 100%;
    font-size: 0.85rem;
    padding: 10px 16px;
  }

  .hero-partner-grid {
    gap: 6px;
  }

  .hero-partner-card {
    padding: 10px 6px;
  }

  .hero-partner-card strong {
    font-size: 0.78rem;
  }

  .hero-partner-card i {
    font-size: 0.95rem;
  }

  .hero-partner-card span {
    font-size: 0.63rem;
  }
}

/* About Intro */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.ai-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
}

.ai-blob {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 107, 58, .12), rgba(212, 160, 23, .08));
  animation: float 5s ease-in-out infinite;
}

.ai-logo-display {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(27, 107, 58, .25));
  animation: float 5s ease-in-out infinite;
}

.ai-stats-cards {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-stat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: .82rem;
  min-width: 200px;
}

.ai-stat-card strong {
  display: block;
  color: var(--text-dark);
  font-weight: 700;
}

.ai-stat-card span {
  color: var(--text-medium);
  line-height: 1.3;
}

.ai-stat-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--green-primary);
  width: 32px;
  text-align: center;
}

/* Focus Grid */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.focus-card {
  padding: 0;
  overflow: hidden;
}

.focus-card-top {
  height: 6px;
  background: linear-gradient(135deg, rgba(27, 107, 58, .2), rgba(27, 107, 58, .4));
}

.focus-card-body {
  padding: 32px;
}

.focus-card h3 {
  margin: 12px 0 12px;
  font-size: 1.15rem;
}

/* Why Grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.02rem;
}

.why-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Partners & Products Marquee Scrolling Banners */
.marquee-container {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.marquee-track-left {
  animation: scroll-left 45s linear infinite;
}

.marquee-track-right {
  animation: scroll-right 45s linear infinite;
}

/* Pause animation on hover */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Card Styling inside marquee */
.partner-marquee-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  min-width: 240px;
  background: var(--white);
  border: 1px solid rgba(27, 107, 58, 0.15);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.partner-marquee-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
}

.partner-logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.03em;
}

.product-marquee-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.product-marquee-card i {
  color: var(--gold-accent);
}

.product-marquee-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-accent);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

/* Vision Forward */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.vision-item {
  padding: 32px 20px;
  text-align: center;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: var(--transition);
}

.vision-item:hover {
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.vision-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-primary);
  opacity: .2;
  margin-bottom: 12px;
  line-height: 1;
}

.vision-item:hover .vision-number {
  opacity: .8;
}

.vision-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.vision-item p {
  font-size: .88rem;
}

/* CTA */
.cta-section {
  padding: 80px 0;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-text {
  flex: 1;
  min-width: 280px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .vision-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ai-visual {
    order: -1;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-stats {
    grid-template-columns: 1fr 1fr;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .vision-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    max-width: 100%;
  }

  .hstat-divider {
    display: none;
  }

  .hstat {
    flex: 0 0 50%;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .ai-stats-cards {
    position: static;
    margin-top: 20px;
  }

  .ai-img-wrap {
    height: auto;
  }

  .why-stats {
    grid-template-columns: 1fr;
  }
}

/* ── Loan Forms Section ── */
.loan-forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.loan-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(27, 107, 58, .08);
  border: 1.5px solid rgba(27, 107, 58, .1);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.loan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light, #4ade80));
  border-radius: 20px 20px 0 0;
}

.loan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(27, 107, 58, .18);
  border-color: rgba(27, 107, 58, .3);
}

/* Gold variant top bar */
.loan-card:has(.loan-card-icon--gold)::before {
  background: linear-gradient(90deg, var(--gold-accent, #D4A017), var(--gold-light, #F5C842));
}

.loan-card:has(.loan-card-icon--gold) {
  border-color: rgba(212, 160, 23, .15);
  box-shadow: 0 4px 24px rgba(212, 160, 23, .08);
}

.loan-card:has(.loan-card-icon--gold):hover {
  box-shadow: 0 20px 48px rgba(212, 160, 23, .18);
  border-color: rgba(212, 160, 23, .35);
}

/* Icon */
.loan-card-icon-wrap {
  margin-bottom: 20px;
}

.loan-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27, 107, 58, .12), rgba(27, 107, 58, .06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--green-primary);
  box-shadow: 0 4px 12px rgba(27, 107, 58, .12);
  transition: transform .3s ease;
}

.loan-card:hover .loan-card-icon {
  transform: scale(1.08) rotate(-4deg);
}

.loan-card-icon--gold {
  background: linear-gradient(135deg, rgba(212, 160, 23, .15), rgba(212, 160, 23, .06));
  color: var(--gold-accent, #D4A017);
  box-shadow: 0 4px 12px rgba(212, 160, 23, .15);
}

/* Sub-badge */
.loan-card-badge {
  display: inline-flex;
  align-items: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-primary);
  background: rgba(27, 107, 58, .08);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 14px;
  width: fit-content;
}

.loan-card-badge--gold {
  color: var(--gold-accent, #D4A017);
  background: rgba(212, 160, 23, .1);
}

/* Title */
.loan-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 14px;
}

/* Description */
.loan-card-desc {
  font-size: .93rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 22px;
}

/* Features list */
.loan-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loan-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-medium);
}

.loan-card-features li i {
  color: var(--green-primary);
  font-size: .95rem;
  flex-shrink: 0;
}

.loan-card:has(.loan-card-icon--gold) .loan-card-features li i {
  color: var(--gold-accent, #D4A017);
}

/* Download button */
.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light, #1d8a4e));
  color: var(--white);
  font-size: .97rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  box-shadow: 0 6px 20px rgba(27, 107, 58, .3);
  position: relative;
  overflow: hidden;
}

.btn-download::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background .25s ease;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(27, 107, 58, .4);
  filter: brightness(1.06);
}

.btn-download:active {
  transform: translateY(0);
}

.loan-btn-arrow {
  margin-left: auto;
  transition: transform .3s ease;
}

.btn-download:hover .loan-btn-arrow {
  transform: translateY(3px);
}

/* Gold download button */
.btn-download--gold {
  background: linear-gradient(135deg, var(--gold-accent, #D4A017), #e8b520);
  color: #3a2900;
  box-shadow: 0 6px 20px rgba(212, 160, 23, .3);
}

.btn-download--gold:hover {
  box-shadow: 0 10px 28px rgba(212, 160, 23, .45);
}

/* Responsive */
@media (max-width: 768px) {
  .loan-forms-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .loan-card {
    padding: 32px 24px;
  }
}

/* ═══════════════════════════════════════════════════════
   Projects Showcase Section
═══════════════════════════════════════════════════════ */
.projects-showcase {
  background: linear-gradient(180deg, #f7fbf8 0%, #fff 60%, #f7fbf8 100%);
  position: relative;
  overflow: hidden;
}

.projects-showcase::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 107, 58, .05) 0%, transparent 70%);
  pointer-events: none;
}

.projects-heading {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Grid ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

/* ── Card base ── */
.proj-card {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid rgba(27, 107, 58, .09);
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1),
    box-shadow .35s ease,
    border-color .35s ease;

  /* Scroll-popup initial state */
  opacity: 0;
  transform: translateY(48px) scale(0.93);
}

/* When card is visible (added by JS) */
.proj-card.proj-visible {
  animation: proj-popup 0.65s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

@keyframes proj-popup {
  from {
    opacity: 0;
    transform: translateY(48px) scale(0.93);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Staggered delays driven by data-proj-index */
.proj-card[data-proj-index="0"] {
  animation-delay: 0ms;
}

.proj-card[data-proj-index="1"] {
  animation-delay: 60ms;
}

.proj-card[data-proj-index="2"] {
  animation-delay: 120ms;
}

.proj-card[data-proj-index="3"] {
  animation-delay: 180ms;
}

.proj-card[data-proj-index="4"] {
  animation-delay: 0ms;
}

.proj-card[data-proj-index="5"] {
  animation-delay: 60ms;
}

.proj-card[data-proj-index="6"] {
  animation-delay: 120ms;
}

.proj-card[data-proj-index="7"] {
  animation-delay: 180ms;
}

.proj-card[data-proj-index="8"] {
  animation-delay: 0ms;
}

.proj-card[data-proj-index="9"] {
  animation-delay: 60ms;
}

.proj-card[data-proj-index="10"] {
  animation-delay: 120ms;
}

.proj-card[data-proj-index="11"] {
  animation-delay: 180ms;
}

.proj-card[data-proj-index="12"] {
  animation-delay: 0ms;
}

.proj-card[data-proj-index="13"] {
  animation-delay: 60ms;
}

.proj-card[data-proj-index="14"] {
  animation-delay: 120ms;
}

.proj-card[data-proj-index="15"] {
  animation-delay: 180ms;
}

.proj-card[data-proj-index="16"] {
  animation-delay: 0ms;
}

/* Hover lift */
.proj-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 48px rgba(27, 107, 58, .13);
  border-color: rgba(27, 107, 58, .22);
}

/* Glow accent behind icon */
.proj-card-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--icon-bg, rgba(27, 107, 58, .08)) 0%, transparent 70%);
  pointer-events: none;
  transition: transform .4s ease;
}

.proj-card:hover .proj-card-glow {
  transform: scale(1.4);
}

/* Icon */
.proj-card-icon-wrap {
  margin-bottom: 16px;
}

.proj-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--icon-bg, rgba(27, 107, 58, .10));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--icon-color, #1B6B3A);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--icon-color, #1B6B3A) 20%, transparent);
  transition: transform .3s ease, box-shadow .3s ease;
}

.proj-card:hover .proj-card-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--icon-color, #1B6B3A) 30%, transparent);
}

/* Content */
.proj-card-content {
  flex: 1;
}

.proj-card-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--icon-color, #1B6B3A);
  background: var(--icon-bg, rgba(27, 107, 58, .09));
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.proj-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark, #1a1a1a);
  margin-bottom: 8px;
  line-height: 1.35;
}

.proj-card-desc {
  font-size: .85rem;
  color: var(--text-medium, #5a5a5a);
  line-height: 1.7;
}

/* Footer link */
.proj-card-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(27, 107, 58, .07);
}

.proj-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .87rem;
  font-weight: 700;
  color: var(--icon-color, #1B6B3A);
  text-decoration: none;
  transition: gap .25s ease, opacity .25s ease;
}

.proj-card-link:hover {
  gap: 10px;
  opacity: .8;
}

.proj-card-link i {
  font-size: .75rem;
  transition: transform .25s ease;
}

.proj-card-link:hover i {
  transform: translateX(2px);
}

/* CTA */
.projects-cta {
  text-align: center;
  margin-top: 52px;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .proj-card {
    padding: 22px 18px 16px;
  }
}

/* ═══════════════════════════════════════════════════════
   Impact Stats Banner
═══════════════════════════════════════════════════════ */
.impact-stats-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2614 0%, #124726 45%, #1B6B3A 100%);
}

/* Decorative mesh / radial glow */
.impact-stats-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(245, 200, 66, .07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(27, 107, 58, .25) 0%, transparent 60%);
  pointer-events: none;
}

.impact-stats-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Grid */
.impact-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Each stat item */
.impact-stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 40px;
  text-align: left;
}

/* Icon ring */
.impact-stat-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(245, 200, 66, .35);
  background: rgba(245, 200, 66, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-light, #F5C842);
  flex-shrink: 0;
  box-shadow:
    0 0 0 6px rgba(245, 200, 66, .06),
    0 8px 28px rgba(0, 0, 0, .25);
  transition: transform .35s ease, box-shadow .35s ease;
}

.impact-stat-item:hover .impact-stat-icon-ring {
  transform: scale(1.1);
  box-shadow:
    0 0 0 10px rgba(245, 200, 66, .08),
    0 12px 32px rgba(0, 0, 0, .3);
}

/* Body */
.impact-stat-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Big counter number */
.impact-stat-num {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--gold-light, #F5C842);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(245, 200, 66, .3);
  display: block;
}

/* Label */
.impact-stat-label {
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .02em;
  display: block;
  margin-top: 6px;
}

/* Vertical divider */
.impact-stat-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .18), transparent);
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .impact-stats-grid {
    flex-direction: column;
    gap: 0;
  }

  .impact-stat-item {
    width: 100%;
    padding: 28px 24px;
    justify-content: flex-start;
    max-width: 400px;
    margin: 0 auto;
  }

  .impact-stat-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, .18), transparent);
  }
}

@media (max-width: 480px) {
  .impact-stat-icon-ring {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }

  .impact-stat-item {
    gap: 18px;
    padding: 24px 20px;
  }
}

/* ═══════════════════════════════════════════════════════
   Chairman's Message Section
═══════════════════════════════════════════════════════ */
.chairman-section {
  background: var(--white, #fff);
}

/* Two-column layout */
.chairman-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
}

/* ── Left column: photo ── */
.chairman-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.chairman-photo-wrap {
  position: relative;
  width: 280px;
  height: 320px;
}

/* Main photo */
.chairman-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 60px rgba(27, 107, 58, .18), 0 4px 16px rgba(0, 0, 0, .08);
}

/* Decorative offset ring */
.chairman-photo-ring {
  position: absolute;
  inset: -10px;
  border-radius: 30px;
  border: 2px solid rgba(27, 107, 58, .18);
  z-index: 1;
  background: linear-gradient(135deg, rgba(27, 107, 58, .06), rgba(245, 200, 66, .04));
}

/* Quote badge floating on photo */
.chairman-photo-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary, #1B6B3A), #124726);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light, #F5C842);
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(27, 107, 58, .35);
}

/* Name card below photo */
.chairman-name-card {
  text-align: center;
  background: linear-gradient(135deg, #f7fbf8, #fff);
  border: 1.5px solid rgba(27, 107, 58, .12);
  border-radius: 14px;
  padding: 16px 28px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(27, 107, 58, .07);
}

.chairman-name {
  display: block;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark, #1a1a1a);
  letter-spacing: .01em;
}

.chairman-role {
  display: block;
  font-size: .85rem;
  color: var(--green-primary, #1B6B3A);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .75rem;
}

/* ── Right column: message ── */
.chairman-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 24px;
  margin-top: 8px;
  line-height: 1.25;
}

.highlight-green {
  color: var(--green-primary, #1B6B3A);
}

.chairman-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.chairman-body p {
  font-size: .97rem;
  line-height: 1.85;
  color: var(--text-medium, #555);
}

/* Pull-quote */
.chairman-quote {
  position: relative;
  background: linear-gradient(135deg, rgba(27, 107, 58, .05), rgba(245, 200, 66, .05));
  border-left: 4px solid var(--green-primary, #1B6B3A);
  border-radius: 0 12px 12px 0;
  padding: 18px 24px 18px 52px;
  margin: 0 0 32px 0;
  font-size: 1.08rem;
  font-weight: 700;
  font-style: italic;
  color: var(--green-primary, #1B6B3A);
  line-height: 1.5;
}

.chairman-quote-icon {
  position: absolute;
  left: 16px;
  top: 18px;
  font-size: 1.2rem;
  color: var(--gold-accent, #D4A017);
  opacity: .7;
}

/* Signature */
.chairman-sign {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.chairman-sign-line {
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green-primary, #1B6B3A), var(--gold-accent, #D4A017));
  flex-shrink: 0;
}

.chairman-sign-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark, #1a1a1a);
  font-family: var(--font-heading, 'Outfit', sans-serif);
}

.chairman-sign-text span {
  font-size: .82rem;
  color: var(--text-medium, #666);
  letter-spacing: .03em;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .chairman-grid {
    grid-template-columns: 300px 1fr;
    gap: 48px;
  }

  .chairman-photo-wrap {
    width: 240px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .chairman-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .chairman-photo-col {
    position: static;
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
  }

  .chairman-photo-wrap {
    width: 140px;
    height: 160px;
    flex-shrink: 0;
  }

  .chairman-name-card {
    text-align: left;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .chairman-photo-col {
    flex-direction: column;
    align-items: center;
  }

  .chairman-photo-wrap {
    width: 200px;
    height: 230px;
  }

  .chairman-name-card {
    text-align: center;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════
   Upcoming Projects Section
═══════════════════════════════════════════════════════ */
.upcoming-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071a0e 0%, #0d3318 50%, #124726 100%);
}

/* Animated radial glow layers */
.upcoming-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 15% 40%, rgba(245, 200, 66, .06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 55% at 85% 60%, rgba(27, 107, 58, .20) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(0, 137, 123, .08) 0%, transparent 60%);
  pointer-events: none;
}

/* Stars-like dot texture */
.upcoming-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Grid: 3 equal columns */
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}

/* ── Card ── */
.upcoming-card {
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s ease, border-color .35s ease;
}

.upcoming-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F59E0B, #F5C842);
  border-radius: 20px 20px 0 0;
}

.upcoming-card:nth-child(2)::before {
  background: linear-gradient(90deg, #0D9488, #34D399);
}

.upcoming-card:nth-child(3)::before {
  background: linear-gradient(90deg, #7C3AED, #A78BFA);
}

.upcoming-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, .4);
  border-color: rgba(255, 255, 255, .2);
}

/* Diagonal ribbon */
.upcoming-ribbon {
  position: absolute;
  top: 20px;
  right: -28px;
  background: linear-gradient(135deg, #F59E0B, #F5C842);
  color: #3a2000;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 36px;
  transform: rotate(35deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
  z-index: 2;
}

.upcoming-ribbon--teal {
  background: linear-gradient(135deg, #0D9488, #34D399);
  color: #002b28;
}

.upcoming-ribbon--violet {
  background: linear-gradient(135deg, #7C3AED, #A78BFA);
  color: #1a0050;
}

/* Card inner (padded content) */
.upcoming-card-inner {
  padding: 32px 28px 20px;
  flex: 1;
}

/* Icon */
.upcoming-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--up-bg, rgba(245, 127, 23, .15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: var(--up-color, #F57F17);
  margin-bottom: 20px;
  box-shadow: 0 4px 18px color-mix(in srgb, var(--up-color, #F57F17) 25%, transparent);
  transition: transform .3s ease;
}

.upcoming-card:hover .upcoming-icon-wrap {
  transform: scale(1.1) rotate(-6deg);
}

.upcoming-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
}

.upcoming-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  margin-bottom: 22px;
}

/* Feature list */
.upcoming-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.upcoming-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: rgba(255, 255, 255, .75);
}

.upcoming-features li i {
  color: var(--up-color, #F57F17);
  font-size: .9rem;
  flex-shrink: 0;
}

/* Footer */
.upcoming-footer {
  padding: 16px 28px 20px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.upcoming-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #F5C842;
  background: rgba(245, 200, 66, .12);
  border: 1px solid rgba(245, 200, 66, .25);
  border-radius: 100px;
  padding: 5px 14px;
}

.upcoming-status-pill--teal {
  color: #34D399;
  background: rgba(52, 211, 153, .12);
  border-color: rgba(52, 211, 153, .25);
}

.upcoming-status-pill--violet {
  color: #A78BFA;
  background: rgba(167, 139, 250, .12);
  border-color: rgba(167, 139, 250, .25);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .upcoming-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .upcoming-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .upcoming-card-inner {
    padding: 28px 20px 16px;
  }

  .upcoming-footer {
    padding: 14px 20px 18px;
  }
}

/* ═══════════════════════════════════════════════════════
   Events Section Styles
   ═══════════════════════════════════════════════════════ */
#events-section {
  position: relative;
  z-index: 1;
}

.event-featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .03);
  border: 1px solid rgba(27, 107, 58, .06);
  margin-top: 40px;
}

.event-details-col {
  display: flex;
  flex-direction: column;
}

.event-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

.event-meta span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}

.event-meta i {
  color: var(--gold-accent);
}

.event-title {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.event-desc {
  font-size: 0.96rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 16px;
}

.event-highlights {
  margin-top: 24px;
  border-top: 1px dashed var(--border-light);
  padding-top: 24px;
}

.highlights-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.highlights-list li i {
  color: var(--green-primary);
  font-size: 1.05rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.event-gallery-col {
  display: flex;
  align-items: center;
}

.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  width: 100%;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(.16, 1, .3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  border: 2px solid transparent;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.16, 1, .3, 1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 107, 58, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.gallery-item-overlay i {
  color: var(--white);
  font-size: 1.8rem;
  transform: scale(0.7);
  transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover effects */
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-primary);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-item-overlay i {
  transform: scale(1);
}

/* ── Lightbox Modal ── */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 12, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: zoom-out;
}

.lightbox-content-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 900px;
  height: 80vh;
  z-index: 1510;
}

.lightbox-image-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
}

.lightbox-image-box img {
  max-width: 100%;
  max-height: 65vh;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  border: 4px solid rgba(255, 255, 255, 0.08);
  object-fit: contain;
  animation: lightboxFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 20px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 500;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 85%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1520;
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

.lightbox-nav:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0 24px rgba(27, 107, 58, 0.45);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1520;
}

.lightbox-close:hover {
  background: #e11d48;
  border-color: #e11d48;
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(225, 29, 72, 0.4);
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── Events Responsive Adjustments ── */
@media (max-width: 1024px) {
  .event-featured-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px;
  }

  .lightbox-prev {
    left: 16px;
  }

  .lightbox-next {
    right: 16px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
  }

  .lightbox-content-wrap {
    height: 70vh;
  }
}

@media (max-width: 600px) {
  .event-featured-card {
    padding: 24px;
    gap: 28px;
    margin-top: 24px;
  }

  .event-gallery-grid {
    gap: 12px;
  }

  .event-meta {
    flex-direction: column;
    gap: 8px;
  }

  .event-title {
    font-size: 1.45rem;
    margin-bottom: 14px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}