/*
🖼️ HERO BACKGROUND IMAGE INSTRUCTIONS 🖼️

To add a background image to your hero section, you have 3 options:

1. EASIEST METHOD - CSS Variable:
   - Find "--hero-bg-image" in the :root section below
   - Replace 'your-image-url-here.jpg' with your actual image URL
   - Add class "with-background" to the hero section in HTML

2. DIRECT CSS METHOD:
   - Find the ".hero" class below
   - Replace "background-image: none;" with "background-image: url('your-image.jpg');"

3. CUSTOM CSS METHOD:
   - Add your own CSS rule: .hero { background-image: url('your-image.jpg') !important; }

Your image should be high-resolution (1920x1080 or larger) for best results.
Recommended formats: JPG, PNG, WebP
*/

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

:root {
  --primary-green: #455e4a;
  --accent-green: #7ea83a;
  --light-green: rgba(126, 168, 58, 0.1);
  --gradient-primary: linear-gradient(135deg, #455e4a 0%, #7ea83a 100%);
  --gradient-accent: linear-gradient(135deg, #7ea83a 0%, #a8d373 100%);
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --shadow-light: 0 4px 20px rgba(69, 94, 74, 0.08);
  --shadow-medium: 0 8px 40px rgba(69, 94, 74, 0.12);
  --shadow-heavy: 0 20px 60px rgba(69, 94, 74, 0.15);
  --blur-glass: blur(20px);

  /* 🖼️ HERO BACKGROUND IMAGE CUSTOMIZATION 🖼️ */
  /* Option 1: Add your image URL here, then add "with-background" class to hero section */
  --hero-bg-image: url("Hero section.jpg");
  /* Option 2: Or modify the .hero class below directly */
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
}

/* Advanced Custom Cursor - Desktop Only */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  mix-blend-mode: difference;
  display: none;
}

.cursor.hover {
  transform: scale(2);
  background: var(--accent-green);
  border: none;
}

@media (min-width: 1024px) {
  .cursor {
    display: block;
  }
}

/* Floating geometric shapes - Optimized for performance */
.floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.03;
  animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.shape:nth-child(3) {
  width: 50px;
  height: 50px;
  bottom: 20%;
  left: 60%;
  animation-delay: 10s;
}

.shape:nth-child(4) {
  width: 70px;
  height: 70px;
  top: 30%;
  right: 30%;
  animation-delay: 15s;
}

@media (min-width: 768px) {
  .shape:nth-child(1) {
    width: 100px;
    height: 100px;
  }

  .shape:nth-child(2) {
    width: 150px;
    height: 150px;
  }

  .shape:nth-child(3) {
    width: 80px;
    height: 80px;
  }

  .shape:nth-child(4) {
    width: 120px;
    height: 120px;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) rotate(90deg);
  }

  50% {
    transform: translateY(-40px) rotate(180deg);
  }

  75% {
    transform: translateY(-20px) rotate(270deg);
  }
}

/* Responsive Navigation */
.navbar {
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 12px 20px;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: var(--shadow-medium);
}

@media (min-width: 1024px) {
  .navbar {
    top: 20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-radius: 60px;
    padding: 12px 24px;
    width: auto;
  }
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-heavy);
}

@media (min-width: 1024px) {
  .navbar.scrolled {
    transform: translateX(-50%) translateY(-5px);
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 1.5em;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-img {
    height: 45px;
  }
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    gap: 1.5rem;
  }
}

.nav-menu.mobile-active {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: var(--blur-glass);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 10px;
  box-shadow: var(--shadow-heavy);
  border: 1px solid rgba(255, 255, 255, 0.3);
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
  text-align: center;
}

@media (min-width: 1024px) {
  .nav-link {
    font-size: 0.95rem;
    text-align: left;
  }
}

.nav-link:hover {
  background: var(--light-green);
  color: var(--primary-green);
  transform: translateY(-2px);
}

.nav-link.active {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .nav-actions {
    gap: 1rem;
  }
}

.donate-btn {
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .donate-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.donate-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #25d366;
  transition: left 0.3s ease;
  z-index: -1;
}

