@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap');

:root {
  --primary-green: #52c41a;
  --primary-green-dark: #389e0d;
  --primary-green-light: #73d13d;
  --primary-green-hover: #2e9b3e;

  --white: #ffffff;
  --black: #000000;

  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-dark: #1f1f1f;

  --nav-bg: rgba(0, 0, 0, 0.94);
  --nav-bg-mobile: rgba(0, 0, 0, 0.96);
  --nav-transparent: transparent;

  --overlay-dark: rgba(0, 0, 0, 0.45);
  --overlay-dark-strong: rgba(0, 0, 0, 0.55);

  --dropdown-bg: #2d2b33;
  --dropdown-hover: var(--primary-green);

  --border-light: rgba(255, 255, 255, 0.14);

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-btn: 0 10px 25px rgba(82, 196, 26, 0.25);

  --radius-pill: 999px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --transition: all 0.35s ease;
  --transition-fast: all 0.25s ease;

  --container-padding: 1rem;
  --navbar-padding-y-scrolled: 0px;

  --logo-height: 92px;
  --logo-height-scrolled: 72px;
  --logo-height-mobile: 64px;

  --hero-height: 550px;
  --hero-min-height: 550px;

  --hero-title-size: 5rem;
  --hero-title-size-lg: 4rem;
  --hero-title-size-md: 3rem;
  --hero-title-size-sm: 2.2rem;
  --hero-title-size-xs: 1.8rem;

  --hero-text-size: 1.25rem;
  --hero-text-size-md: 1.1rem;
  --hero-text-size-sm: 1rem;
}

/* =========================
   GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'SN Pro', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.heading {
  max-width: 620px;
  margin: 0 auto 40px;
}

.heading h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  line-height: 1.2;
}

.heading p {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 14px;
  line-height: 1.6;
}

.title-line {
  display: inline-block;
  width: 42px;
  height: 3px;
  border-radius: 20px;
  background: var(--primary-green);
}

/* =========================
   NAVBAR
========================= */
.main-navbar {
  background: var(--nav-transparent);
  transition: var(--transition);
  z-index: 999;
}

.main-navbar.scrolled {
  background: var(--nav-bg);
  padding: var(--navbar-padding-y-scrolled) 0;
  box-shadow: var(--shadow-soft);
}

.main-navbar.always-scrolled {
  background: var(--nav-bg);
  padding: var(--navbar-padding-y-scrolled) 0;
  box-shadow: var(--shadow-soft);
}

.logo-img {
  height: var(--logo-height);
  width: auto;
  transition: var(--transition);
}

.main-navbar.scrolled .logo-img,
.main-navbar.always-scrolled .logo-img {
  height: var(--logo-height-scrolled);
}

.custom-toggler {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.5rem 0.75rem;
  box-shadow: none !important;
}

.custom-toggler .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.navbar-nav .nav-link {
  color: var(--text-white) !important;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.85rem 1rem !important;
  transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--primary-green-light) !important;
}

.nav-cta-btn {
  background: var(--primary-green);
  color: var(--white) !important;
  border: none;
  border-radius: var(--radius-pill);
  padding: 8px 15px;
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-btn);
}

