/* ===============================
   HOME FEATURE PREMIUM
================================ */
.home-feature {
  padding: 60px 40px;
  background: linear-gradient(135deg, #f5fbf7, #e8f5ec);
  position: relative;
}

/* BACKGROUND GLOW */
.home-feature::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(44,110,73,0.12), transparent);
  top: -100px;
  left: -100px;
}

/* LAYOUT */
.feature-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ===============================
   CONTENT
================================ */
.feature-tag {
  font-size: 13px;
  color: #2c6e49;
  background: rgba(44,110,73,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f3a2c;
  margin-bottom: 15px;
}

.feature-title span {
  color: #2c6e49;
}

.feature-description {
  font-size: 16px;
  line-height: 1.8;
  color: #5b6f63;
  margin-bottom: 20px;
}

/* BADGES */
.feature-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.feature-badges div {
  background: transparent;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  border: 1px solid #2f5a3f; /* bamboo theme color */
  color: #2f5a3f;
  transition: all 0.3s ease;
}

/* POINTS */
.feature-points {
  list-style: none;
  margin-bottom: 20px;
}

.feature-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #2c6e49;
  border-radius: 50%;
}

/* BUTTONS */
.feature-actions {
  display: flex;
  gap: 12px;
}

.feature-btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.feature-btn.primary {
  background: #1f4d3a;
  color: #fff;
  box-shadow: 0 10px 25px rgba(31,77,58,0.3);
}

.feature-btn.primary:hover {
  transform: translateY(-3px);
}

.feature-btn.secondary {
  border: 1px solid #2c6e49;
  color: #2c6e49;
}

.feature-btn.secondary:hover {
  background: #2c6e49;
  color: #fff;
}

/* ===============================
   CREATIVE SLIDER
================================ */
.feature-slider {
  position: relative;
  padding: 40px 20px;
  animation: float 6s ease-in-out infinite;
}

.slider-wrapper {
  height: 380px;
  position: relative;
  overflow: hidden;

  /* CREATIVE SHAPE */
  clip-path: polygon(
    0% 10%, 15% 0%, 85% 0%, 100% 15%,
    100% 85%, 85% 100%, 15% 100%, 0% 85%
  );

  box-shadow: 0 30px 70px rgba(31,77,58,0.25);
}

/* BAMBOO SIDE LINES */
.slider-wrapper::before,
.slider-wrapper::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #2c6e49, #3fa36c);
  opacity: 0.4;
  border-radius: 10px;
}

.slider-wrapper::before { left: 20px; }
.slider-wrapper::after { right: 20px; }

/* SLIDES */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 1s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1.08);
}

/* LABEL */
.slider-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* CAPTION */
.slider-caption {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: #fff;
  font-size: 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* DOTS */
.slider-dots {
  margin-top: 20px;
  text-align: center;
}

.dot {
  width: 12px;
  height: 12px;
  background: #cfe3d6;
  border-radius: 50%;
  margin: 0 6px;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background: #2c6e49;
  transform: scale(1.3);
}

/* Floating leaves (unchanged) */
.leaf{
  position:absolute;
  width:60px;
  height:60px;
  background:url('/assets/images/leaf.png') no-repeat center/contain;
  opacity:.45;
  animation:floatLeaf 7s ease-in-out infinite;
  z-index:1;
}

/* LEFT SIDE LEAVES */
.feature-leaf-left-1{
  top:5%;
  left:10%;
  animation-delay:0s;
}

.feature-leaf-left-2{
  top:70%;
  left:45%;
  animation-delay:2s;
}


@keyframes floatLeaf{
  0%{
    transform:translateY(0) rotate(0deg);
  }

  50%{
    transform:translateY(-20px) rotate(12deg);
  }

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

/* FLOAT */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .feature-container {
    grid-template-columns: 1fr;
  }

  .slider-wrapper {
    height: 260px;
    clip-path: none;
    border-radius: 20px;
  }
}