.hero-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 95px;
  background:
    radial-gradient(circle at top right, rgba(35, 166, 225, 0.14), transparent 34%),
    radial-gradient(circle at left center, rgba(11, 141, 54, 0.13), transparent 34%),
    linear-gradient(180deg, #f9fcfa 0%, #f4faf7 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 141, 54, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 141, 54, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 85%);
  pointer-events: none;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 340px;
  height: 340px;
  background: rgba(35, 166, 225, 0.08);
  filter: blur(20px);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  background: rgba(11, 141, 54, 0.08);
  filter: blur(20px);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 650px;
  min-width: 0;
}

.hero-text h1 {
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-text h1 span {
  color: var(--primary-green);
  position: relative;
}

.hero-text h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 10px;
  background: rgba(248, 191, 86, 0.38);
  z-index: -1;
  border-radius: 999px;
}

.hero-text p {
  margin-top: 16px;
  margin-bottom: 30px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.highlight-chip {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(213, 227, 228, 0.92);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  backdrop-filter: blur(8px);
  max-width: 100%;
}

.hero-visual {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.orb-1 {
  top: 20px;
  right: 10px;
  width: 110px;
  height: 110px;
  background: rgba(35, 166, 225, 0.18);
}

.orb-2 {
  left: 10px;
  bottom: 30px;
  width: 130px;
  height: 130px;
  background: rgba(11, 141, 54, 0.15);
}

.main-hero-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(13, 34, 20, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-image img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 34px;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), transparent 28%, rgba(0, 0, 0, 0.10));
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 38px rgba(13, 34, 20, 0.12);
  border-radius: 24px;
  padding: 16px 18px;
  min-width: 190px;
  max-width: min(260px, 100%);
}

.floating-card small {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.floating-card strong {
  display: block;
  font-size: 1.7rem;
  color: var(--primary-green);
  margin-bottom: 4px;
  line-height: 1;
}

.floating-card span {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 700;
  overflow-wrap: break-word;
  word-break: break-word;
}

.floating-card-1 {
  left: 12px;
  bottom: 24px;
}

.floating-card-2 {
  right: 12px;
  top: 22px;
}

.floating-card-3 {
  right: 24px;
  bottom: 10px;
}

/* GALLERY */
.gallery-section {
  background: var(--white);
  padding-top: 96px;
  padding-bottom: 96px;
}

.gallery-full {
  width: min(calc(100% - 32px), 1500px);
  margin: 0 auto;
  padding: 28px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 248, 246, 0.96));
  border: 1px solid rgba(213, 227, 228, 0.9);
  box-shadow: var(--shadow-soft);
  max-width: 100%;
  overflow: hidden;
}

.gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.gallery-head-left {
  min-width: 0;
}

.gallery-head-left p {
  color: var(--text-light);
  margin-top: 10px;
  font-size: 1rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.carousel-mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(11, 141, 54, 0.08);
  border: 1px solid rgba(11, 141, 54, 0.14);
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 100%;
}

.carousel-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 118px;
  min-height: 66px;
  padding: 10px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(213, 227, 228, 0.95);
  box-shadow: var(--shadow-soft);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  max-width: 100%;
}

.carousel-counter .divider {
  color: var(--text-light);
}

.carousel-outer {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 84px;
  gap: 22px;
  align-items: center;
  max-width: 100%;
}

.carousel-track-container {
  width: 100%;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: var(--white);
  min-width: 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.65s ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 780px;
  object-fit: cover;
  display: block;
  transition: transform 0.85s ease;
}

.carousel-slide.active img {
  transform: scale(1.03);
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 10%,
    rgba(0, 0, 0, 0.16) 40%,
    rgba(0, 0, 0, 0.68) 100%
  );
}

.carousel-content {
  max-width: 760px;
  color: var(--white);
  min-width: 0;
}

.carousel-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  max-width: 100%;
}

.carousel-content h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  margin-bottom: 14px;
  max-width: 900px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.carousel-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.carousel-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(213, 227, 228, 0.95);
  box-shadow: var(--shadow-soft);
  color: var(--primary-green);
  font-size: 30px;
  font-weight: 800;
  transition: var(--transition);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: scale(1.04);
}

.carousel-bottom {
  margin-top: 22px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(11, 141, 54, 0.2);
  transition: var(--transition);
}

.dot.active {
  width: 36px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
}

