body {
  font-family: "Inter", sans-serif;
  background: #f6f9f7;
  color: #344e41;
}

/* Mobile Navbar */
/* MOBILE NAV IMPROVEMENT */
@media (max-width: 926px) {
  .navbar {
    padding: 12px 16px;
  }

  /* BRAND */
  .navbar-brand {
    font-size: 1.1rem;
  }

  /* TOGGLER BUTTON */
  .navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
  }

  /* MENU DROPDOWN */
  .navbar-collapse {
    background: white;
    margin-top: 10px;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  /* NAV LINK */
  .navbar-nav .nav-link {
    padding: 12px 10px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .navbar-nav .nav-link:hover {
    background: #f1f5f9;
  }

  /* CTA BUTTON */
  .navbar-nav .btn {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
  }
}

.navbar-collapse {
  transition: all 0.3s ease;
}

.navbar-toggler {
  font-size: 1.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* DEFAULT (TOP) */
.glass-nav {
  background: transparent;
  transition: all 0.3s ease;
}

/* SCROLL ACTIVE */
.navbar.scrolled {
  background: #ffffff !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;

  background:
    linear-gradient(rgba(246, 249, 247, 0.88), rgba(202, 210, 197, 0.85)),
    url("https://media2.4life.com/images/banners/bg_Indonesia_together_building_people_20260312134051.webp?width=1920&mode=crop&quality=80");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-profile {
  width: 85%;
  border-radius: 20px;
}

@media (max-width: 926px) {
  .hero-profile {
    /* width: 75%; */
    display: none;
    margin-bottom: 20px;
  }
  .hero-title {
    font-size: 21px;
  }
}

.hero-title {
  /* font-size: 2.8rem; */
  font-weight: 600;
}

.highlight {
  color: #52796f;
}

/* BUTTON */
.btn-natural {
  background: #84a98c;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
}

.btn-natural:hover {
  background: #52796f;
}

/* SECTION */
.section {
  padding: 100px 0;
}

.soft-bg {
  background: #edf2f4;
}

/* CARD */
.testimonial-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.testi-img {
  width: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.quote {
  font-style: italic;
  margin-bottom: 10px;
}

.result {
  font-size: 0.9rem;
  color: #52796f;
  font-weight: 500;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* PROFILE */
.profile-img {
  width: 80%;
  border-radius: 20px;
}

.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffef91;
  color: #FF3737;
  padding: 15px;
  border-radius: 50%;
}

.social-icon img {
  transition: 0.3s;
  filter: grayscale(10%);
}

.social-icon:hover img {
  transform: translateY(-3px) scale(1.1);
  filter: none;
}

.cta-box {
  background: #e6f4ea;
  padding: 40px;
  border-radius: 20px;
}

.section.soft-bg {
  background: #f8fafc;
}

.section-title {
  font-weight: 600;
}

.btn-success {
  font-weight: 500;
}

/* ABOUT SPACING */
.about-text {
  padding-right: 20px;
  text-align: justify;
}

.about-image {
  padding-left: 20px;
}

/* SOCIAL WRAPPER */
.social-wrapper {
  max-width: 400px;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 920px) {
  /* STACK VERTICAL */
  .about-text {
    padding-right: 10;
    text-align: center;
  }

  .about-image {
    padding-left: 0;
    margin-top: 20px;
  }

  /* JARAK ANTARA SOCIAL & IMAGE */
  .social-wrapper {
    margin-bottom: 25px;
  }

  /* CENTER SOCIAL ICON */
  .social-wrapper .d-flex {
    justify-content: center;
  }

  /* TITLE */
  .social-title {
    display: inline-block;
    margin-bottom: 15px;
  }

  /* IMAGE SIZE */
  .profile-img {
    width: 75%;
    max-width: 280px;
  }
}