/* ======================================================
   TRIPADVISOR REVIEWS SECTION
====================================================== */

.vl-reviews-section {
  --vl-green: #4f9f2a;
  --vl-green-dark: #286b2d;
  --vl-green-light: #eff9eb;
  --vl-orange: #ffad00;
  --vl-orange-dark: #f18b00;
  --vl-dark: #17221b;
  --vl-text: #526058;
  --vl-white: #ffffff;

  position: relative;
  padding: 105px 0 85px;
  background:
    radial-gradient(
      circle at 8% 85%,
      rgba(79, 159, 42, 0.09),
      transparent 20%
    ),
    radial-gradient(
      circle at 93% 18%,
      rgba(255, 173, 0, 0.08),
      transparent 20%
    ),
    linear-gradient(180deg, #ffffff 0%, #f7fbf5 100%);
  overflow: hidden;
}


/* DECORATIVE LEAVES */

.vl-review-decoration {
  position: absolute;
  width: 340px;
  height: 340px;
  pointer-events: none;
  opacity: 0.08;
}

.vl-review-decoration::before,
.vl-review-decoration::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 80px;
  border-radius: 100% 0 100% 0;
  background: var(--vl-green);
}

.vl-review-decoration-left {
  left: -110px;
  bottom: -120px;
  transform: rotate(-25deg);
}

.vl-review-decoration-left::before {
  left: 70px;
  top: 70px;
  transform: rotate(30deg);
}

.vl-review-decoration-left::after {
  left: 145px;
  top: 155px;
  transform: rotate(65deg);
}

.vl-review-decoration-right {
  right: -150px;
  top: 30px;
  transform: rotate(150deg);
}

.vl-review-decoration-right::before {
  left: 60px;
  top: 55px;
  transform: rotate(25deg);
}

.vl-review-decoration-right::after {
  left: 145px;
  top: 145px;
  transform: rotate(65deg);
}


/* SECTION HEADING */

.vl-reviews-heading {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 52px;
}

.vl-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 17px;
  border: 1px solid rgba(79, 159, 42, 0.2);
  border-radius: 50px;
  background: rgba(239, 249, 235, 0.9);
  color: var(--vl-green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.vl-badge-star {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--vl-orange);
  color: #fff;
  font-size: 12px;
  box-shadow: 0 5px 13px rgba(255, 173, 0, 0.35);
}

.vl-reviews-heading h2 {
  margin: 0 0 16px;
  color: var(--vl-dark);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.vl-reviews-heading h2 span {
  color: var(--vl-green);
}

.vl-reviews-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--vl-text);
  font-size: 17px;
  line-height: 1.8;
}

.vl-title-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  margin-top: 24px;
}

.vl-title-line span {
  width: 50px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--vl-orange)
  );
}

.vl-title-line span:last-child {
  background: linear-gradient(
    90deg,
    var(--vl-orange),
    transparent
  );
}

.vl-title-line i {
  color: var(--vl-orange);
  font-style: normal;
  font-size: 15px;
}


/* MAIN CONTENT CARD */

.vl-review-content-card {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(29, 83, 40, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 25px 65px rgba(24, 61, 33, 0.1);
  overflow: hidden;
}

.vl-review-content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 45px;
  right: 45px;
  height: 4px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(
    90deg,
    var(--vl-green),
    var(--vl-orange)
  );
}

.vl-review-content-card::after {
  content: "★";
  position: absolute;
  right: -25px;
  bottom: -75px;
  color: rgba(79, 159, 42, 0.05);
  font-size: 230px;
  line-height: 1;
}


/* TOP RATING AREA */

.vl-review-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding-bottom: 27px;
  border-bottom: 1px solid #edf1ed;
}

.vl-tripadvisor-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vl-tripadvisor-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--vl-green-light);
  border: 1px solid rgba(79, 159, 42, 0.18);
}

.vl-tripadvisor-icon::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 29px;
  height: 15px;
  border-top: 4px solid var(--vl-green-dark);
  border-radius: 50%;
  transform: translateX(-50%);
}

.vl-tripadvisor-icon span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 3px solid var(--vl-green-dark);
  border-radius: 50%;
  color: var(--vl-orange);
  font-size: 6px;
}