.donate-btn:hover::before {
  left: 0;
}

.donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 3px;
  padding: 5px;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--primary-green);
  transition: all 0.3s ease;
  border-radius: 1px;
  transform-origin: 15px 1px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Hero Section */
.hero {
  min-height: 100vh;
  background-image: none;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background: radial-gradient(ellipse at top,
      rgba(126, 168, 58, 0.15) 0%,
      transparent 70%),
    linear-gradient(135deg,
      rgba(69, 94, 74, 0.1) 0%,
      rgba(126, 168, 58, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 0 2rem;
  }
}

/* Enhanced Hero with Background Image - Sophisticated Overlay */
.hero.with-background {
  background: linear-gradient(135deg,
      rgba(26, 26, 26, 0.75) 0%,
      rgba(69, 94, 74, 0.65) 50%,
      rgba(126, 168, 58, 0.55) 100%),
    var(--hero-bg-image);
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* Mobile optimization for background attachment */
@media (max-width: 768px) {

  .hero,
  .hero.with-background {
    background-attachment: scroll;
    /* Better performance on mobile */
    background-position: top center !important;
  }
}

/* Tablet optimization */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero.with-background {
    background-position: top center;
  }
}

/* Additional mobile-specific adjustments for very small screens */
@media (max-width: 480px) {
  .hero.with-background {
    background-size: cover;
    background-position: center top;
    min-height: 100vh;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 20%,
      rgba(126, 168, 58, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(69, 94, 74, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 40% 60%,
      rgba(126, 168, 58, 0.05) 0%,
      transparent 50%);
  animation: rotate 60s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-content {
  max-width: 1000px;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 4rem 2rem;
  }
}

.hero-content h1 {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-content h1 {
    margin-bottom: 2rem;
  }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  line-height: 1.7;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .hero-subtitle {
    margin-bottom: 3rem;
    max-width: 90%;
  }
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

@media (min-width: 768px) {
  .hero-cta-group {
    gap: 1.5rem;
  }
}

.hero-cta-primary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-green);
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-cta-primary {
    padding: 18px 40px;
    font-size: 1.1rem;
    flex: none;
  }
}

.hero-cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.4s ease;
  z-index: -1;
}

.hero-cta-primary:hover::before {
  left: 0;
}

.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  color: white;
}

.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .hero-cta-secondary {
    padding: 18px 40px;
    font-size: 1.1rem;
    flex: none;
  }
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-green);
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Milestone Section */
.milestone-section {
  background: var(--white);
  padding: 4rem 1rem;
  border-bottom: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
  .milestone-section {
    padding: 6rem 2rem;
  }
}

.milestones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .milestones {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.milestone {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(126, 168, 58, 0.1);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .milestone {
    padding: 3rem 2.5rem;
  }
}

.milestone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.milestone:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.milestone-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.milestone-text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-medium);
  font-weight: 600;
}

/* Responsive Section Layouts */
.section {
  padding: 4rem 1rem;
  position: relative;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 2rem;
  }
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 5rem;
  }
}

.section-header::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

@media (min-width: 768px) {
  .section-header::before {
    top: -2rem;
    width: 60px;
    height: 4px;
  }
}

.section-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    margin-bottom: 1.5rem;
  }
}

.section-subtitle {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.6;
}

/* Responsive About Section */
.about {
  background: linear-gradient(135deg,
      var(--gray-50) 0%,
      rgba(126, 168, 58, 0.02) 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
  }
}

.about-text h3 {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
}

@media (min-width: 768px) {
  .about-text h3 {
    margin-bottom: 1.5rem;
  }
}

.about-text h3::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

@media (min-width: 768px) {
  .about-text h3::after {
    width: 40px;
    height: 3px;
  }
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .about-text p {
    margin-bottom: 2rem;
    line-height: 1.8;
  }
}

.about-visual {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transition: all 0.4s ease;
  background: var(--gray-100);
}

@media (min-width: 768px) {
  .about-visual {
    height: 400px;
    border-radius: 25px;
  }
}