.nav-cta-btn:hover {
  background: var(--primary-green-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* =========================
   NORMAL DROPDOWN
========================= */
.main-dropdown,
.submenu-dropdown {
  background: var(--dropdown-bg);
  border: none;
  border-radius: 0;
  min-width: 280px;
  padding: 0;
  box-shadow: var(--shadow-soft);
}

.main-dropdown .dropdown-item,
.submenu-dropdown .dropdown-item {
  color: var(--white);
  padding: 0.5rem 1.1rem;
  font-size: 1rem;
  font-weight: 500;
  white-space: normal;
  transition: var(--transition-fast);
}

.main-dropdown .dropdown-item:hover,
.main-dropdown .dropdown-item:focus,
.submenu-dropdown .dropdown-item:hover,
.submenu-dropdown .dropdown-item:focus {
  background: var(--dropdown-hover);
  color: var(--white);
}

/* =========================
   SUBMENU
========================= */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .submenu-dropdown {
  top: 0;
  left: 100%;
  margin-top: 0;
  display: none;
}

.dropdown-submenu:hover > .submenu-dropdown {
  display: block;
}

.dropdown-submenu > .submenu-toggle:hover,
.dropdown-submenu > .submenu-toggle:focus,
.dropdown-submenu.show > .submenu-toggle {
  background: var(--dropdown-hover);
  color: var(--white) !important;
}

/* =========================
   MEGA DROPDOWN
========================= */
.dropdown-mega-menu {
  min-width: 620px;
  padding: 0.5rem 1.1rem;
  background: var(--dropdown-bg);
  border: none;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
}

.dropdown-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.dropdown-mega-col h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 24px;
}

.dropdown-mega-menu .dropdown-item {
  display: block;
  padding: 0;
  margin-bottom: 26px;
  background: transparent !important;
  color: var(--white) !important;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  white-space: normal;
}

.dropdown-mega-menu .dropdown-item:hover,
.dropdown-mega-menu .dropdown-item:focus {
  color: var(--primary-green-light) !important;
  background: transparent !important;
}

.dropdown-mega-menu .dropdown-item.active,
.dropdown-mega-menu .dropdown-item.active-item {
  color: var(--primary-green-light) !important;
  background: transparent !important;
}

.dropdown-mega-menu .dropdown-item:last-child {
  margin-bottom: 0;
}

/* =========================
   OPEN STATE
========================= */
.main-navbar .dropdown-menu.show {
  display: block;
}

/* =========================
   HERO
========================= */
.hero-section {
  position: relative;
}

.heroSwiper {
  width: 100%;
  height: var(--hero-height);
  min-height: var(--hero-min-height);
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.slide-bg,
.slide-overlay {
  position: absolute;
  inset: 0;
}

.slide-bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: transform 0.5s ease;
  transform: scale(1.02);
}

.slide-overlay {
  background: var(--overlay-dark-strong);
  z-index: 1;
}

.hero-slide .container,
.hero-slide .row,
.hero-slide .hero-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-top: 8rem;
}

.hero-content h1 {
  color: var(--text-white);
  font-size: var(--hero-title-size);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero-content p {
  color: var(--text-light);
  font-size: var(--hero-text-size);
  line-height: 1.6;
  max-width: 980px;
  margin: 0 auto 2rem;
}

.hero-btn {
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: var(--shadow-btn);
}

.hero-btn:hover {
  background: var(--primary-green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* swiper buttons */
.custom-swiper-btn::after {
  display: none;
}

.custom-swiper-btn i {
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
}

.swiper-button-prev {
  left: 24px !important;
}

.swiper-button-next {
  right: 24px !important;
}

/* swiper dots */
.swiper-pagination {
  bottom: 15px !important;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.65);
  opacity: 1;
  margin: 0 6px !important;
  transition: var(--transition-fast);
}

.swiper-pagination-bullet-active {
  width: 34px;
  border-radius: 999px;
  background: var(--primary-green);
}

/* =========================
   WHY VOLUNTEER
========================= */
.why-volunteer-section {
  background: #edf2f2;
  padding-top: 30px;
  padding-bottom: 30px;
}

.why-card {
  background: #f7f6f6;
  border-radius: 28px;
  padding: 20px 10px 20px;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
}

.why-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.green-circle {
  background: #c9dea2;
}

.blue-circle {
  background: #c8e3e7;
}

.why-image img {
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
}

.why-card h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: #3b3b3b;
  margin-bottom: 22px;
}

.why-card p {
  font-size: 16px;
  line-height: 1.45;
  color: #4d4d4d;
  margin-bottom: 0;
}

/* =========================
   IMPACT
========================= */
.impact-values-section {
  position: relative;
  background: url('../../images/slider6.jpg') center center / cover no-repeat;
  padding: 60px 0;
  overflow: hidden;
}

.impact-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
}

.impact-values-section .container {
  position: relative;
  z-index: 2;
}

.impact-stats-row {
  margin-bottom: 22px;
}

.impact-stat-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  padding: 28px 18px 24px;
  min-height: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.impact-stat-icon {
  font-size: 52px;
  color: #6b7280;
  margin-bottom: 14px;
  line-height: 1;
}

.impact-stat-line {
  width: 42px;
  height: 2px;
  background: #9ca3af;
  margin: 0 auto 14px;
}

.impact-stat-card h3 {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 6px;
  line-height: 1;
}

.impact-stat-card p {
  font-size: 0.98rem;
  color: #7b7b7b;
  margin-bottom: 0;
  font-weight: 500;
}

.impact-value-row {
  margin-top: 0;
}

.value-card {
  color: var(--white);
  padding: 28px 20px 24px;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.value-card-1 { background: var(--primary-green); }
.value-card-2 { background: #62ad2e; }
.value-card-3 { background: #4f9327; }
.value-card-4 { background: var(--primary-green-dark); }

.value-icon {
  font-size: 52px;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1;
}

.value-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 8px;
}

.value-card span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.96);
}