.vl-tripadvisor-brand small {
  display: block;
  margin-bottom: 4px;
  color: var(--vl-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.vl-tripadvisor-brand h3 {
  margin: 0;
  color: var(--vl-dark);
  font-size: 20px;
  font-weight: 800;
}

.vl-rating-box {
  text-align: right;
}

.vl-stars {
  color: var(--vl-orange);
  font-size: 20px;
  letter-spacing: 3px;
  text-shadow: 0 5px 14px rgba(255, 173, 0, 0.25);
}

.vl-rating-box strong,
.vl-rating-box span {
  display: block;
}

.vl-rating-box strong {
  margin-top: 4px;
  color: var(--vl-dark);
  font-size: 13px;
}

.vl-rating-box span {
  color: #879087;
  font-size: 11px;
}


/* MESSAGE */

.vl-review-main-message {
  position: relative;
  z-index: 2;
  padding: 32px 0 28px;
}

.vl-quote-mark {
  position: absolute;
  top: 8px;
  left: -6px;
  color: rgba(79, 159, 42, 0.1);
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: 1;
}

.vl-review-main-message h3 {
  position: relative;
  margin: 0 0 15px;
  color: var(--vl-dark);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.35;
}

.vl-review-main-message p {
  position: relative;
  margin: 0;
  color: var(--vl-text);
  font-size: 15px;
  line-height: 1.85;
}

.vl-review-main-message strong {
  color: var(--vl-green-dark);
}


/* TRUST ITEMS */

.vl-trust-features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.vl-trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 88px;
  padding: 15px;
  border: 1px solid #edf2eb;
  border-radius: 17px;
  background: #fbfdfb;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.vl-trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 159, 42, 0.24);
  box-shadow: 0 14px 30px rgba(42, 91, 47, 0.09);
}

.vl-trust-icon {
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--vl-green-light);
}

.vl-trust-icon svg {
  width: 23px;
  height: 23px;
  fill: var(--vl-green);
}

.vl-trust-item strong,
.vl-trust-item span {
  display: block;
}

.vl-trust-item strong {
  margin-bottom: 4px;
  color: var(--vl-dark);
  font-size: 14px;
  font-weight: 800;
}

.vl-trust-item span {
  color: #79847c;
  font-size: 12px;
  line-height: 1.45;
}


/* ACTION BUTTONS */

.vl-review-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.vl-review-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 53px;
  padding: 13px 22px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.vl-review-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.vl-review-btn:hover {
  transform: translateY(-3px);
}

.vl-review-btn-primary {
  background: linear-gradient(
    135deg,
    var(--vl-orange),
    var(--vl-orange-dark)
  );
  color: #fff !important;
  box-shadow: 0 12px 25px rgba(255, 153, 0, 0.25);
}

.vl-review-btn-primary:hover {
  color: #fff !important;
  box-shadow: 0 17px 32px rgba(255, 153, 0, 0.35);
}

.vl-review-btn-whatsapp {
  border: 1px solid rgba(42, 171, 75, 0.22);
  background: #edf9f0;
  color: #239b43 !important;
}

.vl-review-btn-whatsapp:hover {
  background: #25a94a;
  color: #fff !important;
  box-shadow: 0 15px 30px rgba(37, 169, 74, 0.24);
}


/* TRIPADVISOR WIDGET CARD */

.vl-widget-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(79, 159, 42, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(
      150deg,
      rgba(244, 252, 241, 0.98),
      rgba(255, 255, 255, 0.98)
    );
  box-shadow: 0 25px 65px rgba(24, 61, 33, 0.1);
  overflow: hidden;
}

.vl-widget-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(79, 159, 42, 0.07);
}

.vl-widget-card::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 173, 0, 0.06);
}

.vl-widget-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(79, 159, 42, 0.12);
}

.vl-widget-logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.vl-widget-eyes {
  display: flex;
  gap: 3px;
}

.vl-widget-eyes span {
  position: relative;
  display: block;
  width: 27px;
  height: 27px;
  border: 4px solid var(--vl-green);
  border-radius: 50%;
}

.vl-widget-eyes span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vl-orange);
}

.vl-widget-logo small,
.vl-widget-logo strong {
  display: block;
}

.vl-widget-logo small {
  color: #829086;
  font-size: 10px;
  text-transform: uppercase;
}