@media (min-width: 1024px) {
  .about-visual {
    height: 500px;
    border-radius: 30px;
  }
}

.about-visual:hover {
  transform: translateY(-5px);
}

@media (min-width: 1024px) {
  .about-visual:hover {
    transform: translateY(-10px) rotate(2deg);
  }
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-visual:hover .founder-image {
  transform: scale(1.05);
}

.founder-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(69, 94, 74, 0.9));
  color: white;
  padding: 2rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

@media (min-width: 768px) {
  .founder-overlay {
    padding: 2.5rem;
  }
}

.about-visual:hover .founder-overlay {
  transform: translateY(0);
}

.founder-overlay h4 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.founder-overlay p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  margin: 0;
}

/* Book Consultation CTA Section */
.cta-section {
  margin-top: 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-section {
    margin-top: 5rem;
  }
}

.book-consultation-btn {
  background: var(--gradient-primary);
  color: white;
  padding: 18px 48px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: var(--shadow-medium);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .book-consultation-btn {
    padding: 20px 60px;
    font-size: 1.2rem;
  }
}

.book-consultation-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transition: left 0.3s ease;
  z-index: -1;
}

.book-consultation-btn:hover::before {
  left: 0;
}

.book-consultation-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

/* Events Section with Editable Images */
.events {
  background: linear-gradient(135deg,
      var(--gray-50) 0%,
      rgba(126, 168, 58, 0.02) 100%);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Gallery CTA Section */
.gallery-cta-section {
  margin-top: 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .gallery-cta-section {
    margin-top: 5rem;
  }
}

.gallery-cta-btn {
  background: var(--gradient-accent);
  color: white;
  padding: 18px 48px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: var(--shadow-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .gallery-cta-btn {
    padding: 20px 60px;
    font-size: 1.2rem;
    gap: 1rem;
  }
}

.gallery-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-green);
  transition: left 0.3s ease;
  z-index: -1;
}

.gallery-cta-btn:hover::before {
  left: 0;
}

.gallery-cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.event-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 1px solid rgba(126, 168, 58, 0.1);
  position: relative;
}