.value-btn {
  margin-top: auto;
  align-self: center;
  background: var(--white);
  color: #1565c0;
  border: none;
  border-radius: 4px;
  padding: 9px 18px;
  font-size: 0.92rem;
  font-weight: 700;
}

.value-btn:hover {
  background: #f4f4f4;
  color: #1565c0;
}

/* =========================
   VOLUNTEER
========================= */
.volunteer-section {
  background: #f7f8fa;
  padding: 70px 0;
}

.volunteer-slider-wrap {
  position: relative;
}

.volunteerSwiper {
  padding: 0 50px;
}

.volunteerSwiper .swiper-slide {
  height: auto;
}

.volunteer-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.volunteer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.volunteer-card-top {
  height: 150px;
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
}

.volunteer-card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.volunteer-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-top: -30px;
}

.volunteer-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #f3f4f6;
  border: 4px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.volunteer-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.volunteer-card-body {
  padding: 14px 16px 18px;
  text-align: center;
}

.volunteer-card-body h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.volunteer-button-prev,
.volunteer-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.volunteer-button-prev:hover,
.volunteer-button-next:hover {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
}

.volunteer-button-prev { left: 0; }
.volunteer-button-next { right: 0; }

.volunteer-button-prev i,
.volunteer-button-next i {
  font-size: 0.95rem;
}

/* =========================
   RESTORATION
========================= */
.restoration-section {
  background: #f4f1e8;
  padding: 70px 0;
  overflow: hidden;
}

.restoration-section .section-title h2 {
  color: #1f2937;
  margin-bottom: 0;
}

.restoration-video-box {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.video-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  z-index: 3;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-iframe-wrap {
  display: none;
}

.video-iframe-wrap.active {
  display: block;
}

.video-iframe-wrap iframe {
  width: 100%;
  height: 540px;
  border: 0;
  display: block;
}

.restoration-slider-wrap {
  margin-top: 24px;
}

.restoration-slider-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.restoration-button-prev,
.restoration-button-next {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.restoration-button-prev:hover,
.restoration-button-next:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #fff;
}

.restoration-button-prev i,
.restoration-button-next i {
  font-size: 0.95rem;
}

.restorationSwiper {
  width: 100%;
  padding: 0;
}

.restorationSwiper .swiper-slide {
  height: auto;
}

.restoration-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 220px;
  height: 100%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.restoration-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.restoration-card:hover img {
  transform: scale(1.05);
}

.restoration-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.15));
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.restoration-card-overlay h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.restoration-card-overlay p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

/* =========================
   WHATSAPP
========================= */
.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.28);
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-float-btn:hover {
  transform: translateY(-3px) scale(1.03);
  background: #1ebe5d;
}

.whatsapp-chat-box {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 320px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
}

.whatsapp-chat-box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-chat-header {
  background: #25d366;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whatsapp-chat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.98rem;
}

.whatsapp-close-btn {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.whatsapp-chat-body {
  padding: 18px 16px 14px;
  background: #f7f8fa;
}

.whatsapp-chat-body p {
  margin: 0 0 8px;
  color: #374151;
  font-size: 0.92rem;
  line-height: 1.6;
}

.whatsapp-chat-footer {
  padding: 16px;
  background: #fff;
}

.whatsapp-chat-link {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-chat-link:hover {
  background: #1ebe5d;
  color: #fff;
}

/* =========================
   MEASURE
========================= */
.measure-section {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.measure-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.measure-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.measure-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 18, 0.45);
}

.measure-section .container {
  position: relative;
  z-index: 2;
}

.measure-content {
  max-width: 700px;
  margin: 0 auto 42px;
}

.measure-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.measure-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto;
  max-width: 520px;
}

.measure-grid {
  max-width: 1080px;
  margin: 0 auto;
}

.measure-card {
  min-height: 200px;
  padding: 36px 28px;
  background: #62ad2e;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.measure-icon {
  margin-bottom: 20px;
}

.measure-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.measure-card p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
  max-width: 420px;
}

.measure-btn-wrap {
  margin-top: 28px;
}