.vl-widget-logo strong {
  color: var(--vl-dark);
  font-size: 20px;
}

.vl-widget-stars {
  color: var(--vl-orange);
  font-size: 14px;
  letter-spacing: 2px;
}

.vl-widget-intro {
  position: relative;
  z-index: 2;
  padding: 25px 0 20px;
  text-align: center;
}

.vl-widget-intro > span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--vl-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.vl-widget-intro h3 {
  margin: 0 0 10px;
  color: var(--vl-dark);
  font-size: 24px;
  font-weight: 800;
}

.vl-widget-intro p {
  margin: 0;
  color: var(--vl-text);
  font-size: 13px;
  line-height: 1.7;
}


/* WIDGET CONTAINER */

.vl-tripadvisor-widget {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  min-height: 290px;
  padding: 18px;
  border: 1px solid rgba(30, 80, 40, 0.09);
  border-radius: 20px;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.6),
    0 12px 30px rgba(40, 78, 46, 0.08);
  overflow: hidden;
}

/*
 TripAdvisor creates its own internal elements.
 These rules center the official widget.
*/

.vl-tripadvisor-widget .TA_selfserveprop {
  width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.vl-tripadvisor-widget ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.vl-tripadvisor-widget iframe {
  display: block !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

.vl-tripadvisor-widget img {
  max-width: 100%;
  height: auto;
}


/* WIDGET FOOTER */

.vl-widget-footer {
  position: relative;
  z-index: 2;
  margin-top: 21px;
}

.vl-verified-review {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 17px;
}

.vl-check-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--vl-green);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(79, 159, 42, 0.25);
}

.vl-verified-review strong,
.vl-verified-review small {
  display: block;
}

.vl-verified-review strong {
  color: var(--vl-dark);
  font-size: 13px;
}

.vl-verified-review small {
  color: #849087;
  font-size: 11px;
}

.vl-all-reviews-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 17px;
  border-radius: 12px;
  background: var(--vl-green-dark);
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.vl-all-reviews-link span {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.vl-all-reviews-link:hover {
  transform: translateY(-2px);
  background: var(--vl-green);
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(40, 107, 45, 0.22);
}

.vl-all-reviews-link:hover span {
  transform: translateX(4px);
}


/* BOTTOM TRUST BAR */

.vl-bottom-trust-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    1fr auto
    1fr auto
    1fr auto
    1fr;
  align-items: center;
  margin-top: 34px;
  padding: 22px 26px;
  border: 1px solid rgba(79, 159, 42, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 38px rgba(34, 75, 40, 0.07);
  backdrop-filter: blur(10px);
}

.vl-bottom-trust-item {
  text-align: center;
}

.vl-bottom-trust-item span {
  display: block;
}

.vl-bottom-number {
  margin-bottom: 4px;
  color: var(--vl-green-dark);
  font-size: 18px;
  font-weight: 900;
}

.vl-bottom-trust-item span:last-child {
  color: #77827a;
  font-size: 11px;
  font-weight: 600;
}

.vl-bottom-divider {
  width: 1px;
  height: 35px;
  background: #dfe8df;
}


/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {

  .vl-reviews-section {
    padding: 80px 0 65px;
  }

  .vl-widget-card {
    min-height: auto;
  }

  .vl-bottom-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .vl-bottom-divider {
    display: none;
  }

}


@media (max-width: 767px) {

  .vl-reviews-heading {
    margin-bottom: 35px;
  }

  .vl-reviews-heading h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .vl-reviews-heading p {
    font-size: 15px;
  }

  .vl-review-content-card,
  .vl-widget-card {
    padding: 25px 20px;
    border-radius: 22px;
  }

  .vl-review-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .vl-rating-box {
    text-align: left;
  }

  .vl-review-main-message h3 {
    font-size: 23px;
  }

  .vl-trust-features {
    grid-template-columns: 1fr;
  }

  .vl-review-actions {
    flex-direction: column;
  }

  .vl-review-btn {
    width: 100%;
  }

  .vl-widget-header {
    align-items: flex-start;
  }

  .vl-widget-stars {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .vl-tripadvisor-widget {
    min-height: 260px;
    padding: 12px;
  }

}


@media (max-width: 520px) {

  .vl-reviews-section {
    padding: 65px 0 55px;
  }

  .vl-reviews-heading h2 {
    font-size: 31px;
  }

  .vl-bottom-trust-bar {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .vl-bottom-trust-item {
    padding: 10px 0;
    border-bottom: 1px solid #edf1ed;
  }

  .vl-bottom-trust-item:last-child {
    border-bottom: 0;
  }

  .vl-tripadvisor-brand h3 {
    font-size: 17px;
  }

  .vl-widget-logo strong {
    font-size: 17px;
  }

  .vl-widget-header {
    flex-direction: column;
  }

}

/*==============================================================================
VL NATURE ABOUT SECTION
=================================================================================*/
/* =====================================================
   VL NATURE ABOUT SECTION
===================================================== */

.vl-nature-about {
  --vl-green: #2f762e;
  --vl-green-dark: #174f25;
  --vl-green-soft: #edf7e9;
  --vl-orange: #fcae35;
  --vl-dark: #172019;
  --vl-text: #505b53;

  position: relative;
  padding: 80px 0 35px;
  background:
    radial-gradient(
      circle at 5% 85%,
      rgba(68, 140, 55, 0.09),
      transparent 18%
    ),
    radial-gradient(
      circle at 95% 15%,
      rgba(252, 174, 53, 0.07),
      transparent 18%
    ),
    #ffffff;
  overflow: hidden;
}

.vl-nature-about::before,
.vl-nature-about::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 45px solid rgba(59, 129, 52, 0.035);
  border-radius: 50%;
  pointer-events: none;
}

.vl-nature-about::before {
  left: -170px;
  bottom: -150px;
}

.vl-nature-about::after {
  top: -175px;
  right: -160px;
}

.vl-nature-card {
  position: relative;
  z-index: 2;
}


/* IMAGE MOSAIC */

.vl-nature-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 215px);
  gap: 12px;
}