@media (min-width: 768px) {
  .event-card {
    border-radius: 25px;
  }
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.event-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .event-image {
    height: 220px;
  }
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(69, 94, 74, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(10px);
}

.event-content {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .event-content {
    padding: 2rem;
  }
}

.event-title {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.event-date,
.event-location {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-date i,
.event-location i {
  color: var(--accent-green);
  width: 16px;
}

.event-link {
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.event-link:hover {
  background: var(--accent-green);
  transform: translateY(-2px);
}

/* Partners Showcase Section */
.partners-showcase {
  background: linear-gradient(135deg,
      var(--gray-50) 0%,
      rgba(126, 168, 58, 0.02) 100%);
  position: relative;
}

.partners-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .partners-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .partners-showcase-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.partner-showcase-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 1px solid rgba(126, 168, 58, 0.1);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .partner-showcase-card {
    padding: 3rem 2.5rem;
    border-radius: 25px;
  }
}

.partner-showcase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.03;
  transition: left 0.4s ease;
  z-index: 1;
}

.partner-showcase-card:hover::before {
  left: 0;
}

.partner-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.partner-logo-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: var(--gray-100);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

@media (min-width: 768px) {
  .partner-logo-container {
    width: 140px;
    height: 140px;
    border-radius: 18px;
  }
}

.partner-showcase-card:hover .partner-logo-container {
  transform: scale(1.05);
}

.partner-logo-img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.partner-showcase-card:hover .partner-logo-img {
  transform: scale(1.1);
}

.partner-name {
  color: var(--primary-green);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.partner-description {
  color: var(--text-medium);
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* Partner logo error handling */
.partner-logo-img[src=""],
.partner-logo-img:not([src]) {
  display: none;
}

.partner-logo-img[src=""]:after,
.partner-logo-img:not([src]):after {
  content: "Logo";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  border-radius: 8px;
}

/* Responsive Contact Section */
.contact {
  background: linear-gradient(135deg,
      var(--gray-50) 0%,
      rgba(126, 168, 58, 0.03) 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
  }
}

.contact-info h3 {
  color: var(--primary-green);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .contact-info h3 {
    margin-bottom: 3rem;
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid rgba(126, 168, 58, 0.1);
}

@media (min-width: 768px) {
  .contact-item {
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 20px;
  }
}

.contact-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-medium);
}

@media (min-width: 1024px) {
  .contact-item:hover {
    transform: translateX(10px);
  }
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .contact-item-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    font-size: 1.5rem;
    margin-right: 1.5rem;
  }
}

.contact-item-content {
  flex: 1;
}

.contact-item-content strong {
  color: var(--primary-green);
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

@media (min-width: 768px) {
  .contact-item-content strong {
    margin-bottom: 0.5rem;
  }
}

.contact-item-content span {
  color: var(--text-medium);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  line-height: 1.4;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1.5rem;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: var(--shadow-medium);
}

@media (min-width: 768px) {
  .whatsapp-btn {
    padding: 1.5rem 2.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    gap: 1rem;
    margin-top: 2rem;
  }
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

/* Responsive Contact Form */
.contact-form {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 25px;
  box-shadow: var(--shadow-heavy);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126, 168, 58, 0.1);
}

@media (min-width: 768px) {
  .contact-form {
    padding: 2.5rem 2rem;
    border-radius: 30px;
  }
}

@media (min-width: 1024px) {
  .contact-form {
    padding: 3rem;
  }
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
}

@media (min-width: 768px) {
  .contact-form::before {
    height: 4px;
  }
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .form-group {
    margin-bottom: 2rem;
  }
}

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

@media (min-width: 768px) {
  .form-group label {
    margin-bottom: 0.8rem;
  }
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid rgba(126, 168, 58, 0.2);
  border-radius: 12px;
  font-family: inherit;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  transition: all 0.3s ease;
  background: var(--gray-50);
}

@media (min-width: 768px) {

  .form-group input,
  .form-group textarea {
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
  }
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  background: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

@media (min-width: 768px) {
  .form-group textarea {
    height: 150px;
  }
}

.form-submit {
  background: var(--gradient-primary);
  color: white;
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 768px) {
  .form-submit {
    padding: 1.5rem 3rem;
    border-radius: 25px;
    font-size: 1.1rem;
  }
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.form-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transition: left 0.3s ease;
  z-index: -1;
}

.form-submit:hover::before {
  left: 0;
}

/* Professional Footer */
.footer {
  background: var(--text-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    padding: 5rem 0 3rem;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    padding: 6rem 0 3rem;
  }
}

/* Footer Brand Section */
.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-brand h3 {
    font-size: 1.8rem;
  }
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--accent-green);
  width: 16px;
}

/* Footer Navigation */
.footer-nav h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 0.8rem;
}

.footer-nav ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-nav ul li a:hover {
  color: var(--accent-green);
  transform: translateX(5px);
}

/* Footer Social Section */
.footer-social h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: var(--accent-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(126, 168, 58, 0.3);
}

.footer-legal {
  margin-bottom: 2rem;
}

.legal-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: var(--accent-green);
}

.divider {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-donate-btn {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.footer-donate-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #25d366;
  transition: left 0.3s ease;
  z-index: -1;
}

.footer-donate-btn:hover::before {
  left: 0;
}

.footer-donate-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
}

