* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Poppins, sans-serif;
}
/* ===========================
   DESKTOP
=========================== */
.navbar {
  background: transparent;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.navbar-brand {
  color: #fff !important;
  font-size: 28px;
}
.nav-link {
  color: #fff !important;
  font-weight: 500;
}
/* Setelah scroll */
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.navbar.scrolled .navbar-brand {
  color: #222 !important;
}
.navbar.scrolled .nav-link {
  color: #222 !important;
}
/* ===========================
   MOBILE
=========================== */
@media (max-width: 991.98px) {
  /* Selalu putih */
  .navbar {
    background: #fff !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  }
  .navbar-brand {
    color: #222 !important;
  }
  .nav-link {
    color: #222 !important;
  }
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    margin-top: 10px;
    border-radius: 12px;
  }
}
.hero {
  height: 100vh;
}
.carousel-item {
  height: 100vh;
  position: relative;
}
.carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  top: 0;
  left: 0;
}
.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 70%;
}
.caption h5 {
  font-size: 20px;
  letter-spacing: 3px;
}
.caption h1 {
  font-size: 60px;
  font-weight: 700;
  margin: 20px 0;
}
.caption p {
  width: 60%;
  line-height: 30px;
  margin-bottom: 40px;
}
.btn {
  border-radius: 50px;
  padding: 14px 35px;
}
/*============================*/
section {
  padding: 100px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title span {
  color: #2e8b57;
  font-weight: 600;
  letter-spacing: 2px;
}
.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-top: 10px;
}
/*============================*/
.trusted {
  background: #fafafa;
}
.partner-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.partner-wrapper img {
  height: 45px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s;
}
.partner-wrapper img:hover {
  filter: none;
  opacity: 1;
}
/*============================*/
.subtitle {
  color: #2e8b57;
  font-weight: 600;
  letter-spacing: 2px;
}
.about h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 15px 0;
}
.about p {
  font-size: 17px;
  line-height: 1.9;
  color: #666;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}
.feature-list div {
  font-weight: 500;
}
.feature-list i {
  color: #2e8b57;
  margin-right: 10px;
}
/*============================*/
.category {
  background: #f8f9fa;
}
.category-card {
  background: white;
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  transition: 0.35s;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.category-card .icon {
  width: 90px;
  height: 90px;
  margin: auto;
  background: #2e8b57;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.category-card .icon i {
  font-size: 38px;
  color: white;
}
.category-card h4 {
  font-weight: 700;
}
.category-card p {
  color: #777;
}
/*================ FEATURE PRODUCT =================*/
.featured-product {
  background: white;
}
.featured-product h3 {
  font-size: 42px;
  font-weight: 700;
}
.product-image {
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
.product-feature-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}
.product-feature-list li {
  margin-bottom: 15px;
  font-size: 18px;
}
.product-feature-list i {
  color: #2e8b57;
  margin-right: 10px;
}
/*================ WHY =================*/
.why-us {
  background: #f8f9fa;
}
.why-card {
  padding: 40px;
  background: white;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: 0.35s;
}
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.why-card i {
  font-size: 55px;
  color: #2e8b57;
  margin-bottom: 20px;
}
/*================ PROCESS =================*/
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.step {
  text-align: center;
}
.circle {
  width: 70px;
  height: 70px;
  background: #2e8b57;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.line {
  height: 3px;
  background: #2e8b57;
  flex: 1;
  margin: 0 15px;
}
/*================ STAT =================*/
.statistics {
  background: #2e8b57;
  color: white;
}
.statistics h2 {
  font-size: 52px;
  font-weight: 700;
}
.statistics p {
  font-size: 18px;
}
/*================ SERVICES ================*/
.services {
  background: #fff;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  height: 100%;
  transition: 0.35s;
  border: 1px solid #eee;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.service-card i {
  font-size: 50px;
  color: #2e8b57;
  margin-bottom: 20px;
}
/*================ GALLERY ================*/
.gallery {
  background: #f8f9fa;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
  transition: 0.4s;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}
/*================ VIDEO ================*/
.video-company {
  background: url("../images/video-bg.jpg") center center/cover;
  padding: 120px 0;
  position: relative;
  color: white;
}
.overlay-dark {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}
.video-company .container {
  position: relative;
  z-index: 2;
}
.play-button {
  width: 90px;
  height: 90px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: white;
  color: #2e8b57;
  font-size: 45px;
  text-decoration: none;
  margin-top: 30px;
}
/*================ CTA ================*/
.cta-section {
  background: #2e8b57;
  color: white;
}
.cta-section h2 {
  font-size: 42px;
  font-weight: 700;
}
.cta-section p {
  opacity: 0.9;
}
/*================ BLOG ================*/
.blog-section {
  background: #fff;
}
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.35s;
}
.blog-card:hover {
  transform: translateY(-8px);
}
.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.blog-content {
  padding: 25px;
}
.blog-category {
  background: #2e8b57;
  color: #fff;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 13px;
}
.blog-content h4 {
  margin: 20px 0 10px;
  font-weight: 700;
}
.blog-content a {
  text-decoration: none;
  color: #2e8b57;
  font-weight: 600;
}
/*================ FAQ ================*/
.faq-section {
  background: #f8f9fa;
}
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
}
/*================ NEWSLETTER ================*/
.newsletter {
  background: #2e8b57;
  color: #fff;
}
.newsletter-form {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-form input {
  width: 400px;
  max-width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
}
.newsletter-form button {
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  background: #fff;
  color: #2e8b57;
  font-weight: 600;
}
/*================ WHATSAPP ================*/
.wa-button {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 999;
}
/*================ CONTACT =================*/
.contact-section {
  background: #fff;
}
.contact-box {
  padding: 35px;
  background: #fff;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: 0.3s;
}
.contact-box:hover {
  transform: translateY(-8px);
}
.contact-box i {
  font-size: 45px;
  color: #2e8b57;
  margin-bottom: 20px;
}
/*================ MAP =================*/
.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
}
/*================ FOOTER =================*/
footer {
  background: #111827;
  color: white;
  padding: 80px 0 30px;
}
footer h5 {
  margin-bottom: 20px;
}
footer ul {
  padding: 0;
  list-style: none;
}
footer li {
  margin-bottom: 12px;
}
footer a {
  color: #ddd;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}
.social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}
.social a {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 22px;
}
footer hr {
  margin: 40px 0;
  border-color: rgba(255, 255, 255, 0.08);
}
.copyright {
  text-align: center;
  color: #bbb;
}
/*================ TOP BUTTON =================*/
#topBtn {
  position: fixed;
  right: 25px;
  bottom: 95px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #2e8b57;
  color: white;
  display: none;
  font-size: 22px;
  cursor: pointer;
  z-index: 999;
}
/*================ LOGO SLIDER =================*/
/* =============================
   CLIENT LOGO SLIDER
============================= */
.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
  padding: 15px 0;
}
/* Fade kiri */
.logo-slider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to right, #fff, transparent);
  z-index: 2;
}
/* Fade kanan */
.logo-slider::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(to left, #fff, transparent);
  z-index: 2;
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 20px; /* Jarak antar logo */
  width: max-content;
  animation: scrollLogo 25s linear infinite;
}
.logo-track img {
  width: 95px;
  height: 95px;
  object-fit: contain;
  background: #fff;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid #ececec;
  flex-shrink: 0;
  transition: 0.35s;
  filter: grayscale(100%);
  opacity: 0.75;
}
.logo-track img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
/* Pause saat hover */
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}
/* Infinite Scroll */
@keyframes scrollLogo {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .logo-track img {
    width: 70px;
    height: 70px;
    padding: 10px;
  }
  .logo-track {
    gap: 12px;
  }
}