.vl-nature-photo {
  position: relative;
  margin: 0;
  border-radius: 18px;
  background: #e8eee7;
  box-shadow: 0 12px 30px rgba(20, 59, 27, 0.14);
  overflow: hidden;
  isolation: isolate;
}

.vl-nature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: inherit;
  pointer-events: none;
}

.vl-nature-photo picture,
.vl-nature-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.vl-nature-photo img {
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.vl-nature-photo:hover img {
  transform: scale(1.06);
  filter: saturate(1.08);
}


/* TEXT */

.vl-nature-content {
  padding: 10px 0 10px 5px;
}

.vl-nature-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--vl-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.vl-nature-eyebrow::before {
  content: "";
  width: 35px;
  height: 2px;
  background: var(--vl-orange);
}

.vl-nature-content h2 {
  margin: 0 0 18px;
  color: var(--vl-dark);
  font-size: clamp(32px, 4vw, 45px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
}

.vl-nature-content h2 span {
  display: block;
  color: var(--vl-green-dark);
}

.vl-nature-content p {
  margin: 0 0 15px;
  color: var(--vl-text);
  font-size: 16px;
  line-height: 1.75;
}

.vl-nature-content .vl-nature-lead {
  color: #26362a;
  font-size: 17px;
  font-weight: 600;
}

.vl-nature-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 18px;
  margin-top: 24px;
}

.vl-nature-benefit {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #36463a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.vl-benefit-icon {
  flex: 0 0 23px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-top: -1px;
  border-radius: 50%;
  background: var(--vl-green-soft);
  color: var(--vl-green);
  font-size: 12px;
  font-weight: 900;
}


/* =====================================================
   WILDLIFE GALLERY
===================================================== */

.vl-wildlife-gallery {
  --vl-gallery-green: #25672f;
  --vl-gallery-orange: #fcae35;

  position: relative;
  padding: 45px 0 90px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fbf6 100%
  );
  overflow: hidden;
}

.vl-gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin-bottom: 26px;
}

.vl-gallery-heading > div {
  max-width: 650px;
}