.measure-btn {
  background: var(--primary-green);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.measure-btn:hover {
  background: var(--primary-green-hover);
  color: #ffffff;
}
/* =========================
   PHOTO GALLERY
========================= */
.photo-gallery-section {
  background: #f5f5f5;
  padding: 70px 0;
}

.photo-gallery-section .heading h2 {
  color: #2f4358;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 26px;
  align-items: start;
}

.gallery-item {
  overflow: hidden;
  background: #ffffff;
}

.gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* =========================
   FOOTER
========================= */
.weforest-footer {
  background: #0f2c3f;
  padding: 58px 0 34px;
  color: var(--text-white);
  overflow: hidden;
}

.weforest-footer a {
  text-decoration: none;
}

.footer-brand-block {
  max-width: 340px;
}

.footer-logo img {
  max-width: 165px;
  height: auto;
  margin-bottom: 26px;
}

.footer-address {
  margin-bottom: 20px;
}

.footer-address p {
  color: var(--text-white);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 4px;
}

.footer-address strong {
  font-weight: 700;
}

.weforest-footer h6 {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.footer-follow {
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #8ea42a;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: #9db632;
  transform: translateY(-2px);
  color: var(--white);
}

.footer-livechat {
  margin: 24px 0 26px;
}

.footer-livechat a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.footer-livechat i {
  font-size: 1.55rem;
}

.footer-badge img {
  max-width: 155px;
  height: auto;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 14px;
}

.footer-links ul li a,
.language-switch {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  transition: var(--transition-fast);
}

.footer-links ul li a:hover,
.language-switch:hover {
  color: #9db632;
}

.footer-links ul li a.active {
  color: #8ea42a;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-info ul li a {
  font-weight: 700;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 610px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
  margin-top: 8px;
}

.footer-newsletter-form input {
  flex: 1;
  height: 54px;
  border: none;
  outline: none;
  padding: 0 18px;
  background: var(--white);
  color: #22313f;
  font-size: 0.98rem;
}

.footer-newsletter-form input::placeholder {
  color: #7a8590;
}

.footer-newsletter-form button {
  width: 120px;
  height: 54px;
  border: none;
  background: #8ea42a;
  color: var(--white);
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-newsletter-form button:hover {
  background: #9db632;
}

.footer-bottom-wrap {
  margin-top: 70px;
}

.footer-membership h6 {
  margin-bottom: 20px;
}

.footer-membership-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-membership-logos img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-search-form {
  display: flex;
  align-items: center;
  max-width: 370px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto;
}

.footer-search-form input {
  flex: 1;
  height: 48px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--white);
  padding: 0 18px;
  font-size: 1rem;
}

.footer-search-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-search-form button {
  width: 52px;
  height: 48px;
  border: none;
  background: #8ea42a;
  color: var(--white);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
}

.footer-policy-links a {
  position: relative;
  color: var(--text-white);
  font-size: 0.96rem;
  line-height: 1.5;
  transition: var(--transition-fast);
}

.footer-policy-links a:hover {
  color: #9db632;
}

.footer-policy-links a:not(:last-child)::after {
  content: "|";
  margin-left: 14px;
  color: rgba(255, 255, 255, 0.35);
}


/* baner section style  */
.banner-section {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 24, 0.42);
}

.banner-section .container {
  position: relative;
  z-index: 2;
}

.banner-content {
  margin: 0 auto;
}

.banner-subtitle {
  display: inline-block;
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.banner-content h2 {
  color: var(--text-white);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}


.climate-goals-section {
  background: #f5f5f2;
  padding: 0px 0 60px;
}

.climate-goals-heading {
  background: var(--primary-green-hover);
  padding: 38px 20px 95px;
  margin-bottom: -60px;
}

.climate-goals-heading h2 {
  color: var(--white);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.climate-goals-heading p {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.climate-goals-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--white);
}

.climate-goals-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.climate-goals-content {
  background: var(--light-gray);
  padding: 56px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.climate-goals-content h3 {
  color: var(--primary-green);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}

.goal-line {
  width: 38px;
  height: 3px;
  background: var(--primary-green-dark);
  border-radius: 999px;
  margin: 0 auto 20px;
  display: inline-block;
}

.climate-goals-content p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

.climate-goals-footer {
  padding-top: 30px;
}

.climate-goals-footer a {
  color: var(--primary-green-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.climate-goals-footer a:hover {
  color: var(--primary-green);
}



.content-section {
  background: #ffffff;
  padding: 70px 0;
}

.climate-content-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 42px;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-intro h2,
.section-main-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 26px;
  line-height: 1.2;
}

.content-main h3 {
  font-size: 1.85rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 18px;
  line-height: 1.25;
}

.content-block p,
.content-block li {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
}

.content-block p {
  margin-bottom: 18px;
}

.content-block ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.content-block li {
  margin-bottom: 12px;
}

.content-block strong {
  color: #6b7280;
  font-weight: 700;
}

.highlight-text {
  font-size: 1.05rem;
  font-weight: 600;
}

.content-columns p {
  margin-bottom: 0;
}

.content-main .mt-5 {
  margin-top: 52px !important;
}