.footer-bottom-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-tagline {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Optimized smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
.loading {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Performance optimizations */
* {
  will-change: auto;
}

.service-card,
.event-card,
.contact-item,
.milestone {
  will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================
   REDESIGN ENHANCEMENT LAYER
   ============================================= */

/* ── Poppins font supplement ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&display=swap');

/* ── Global spacing tightening ── */
.section {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.875rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* =============================================
   SCROLL FADE-IN ANIMATION
   ============================================= */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up:nth-child(1) { transition-delay: 0s; }
.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.3s; }
.fade-in-up:nth-child(5) { transition-delay: 0.4s; }
.fade-in-up:nth-child(6) { transition-delay: 0.5s; }
.fade-in-up:nth-child(7) { transition-delay: 0.15s; }
.fade-in-up:nth-child(8) { transition-delay: 0.25s; }
.fade-in-up:nth-child(9) { transition-delay: 0.35s; }

/* =============================================
   MILESTONE SECTION — REDESIGNED
   ============================================= */
.milestone-section {
  background: var(--gradient-primary);
  padding: 4rem 0;
}
.milestones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 480px) {
  .milestones {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.milestone {
  padding: 1.5rem;
  background: transparent;
  box-shadow: none;
  border: none;
}
.milestone-number {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 900;
  color: white;
  /* Reset gradient-clip text from earlier rule so white is visible on gradient bg */
  -webkit-text-fill-color: white;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.milestone-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   ABOUT SECTION — REDESIGNED
   ============================================= */
.about {
  background: var(--white);
}
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.about-text h3 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1.75rem;
  margin-bottom: 0.625rem;
}
.about-text h3:first-child {
  margin-top: 0;
}
.about-text p {
  font-size: 0.975rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 0;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}
.about-stat {
  text-align: center;
  padding: 0.75rem 0.25rem;
}
.about-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
.about-stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-visual {
  position: relative;
}
.founder-image {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  max-height: 520px;
  box-shadow: var(--shadow-heavy);
}
.founder-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.founder-overlay h4 {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.founder-overlay p {
  font-size: 0.8rem;
  color: var(--accent-green);
  font-weight: 600;
  margin: 0;
}
.cta-section {
  text-align: center;
  margin-top: 3.5rem;
}
.book-consultation-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 0.975rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(69, 94, 74, 0.3);
}
.book-consultation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(69, 94, 74, 0.4);
}

/* =============================================
   SERVICES SECTION — REDESIGNED CARDS
   ============================================= */
/* =============================================
   SERVICES SECTION — PREMIUM SAAS REDESIGN
   ============================================= */
.services {
  background: #fafafa;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

/* ── Card base ── */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

/* Subtle gradient border on hover using pseudo-element */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(126, 168, 58, 0.4), rgba(69, 94, 74, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(69, 94, 74, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
}
.service-card:hover::after {
  opacity: 1;
}

/* ── Card header row ── */
.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
}

/* ── Icon ── */
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(126, 168, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 1.25rem;
  color: var(--primary-green);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--primary-green);
  transform: scale(1.05);
}

.service-card:hover .service-icon i {
  color: #ffffff;
}

/* ── Number pill ── */
.service-num {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  opacity: 0.6;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  margin-top: 0.25rem;
}

/* ── Title ── */
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary-green);
}

/* ── Body ── */
.service-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin: 0 0 1.5rem;
  flex: 1;
}

/* ── CTA link ── */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s ease;
  position: relative;
  align-self: flex-start;
}

