/* ===================== */
/* RESET & GLOBAL */
/* ===================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Poppins, sans-serif;
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  padding-top: 80px;
}

/* overlay biar teks kebaca */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.75); /* lebih terang teks */
  z-index: -1;
}

/* ===================== */
/* NAVBAR (FINAL CLEAN) */
/* ===================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  background: rgba(255,255,255,0.95);
  padding: 12px 50px;

  display: flex;
  justify-content: center;

  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border-bottom: 1px solid #eee; /* 🔥 bikin lebih tegas */
  z-index: 1000;
}

.nav-container {
  width: 100%;
  max-width: 1200px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 50px;
}

.logo span {
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

/* MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-menu li a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding-bottom: 4px;
  transition: 0.3s ease;
}

/* Hover underline effect */
.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #25D366;
  transition: 0.3s;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.nav-menu li a:hover {
  color: #25D366;
}

/* Active menu */
.nav-menu li a.active {
  color: #25D366;
}

.nav-menu li a.active::after {
  width: 100%;
}

/* ===================== */
/* HOME */
/* ===================== */

#home {
  padding: 40px 20px;
  text-align: center;
}

.home-intro {
  max-width: 600px;
  margin: auto;
}

.home-intro h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.home-intro p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.btn-intro {
  background: #25D366;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
}

.btn-intro:hover {
  background: #1ebe5d;
}

/* ===================== */
/* FEATURES */
/* ===================== */

.features-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 800px;
  margin: 40px auto;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 18px;

  background: rgba(255,255,255,0.9);
  padding: 22px;
  border-radius: 18px;

  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.05);

  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;

  background: rgba(37,211,102,0.1);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 28px;
  filter: grayscale(100%) brightness(0.3);
}

.feature-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: #222;
}
.feature-card {
  border: 1px solid #000000;
}

/* ===================== */
/* GUARANTEE */
/* ===================== */
.circle img {
  filter: contrast(1.05) saturate(1.05);
}

.guarantee-section {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.guarantee-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;

  max-width: 1100px;
  margin: auto;
}

.circle-wrap {
  position: relative;
  width: 260px;
  height: 260px;
}

.circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curve-svg {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 280px;
  height: 280px;
}

.guarantee-right {
  background: rgba(255,255,255,0.9);
  padding: 35px 40px;
  border-radius: 20px;

  max-width: 520px;
  line-height: 1.8;

  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.05);

  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.guarantee-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}
.guarantee-right p strong {
  color: #25D366;
}
.guarantee-right p {
  max-width: 480px;
  line-height: 1.8;
  text-align: justify; 
  color: #555;
}


/* ===================== */
/* PRODUCT HEADER */
/* ===================== */

.product-header {
  text-align: center;
  margin: 40px 0 20px;
}

.product-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
}

.info-banner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
/* ===================== */
/* PRODUCT SECTION */
/* ===================== */

.product-section {
  margin-bottom: 60px;
  text-align: center;
}

.product-section h3 {
  font-size: 1.6rem;
  margin: 50px 0 25px; /* ⬅️ ini kunci */
  color: #333;
  font-weight: 600;
}

.product-section h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #25D366;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* GRID */
.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

/* CARD */
.card {
  background: white;
  padding: 18px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #25D366;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* IMAGE */
.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* TITLE */
.title {
  font-weight: bold;
  margin: 10px 0 5px;
}

/* PRICE */
.price {
  color: #25D366;
  font-weight: bold;
  margin-bottom: 10px;
}

/* BUTTON */
.btn {
  display: block;
  background: #25D366;
  color: white;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
}

.btn:hover {
  background: #1ebe5d;
}

/* LOAD MORE */
.load-more {
  background: #25D366;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.load-more:hover {
  background: #1ebe5d;
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: repeat(3, 1fr); /* ✅ 2 card per baris */
  }
}

@media (max-width: 480px) {
  .container {
    grid-template-columns: repeat(2, 1fr); /* opsional kalau mau full */
  }
}

/* ===================== */
/* FILTER */
/* ===================== */

.filter-container {
  text-align: center;
  margin: 30px 0;
}

/* GROUP */
.filter-group {
  margin-bottom: 15px;
}

/* LABEL */
.filter-label {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 8px;
}

/* BUTTON */
.filter-btn {
  padding: 8px 18px;
  margin: 5px;
  border-radius: 999px;

  border: 1px solid transparent;
  background: #f3f3f3;
  color: #444;

  font-size: 0.9rem;
  font-weight: 500;

  cursor: pointer;
  transition: all 0.25s ease;
}


/* HOVER */
.filter-btn:hover {
  background: #e8e8e8;
}

/* ACTIVE */
.filter-btn.active {
  background: #25D366;
  color: white;
  border: 1px solid #25D366;

  box-shadow: 0 4px 10px rgba(37,211,102,0.25);
}

.filter-btn.active:hover {
  background: #1ebe5d;
}
/* ===================== */
/* ABOUT */
/* ===================== */

#about {
  background: rgba(255,255,255,0.85);
  margin: 20px;
  border-radius: 16px;
  text-align: center;
  padding: 40px 20px;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {

  .nav-links {
    gap: 20px;
  }

  .features-row {
    grid-template-columns: 1fr;
  }

  .guarantee-container {
    flex-direction: column;
    text-align: center;
  }

}

@media (max-width: 480px) {

  .navbar {
    flex-direction: column;
    height: auto;
    padding: 10px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .home-intro h1 {
    font-size: 1.6rem;
  }

}
.hidden {
  opacity: 0;
  transform: translateY(40px);
}

.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease;
}

/* ===================== */
/* FAQ */
/* ===================== */

#faq {
  background: rgba(255,255,255,0.85);
  margin: 20px;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
}

.faq-container {
  max-width: 700px;
  margin: auto;
  margin-top: 20px;
}

.faq-item {
  text-align: left;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.faq-item h4 {
  margin-bottom: 5px;
  color: #333;
}

.faq-item p {
  color: #666;
  font-size: 0.95rem;
}

/* ===================== */
/* HERO UPGRADE */
/* ===================== */

.home-intro h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #222;
}

.highlight {
  color: #25D366;
}

.home-intro p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
}

/* CTA */
.cta-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #25D366;
  color: white;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #25D366;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #25D366;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #25D366;
  color: white;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #25D366;
  margin-top: 5px;
}

.animal-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;

  background: rgba(255,255,255,0.9);
  padding: 8px;
  border-radius: 50px;
  backdrop-filter: blur(10px);

  width: fit-content;
  margin: 0 auto 25px;

  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.animal-tabs button {
  padding: 10px 22px;
  border-radius: 30px;
  border: none;

  font-size: 14px;
  font-weight: 600;

  background: transparent;
  color: #555;

  cursor: pointer;
  transition: all 0.25s ease;
}

.animal-tabs button.active {
  background: #25D366;
  color: white;

  box-shadow: 0 4px 10px rgba(37,211,102,0.3);
}
.animal-tabs button:hover {
  transform: translateY(-1px);
}

/* ===================== */
/* NAVBAR MOBILE CLEAN */
/* ===================== */
@media (max-width: 768px) {

  .navbar {
    padding: 10px 15px;
  }

  .nav-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* LOGO */
  .logo {
    justify-content: center;
  }

  .logo img {
    height: 40px;
  }

  .logo span {
    font-size: 16px;
  }

  /* MENU */
.nav-menu {
  background: rgba(255,255,255,0.9);
  padding: 8px 15px;
  border-radius: 20px;
}

  .nav-menu li a {
    font-size: 14px;
  }

}