.carousel-progress {
  width: 100%;
  height: 6px;
  background: rgba(11, 141, 54, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.carousel-progress-bar {
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
  border-radius: 999px;
  transform: translateX(0%);
  transition: transform 0.65s ease;
}

/* INTRO */
.intro-section {
  background:
    radial-gradient(circle at left top, rgba(11, 141, 54, 0.05), transparent 26%),
    var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 30px;
  align-items: stretch;
}

.glass-panel {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(213, 227, 228, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.intro-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.intro-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(11, 141, 54, 0.05), rgba(35, 166, 225, 0.06));
  border: 1px solid rgba(213, 227, 228, 0.75);
  min-width: 0;
}

.intro-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.intro-item p {
  color: var(--text-dark);
  font-weight: 600;
  overflow-wrap: break-word;
  word-break: break-word;
}

.intro-side-card {
  background: linear-gradient(145deg, rgba(11, 141, 54, 0.07), rgba(35, 166, 225, 0.10));
  border: 1px solid rgba(213, 227, 228, 0.85);
  border-radius: 30px;
  padding: 34px 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.intro-side-card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 120px;
  height: 120px;
  background: rgba(248, 191, 86, 0.16);
  border-radius: 50%;
}

.intro-side-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  overflow-wrap: break-word;
  word-break: break-word;
}

.intro-side-card p {
  color: var(--text-light);
  position: relative;
  z-index: 1;
  overflow-wrap: break-word;
  word-break: break-word;
}

.mini-badge,
.cta-mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(213, 227, 228, 0.8);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 16px;
  max-width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--primary-green);
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.text-link::after {
  content: "→";
  transition: var(--transition);
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* STATS */
.stats-section {
  background:
    linear-gradient(180deg, #f6fbf8 0%, #f1f8f5 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(35, 166, 225, 0.05), transparent 18%),
    radial-gradient(circle at 80% 70%, rgba(11, 141, 54, 0.05), transparent 18%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 36px 20px 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(213, 227, 228, 0.85);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-topline {
  width: 56px;
  height: 6px;
  border-radius: 999px;
  margin: 0 auto 20px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.stat-card h3 {
  font-size: 2.25rem;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.stat-card p {
  color: var(--text-light);
  font-weight: 700;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* CARDS */
.activities-preview,
.featured-products,
.why-section {
  background: var(--white);
}

.no-hard-icons .info-card {
  padding-top: 34px;
}

.modern-cards .info-card {
  overflow: hidden;
}

.modern-cards .info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 141, 54, 0.02), rgba(35, 166, 225, 0.04));
  opacity: 0;
  transition: var(--transition);
}

.modern-cards .info-card:hover::before {
  opacity: 1;
}

.premium-product {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 252, 250, 0.96));
}

.product-image-wrap {
  overflow: hidden;
}

.premium-product img {
  transition: transform 0.55s ease;
}

.premium-product:hover img {
  transform: scale(1.06);
}

/* CTA */
.cta-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
}

.cta-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-green), #0f6f33);
  color: var(--white);
  border-radius: 34px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 22px 50px rgba(11, 141, 54, 0.22);
}

.cta-box::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-box::after {
  content: "";
  position: absolute;
  left: 40%;
  bottom: -65px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 700px;
}

.cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 10px;
  line-height: 1.15;
  overflow-wrap: break-word;
  word-break: break-word;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.86);
  overflow-wrap: break-word;
  word-break: break-word;
}

.cta-box .btn-primary {
  background: var(--white);
  color: var(--primary-green);
  min-width: 220px;
}

.cta-box .btn-primary:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
}

@media (max-width: 1200px) {
  .carousel-slide img {
    height: 620px;
  }

  .carousel-content h3 {
    font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  }

  .carousel-outer {
    grid-template-columns: 70px minmax(0, 1fr) 70px;
  }
}

@media (max-width: 1100px) {
  .intro-grid,
  .hero-container,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image img {
    min-height: 450px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .floating-card-1 {
    left: 12px;
    bottom: 18px;
  }

  .floating-card-2 {
    right: 12px;
    top: 18px;
  }

  .floating-card-3 {
    right: 18px;
    bottom: 0;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .hero-visual {
    min-height: auto;
  }

  .gallery-full {
    width: min(calc(100% - 20px), 100%);
    padding: 18px;
    border-radius: 28px;
  }

  .carousel-outer {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .carousel-slide img {
    height: 500px;
  }

  .floating-card {
    min-width: 170px;
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  .hero-container,
  .stats-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 82px;
    padding-bottom: 74px;
  }

  .hero-visual {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
    order: 0;
  }

  .hero-image.main-hero-card,
  .main-hero-card {
    width: 100%;
  }

  .hero-image img {
    min-height: 340px;
  }

  .floating-card {
    position: static;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
  }

  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel-counter {
    width: 100%;
    justify-content: center;
  }

  .carousel-slide img {
    height: 400px;
  }

  .carousel-overlay {
    padding: 20px;
  }

  .carousel-content h3 {
    font-size: 1.8rem;
    line-height: 1.15;
  }

  .carousel-content p {
    font-size: 14px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }

  .glass-panel,
  .intro-side-card {
    padding: 26px 22px;
  }
}

@media (max-width: 560px) {
  .hero-section {
    padding-top: 72px;
    padding-bottom: 60px;
  }

  .hero-text p {
    margin-bottom: 22px;
  }

  .hero-image img {
    min-height: 260px;
    border-radius: 22px;
  }

  .main-hero-card {
    border-radius: 22px;
  }

  .gallery-full {
    width: calc(100% - 12px);
    padding: 10px;
    border-radius: 20px;
  }

  .gallery-head-left p {
    font-size: 14px;
  }

  .carousel-track-container {
    border-radius: 20px;
  }

  .carousel-slide img {
    height: 300px;
  }

  .carousel-overlay {
    padding: 16px;
  }

  .carousel-tag {
    padding: 8px 14px;
    font-size: 11px;
    margin-bottom: 12px;
  }

  .carousel-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .carousel-content p {
    font-size: 13px;
    line-height: 1.55;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .dot.active {
    width: 28px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-highlights {
    flex-direction: column;
    align-items: stretch;
  }

  .highlight-chip {
    width: 100%;
  }

  .cta-box {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .glass-panel,
  .intro-side-card {
    padding: 20px 16px;
    border-radius: 22px;
  }
}