.service-link i {
  font-size: 0.75rem;
  color: var(--accent-green);
  transition: transform 0.3s ease;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.service-card:hover .service-link {
  color: var(--primary-green);
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

.service-card:hover .service-link::after {
  width: 100%;
}

/* ── "New" badge ── */
.service-new-badge {
  position: absolute;
  top: -10px;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(69,94,74,0.2);
}
.service-new-badge i { font-size: 0.6rem; }

/* =============================================
   EVENTS SECTION — REDESIGNED
   ============================================= */
.events {
  background: var(--white);
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .events-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.event-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(69, 94, 74, 0.06);
  border: 1px solid var(--gray-200);
  transition: all 0.35s ease;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(69, 94, 74, 0.14);
}
.event-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--gray-100);
}
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-image img {
  transform: scale(1.06);
}
.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(69, 94, 74, 0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.event-card:hover .event-overlay {
  opacity: 1;
}
.event-overlay i {
  color: white;
  font-size: 1.25rem;
}
.event-content {
  padding: 1.375rem;
}
.event-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.event-date,
.event-location {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.4rem;
}
.event-date i,
.event-location i {
  color: var(--accent-green);
  font-size: 0.78rem;
  width: 14px;
}
.event-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-green);
  text-decoration: none;
  transition: all 0.2s ease;
}
.event-link:hover {
  color: var(--primary-green);
  gap: 0.55rem;
}
.gallery-cta-section {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1rem;
}
.gallery-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.gallery-cta-btn:hover {
  background: var(--accent-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(126, 168, 58, 0.3);
}

/* =============================================
   GALLERY PREVIEW — HOMEPAGE
   ============================================= */
.gallery-preview {
  background: var(--gray-50);
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .gallery-preview {
    padding: 7rem 0;
  }
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .gallery-preview-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .gallery-preview-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
/* Feature tile: first item spans 2 rows */
.gallery-preview-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  display: block;
}
.gallery-preview-item.featured {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-preview-item:hover img {
  transform: scale(1.07);
}
.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(69, 94, 74, 0.82) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.gallery-preview-item:hover .gallery-preview-overlay {
  opacity: 1;
}
.gallery-preview-caption {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}
.gallery-preview-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  opacity: 0;
  transition: all 0.3s ease;
}
.gallery-preview-item:hover .gallery-preview-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.gallery-preview-cta {
  text-align: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: white;
  padding: 0.9rem 2.25rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(69, 94, 74, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(69, 94, 74, 0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: var(--accent-green);
  color: white;
  transform: translateY(-2px);
}

/* =============================================
   CONTACT SECTION — REDESIGNED WITH TEAM CARDS
   ============================================= */
.contact {
  background: var(--gray-50);
}
.contact-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 640px) {
  .contact-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact-team-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(69, 94, 74, 0.06);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(126, 168, 58, 0.25);
}
.contact-team-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.contact-team-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.2rem;
  line-height: 1.2;
}
.contact-team-role {
  font-size: 0.78rem;
  color: var(--accent-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-team-desc {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  padding-top: 0.25rem;
  border-top: 1px solid var(--gray-100);
}
.contact-team-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: auto;
}
.contact-team-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.125rem;
  border-radius: 50px;
  font-size: 0.825rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.contact-team-btn.btn-green {
  background: var(--gradient-primary);
  color: white;
}
.contact-team-btn.btn-green:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(69, 94, 74, 0.3);
}
.contact-team-btn.btn-ghost {
  border-color: var(--gray-200);
  color: var(--text-medium);
}
.contact-team-btn.btn-ghost:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}
.contact-team-btn.btn-whatsapp {
  background: #25D366;
  color: white;
}
.contact-team-btn.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.125rem;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--light-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon i {
  font-size: 0.9rem;
  color: var(--accent-green);
}
.contact-item-content strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.contact-item-content span {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.5;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}
.contact-form {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(69, 94, 74, 0.06);
  border: 1px solid var(--gray-200);
}
@media (min-width: 768px) {
  .contact-form {
    padding: 2.5rem;
  }
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--gray-50);
  transition: all 0.25s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-green);
  background: white;
  box-shadow: 0 0 0 3px rgba(126, 168, 58, 0.1);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.975rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(69, 94, 74, 0.25);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(69, 94, 74, 0.35);
}
.form-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ── Form result banner ── */
.form-result {
  display: none;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.55;
  animation: resultFadeIn 0.3s ease;
}
.form-result:not([hidden]) {
  display: block;
}
@keyframes resultFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-result--success {
  background: rgba(126, 168, 58, 0.1);
  border: 1.5px solid rgba(126, 168, 58, 0.4);
  color: #2e5a1c;
}
.form-result--success::before {
  content: '✓ ';
  font-weight: 800;
}
.form-result--error {
  background: rgba(220, 53, 69, 0.07);
  border: 1.5px solid rgba(220, 53, 69, 0.3);
  color: #8b1a1a;
}
.form-result--error::before {
  content: '⚠ ';
  font-weight: 800;
}

/* ── Field highlight on pre-fill ── */
@keyframes fieldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(126,168,58,0); }
  50%       { box-shadow: 0 0 0 4px rgba(126,168,58,0.25); }
}
.field-highlight {
  border-color: var(--accent-green) !important;
  animation: fieldPulse 0.9s ease 2;
}