.vl-gallery-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--vl-gallery-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.vl-gallery-heading h2 {
  margin: 0;
  color: #18251c;
  font-size: clamp(29px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
}

.vl-gallery-heading p {
  max-width: 400px;
  margin: 0;
  color: #657069;
  font-size: 14px;
  line-height: 1.65;
}


/* SWIPER */

.vl-gallery-slider {
  position: relative;
  padding: 4px;
  overflow: hidden;
}

.vl-gallery-slide {
  position: relative;
  height: 285px;
  border-radius: 20px;
  background: #e6ece5;
  box-shadow: 0 12px 28px rgba(27, 62, 32, 0.14);
  overflow: hidden;
}

.vl-gallery-slide picture,
.vl-gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.vl-gallery-slide img {
  object-fit: cover;
  transition: transform 0.7s ease;
}

.vl-gallery-slide:hover img {
  transform: scale(1.07);
}

.vl-gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 42%,
    rgba(7, 25, 12, 0.78) 100%
  );
  pointer-events: none;
}

.vl-gallery-overlay {
  position: absolute;
  left: 21px;
  right: 21px;
  bottom: 19px;
  z-index: 3;
  color: #fff;
  transform: translateY(6px);
  transition: transform 0.4s ease;
}

.vl-gallery-slide:hover .vl-gallery-overlay {
  transform: translateY(0);
}

.vl-gallery-overlay span,
.vl-gallery-overlay strong {
  display: block;
}

.vl-gallery-overlay span {
  margin-bottom: 4px;
  color: #ffca73;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.vl-gallery-overlay strong {
  font-size: 17px;
  font-weight: 800;
}


/* BUTTONS */

.vl-gallery-button {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  padding: 0;
  border: 1px solid rgba(34, 91, 40, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--vl-gallery-green);
  box-shadow: 0 10px 25px rgba(17, 49, 22, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.vl-gallery-button:hover {
  background: var(--vl-gallery-green);
  color: #fff;
}

.vl-gallery-button span {
  display: block;
  margin-top: -2px;
  font-size: 20px;
  line-height: 1;
}

.vl-gallery-prev {
  left: 14px;
}

.vl-gallery-next {
  right: 14px;
}


/* PAGINATION */

.vl-gallery-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.vl-gallery-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 5px !important;
  background: #a9afa9;
  opacity: 0.7;
  transition:
    width 0.3s ease,
    border-radius 0.3s ease,
    background 0.3s ease;
}

.vl-gallery-pagination .swiper-pagination-bullet-active {
  width: 27px;
  border-radius: 10px;
  background: var(--vl-gallery-orange);
  opacity: 1;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

  .vl-nature-about {
    padding-top: 65px;
  }

  .vl-nature-mosaic {
    grid-template-rows: repeat(2, 230px);
  }

  .vl-nature-content {
    padding-top: 20px;
  }

  .vl-gallery-heading {
    display: block;
  }

  .vl-gallery-heading p {
    max-width: 650px;
    margin-top: 13px;
  }

}


@media (max-width: 767px) {

  .vl-nature-about {
    padding: 45px 0 20px;
  }

  .vl-nature-mosaic {
    grid-template-rows: repeat(2, 165px);
    gap: 8px;
  }

  .vl-nature-photo {
    border-radius: 14px;
  }

  .vl-nature-content h2 {
    font-size: 32px;
  }

  .vl-nature-content p,
  .vl-nature-content .vl-nature-lead {
    font-size: 15px;
    line-height: 1.7;
  }

  .vl-nature-benefits {
    grid-template-columns: 1fr;
  }

  .vl-wildlife-gallery {
    padding: 35px 0 65px;
  }

  .vl-gallery-slide {
    height: 270px;
  }

  .vl-gallery-button {
    width: 42px;
    height: 42px;
  }

}


@media (max-width: 480px) {

  .vl-nature-mosaic {
    grid-template-rows: repeat(2, 140px);
  }

  .vl-nature-content h2 {
    font-size: 29px;
  }

  .vl-gallery-heading h2 {
    font-size: 28px;
  }

  .vl-gallery-slide {
    height: 250px;
  }

  .vl-gallery-prev {
    left: 8px;
  }

  .vl-gallery-next {
    right: 8px;
  }

}


/* Reduce animation for accessibility */

@media (prefers-reduced-motion: reduce) {

  .vl-nature-photo img,
  .vl-gallery-slide img,
  .vl-gallery-overlay,
  .vl-gallery-button {
    transition: none !important;
  }

}