/* ======================================================
   ENTERPRISE HERO SECTION
   ====================================================== */

.enterprise-hero{
  position: relative;
  padding: 40px 40px;
  overflow: hidden;
}

/* Container */
.enterprise-hero-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.enterprise-content{
  flex: 1;
  max-width: 600px;
}

.enterprise-tag{
  display: inline-block;
  background: rgba(207,175,107,0.2);
  color: var(--color-primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.enterprise-title span{
  color: var(--color-primary);
}

.enterprise-subtitle{
  margin: 20px 0;
  font-size: 17px;
}

/* OFFERINGS */
.enterprise-offerings{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.enterprise-offerings div{
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  border: 1px solid #2f5a3f; /* bamboo theme color */
  color: #2f5a3f;
  box-shadow: var(--shadow-soft);
}

/* CTA */
.enterprise-cta{
  display: flex;
  gap: 15px;
}

.btn-secondary{
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-secondary:hover{
  background: var(--color-primary);
  color: var(--color-white);
}

/* RIGHT VISUAL */
.enterprise-visual{
  flex: 1;
  position: relative;
  height: 400px;
}

/* CARDS */
.visual-card{
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.visual-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MAIN IMAGE */
.main-card{
  width: 70%;
  height: 100%;
  top: 0;
  left: 0;
}

/* SMALL CARDS */
.card-1{
  width: 45%;
  height: 45%;
  top: 0;
  right: 0;
}

.card-2{
  width: 45%;
  height: 45%;
  bottom: 0;
  right: 0;
}


/* 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 */
.hero-leaf-left-1{
  top:5%;
  left:35%;
  animation-delay:0s;
}

.hero-leaf-left-2{
  top:85%;
  left:72%;
  animation-delay:2s;
}


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

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

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

/* RESPONSIVE */
@media(max-width: 992px){
  .enterprise-hero-container{
    flex-direction: column;
  }

  .enterprise-visual{
    width: 100%;
    height: 300px;
  }
}