/* Base navbar */
.navbar-cement {
  background: #ffffff;
  padding: 14px 0;
  border-bottom: 2px solid #e7dfd3;
  transition: box-shadow 0.3s ease;
}

/* Sticky state */
.navbar-cement.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* Logo */
.navbar-brand img {
  height: 70px;
}

/* Menu */
.navbar-nav {
  gap: 32px;
}

.nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: #111 !important;
}

.nav-link.active {
  color: #f28c1f !important;
}

/* CTA */
.btn-list-plant {
  background: #f28c1f;
  color: #fff;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
}


/* ================= MOBILE ================= */

@media (max-width: 991px) {
  .navbar-brand img {
    height: 52px;
  }

  .navbar-nav {
    gap: 10px;
    padding-top: 12px;
  }

  .nav-link.active::after {
    display: none;
  }

  .btn-list-plant {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }
}

