/* ============================================================
   Hero Section - Model12 Homepage
   ============================================================ */

.furnish-hero {
  position: relative;
  background: linear-gradient(135deg, #00A651 0%, #1B9C5E 40%, #2BB673 80%, #48C98A 100%);
  padding: 60px 0 0;
  overflow: hidden;
  min-height: 860px;
}

.furnish-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 500px;
}

/* Hero Left Content */
.furnish-hero__content {
  padding: 40px 0 80px 0;
  color: #fff;
}

.furnish-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.furnish-hero__title {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.furnish-hero__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 520px;
}

.furnish-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: #fff;
  color: #00A651;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.furnish-hero__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #0A6231;
}

/* Hero Right Visual */
.furnish-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 0;
  min-height: 650px;
}

.furnish-hero__image {
  position: relative;
  width: 100%;
  max-width: 650px;
}

.furnish-hero__image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
}

/* Decorative circles */
.furnish-hero__circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.furnish-hero__circle--1 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.furnish-hero__circle--2 {
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero bottom wave */
.furnish-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: #fff;
  clip-path: polygon(0 40%, 5% 30%, 10% 20%, 15% 15%, 20% 12%, 25% 10%, 30% 12%, 35% 18%, 40% 25%, 45% 35%, 50% 45%, 55% 40%, 60% 30%, 65% 20%, 70% 15%, 75% 12%, 80% 15%, 85% 22%, 90% 30%, 95% 38%, 100% 45%, 100% 100%, 0 100%);
}

/* Responsive */
@media (max-width: 1199px) {
  .furnish-hero__title {
    font-size: 52px;
  }
  .furnish-hero__desc {
    font-size: 15px;
  }
}

@media (max-width: 959px) {
  .furnish-hero {
    padding: 40px 0 0;
  }
  .furnish-hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .furnish-hero__content {
    padding: 20px 0 40px;
    text-align: center;
  }
  .furnish-hero__desc {
    margin-left: auto;
    margin-right: auto;
  }
  .furnish-hero__visual {
    min-height: 320px;
    padding: 0 0 40px;
  }
  .furnish-hero__title {
    font-size: 42px;
  }
}

@media (max-width: 639px) {
  .furnish-hero__title {
    font-size: 32px;
  }
  .furnish-hero__desc {
    font-size: 15px;
  }
  .furnish-hero__label {
    font-size: 12px;
    padding: 6px 14px;
  }
  .furnish-hero__wave {
    height: 50px;
  }
}