/* ── Two-column form row ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.25rem;
}
@media (min-width: 560px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Required asterisk ── */
.form-required {
  color: #c0392b;
  font-size: 0.8rem;
  margin-left: 0.15rem;
  font-weight: 700;
}

/* ── Select dropdown ── */
.form-select-wrap {
  position: relative;
}
.form-select-wrap select {
  width: 100%;
  padding: 0.875rem 2.5rem 0.875rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--gray-50);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.form-select-wrap select:focus {
  border-color: var(--accent-green);
  background: white;
  box-shadow: 0 0 0 3px rgba(126, 168, 58, 0.12);
}
/* Placeholder option styling */
.form-select-wrap select option[disabled] {
  color: #aaa;
}
.form-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 0.75rem;
  pointer-events: none;
  transition: color 0.2s ease;
}
.form-select-wrap:focus-within .form-select-arrow {
  color: var(--accent-green);
}

/* ── Send button icon spacing ── */
.form-submit .btn-text i {
  margin-right: 0.4rem;
}

/* =============================================
   PARTNERS SECTION — IMPROVED
   ============================================= */
.partners-showcase {
  background: white;
}
.partners-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .partners-showcase-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.partner-showcase-card {
  background: var(--gray-50);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
.partner-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(126, 168, 58, 0.2);
  background: white;
}
.partner-logo-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gray-200);
}
.partner-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.partner-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.partner-description {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* =============================================
   GALLERY PAGE — ENHANCED LAYOUT
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(69, 94, 74, 0.08);
  transition: all 0.35s ease;
  border: none;
  background: var(--gray-100);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(69, 94, 74, 0.16);
}
.gallery-image {
  position: absolute;
  inset: 0;
  height: 100%;
}
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover .gallery-image img {
  transform: scale(1.07);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(69, 94, 74, 0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  gap: 0.25rem;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) scale(0.6);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s ease;
}
.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.gallery-overlay-title {
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}
.gallery-overlay-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  line-height: 1.3;
}
/* Remove old caption below image */
.gallery-caption {
  display: none;
}

/* Lightbox — enhanced */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(12px);
  padding: 1rem;
}
.gallery-modal.active {
  display: flex;
}
.gallery-modal-content {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-modal img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  display: block;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.gallery-modal-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}
.gallery-modal-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1);
}
.gallery-modal-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  z-index: 10;
}
.gallery-modal-nav:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%) scale(1.1);
}
.gallery-modal-prev { left: 1.25rem; }
.gallery-modal-next { right: 1.25rem; }
.gallery-modal-caption {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  max-width: 500px;
  background: rgba(0,0,0,0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =============================================
   NAV — add Gallery link active styles
   ============================================= */
.nav-link.gallery-active {
  color: var(--accent-green);
}

/* =============================================
   FOOTER — minor improvements
   ============================================= */
.footer {
  background: var(--text-dark);
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
  }
}
.footer-brand .footer-logo h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}
.footer-description {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact p i {
  color: var(--accent-green);
  font-size: 0.8rem;
  width: 14px;
}
.footer-nav h4,
.footer-social h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav ul li {
  margin-bottom: 0.625rem;
}
.footer-nav ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav ul li a:hover {
  color: var(--accent-green);
}
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}
.social-links a:hover {
  background: var(--accent-green);
  color: white;
  transform: translateY(-2px);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.legal-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}
.legal-link:hover {
  color: var(--accent-green);
}
.divider {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}
.footer-donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(126, 168, 58, 0.15);
  border: 1px solid rgba(126, 168, 58, 0.4);
  color: var(--accent-green);
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-size: 0.825rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.footer-donate-btn:hover {
  background: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}
.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-bottom-content p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.footer-tagline {
  color: rgba(126, 168, 58, 0.6) !important;
}

/* =============================================
   DONATE BTN IN NAV
   ============================================= */
.donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gradient-primary);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.donate-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(69, 94, 74, 0.3);
}