* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #b78962;
  color: #5d4037;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

img {
  max-width: 100%;
  height: auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #f4d2ab;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}

/* Navbar */
#mainNav {
  padding: 15px 0;
  transition: all 0.4s ease;
  background: transparent;
}

#mainNav.navbar-scrolled {
  background: rgba(93, 64, 55, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

#mainNav .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.5px;
}

#mainNav .navbar-brand i {
  color: #f4d2ab;
}

#mainNav .nav-link {
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  font-size: 0.95rem;
  margin: 0 8px;
  position: relative;
  transition: color 0.3s ease;
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #f4d2ab;
  transition: width 0.3s ease;
}

#mainNav .nav-link:hover {
  color: #f4d2ab;
}

#mainNav .nav-link:hover::after {
  width: 60%;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #b78962 0%, #a07852 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(244, 210, 171, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-tagline {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #f4d2ab;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 15px;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 500px;
}

.btn-order {
  background: #25D366;
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-order:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.hero-img-wrapper {
  position: relative;
  display: inline-block;
}

.hero-img-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px dashed rgba(244, 210, 171, 0.3);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-img {
  border-radius: 50%;
  width: 400px;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border: 5px solid rgba(244, 210, 171, 0.3);
  transition: transform 0.5s ease;
}

.hero-img:hover {
  transform: scale(1.03);
}

/* Keunggulan */
.keunggulan {
  padding: 100px 0;
  background: #b78962;
  position: relative;
}

.keunggulan-card {
  background: #f4d2ab;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.keunggulan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.keunggulan-icon {
  width: 65px;
  height: 65px;
  background: #b78962;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s ease;
}

.keunggulan-card:hover .keunggulan-icon {
  transform: rotateY(180deg);
}

.keunggulan-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #5d4037;
  margin-bottom: 8px;
}

.keunggulan-card p {
  font-size: 0.9rem;
  color: #7a5547;
  margin-bottom: 0;
}

.keunggulan-img img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border: 6px solid #f4d2ab;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.keunggulan-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Manfaat */
.manfaat {
  padding: 100px 0;
  background: linear-gradient(135deg, #a07852 0%, #b78962 100%);
}

.manfaat-card {
  background: #f4d2ab;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.manfaat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.manfaat-img {
  overflow: hidden;
  height: 220px;
}

.manfaat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.manfaat-card:hover .manfaat-img img {
  transform: scale(1.1);
}

.manfaat-body {
  padding: 25px;
  text-align: center;
}

.manfaat-body h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #5d4037;
  margin-bottom: 10px;
}

.manfaat-body p {
  font-size: 0.9rem;
  color: #7a5547;
  margin-bottom: 0;
  line-height: 1.7;
}

/* Varian */
.varian {
  padding: 100px 0;
  background: #b78962;
}

.varian-desc {
  background: #f4d2ab;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  height: 100%;
}

.varian-desc h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #5d4037;
  margin-bottom: 15px;
}

.varian-desc p {
  font-size: 0.95rem;
  color: #7a5547;
  line-height: 1.8;
}

.varian-card {
  background: #f4d2ab;
  padding: 25px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.varian-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.varian-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #5d4037;
  margin-bottom: 12px;
}

.varian-card h5 i {
  color: #b78962;
}

.varian-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.varian-card ul li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: #7a5547;
}

.varian-card ul li i {
  color: #25D366;
  margin-right: 10px;
}

/* Gallery */
.gallery {
  padding: 100px 0;
  background: linear-gradient(135deg, #b78962 0%, #a07852 100%);
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(93, 64, 55, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

.gallery-caption {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #f4d2ab;
  font-style: italic;
}

/* Harga */
.harga {
  padding: 100px 0;
  background: #b78962;
}

.harga-card {
  background: #f4d2ab;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.harga-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.harga-img {
  height: 100%;
  min-height: 280px;
}

.harga-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.harga-body {
  padding: 35px;
}

.harga-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #5d4037;
  margin-bottom: 10px;
}

.harga-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #b78962;
  margin-bottom: 20px;
}

.harga-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.harga-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: #7a5547;
  border-bottom: 1px solid rgba(183, 137, 98, 0.15);
}

.harga-list li:last-child {
  border-bottom: none;
}

.harga-list li i {
  color: #25D366;
  margin-right: 12px;
}

.btn-order-sm {
  background: #25D366;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  display: inline-block;
  text-decoration: none;
}

.btn-order-sm:hover {
  background: #1da851;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
  background: #5d4037;
  color: rgba(255,255,255,0.85);
  padding: 60px 0 30px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f4d2ab;
  margin-bottom: 15px;
}

.footer-brand i {
  color: #f4d2ab;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #f4d2ab;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #b78962;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact li i {
  width: 20px;
  color: #f4d2ab;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(244, 210, 171, 0.1);
  border-radius: 50%;
  color: #f4d2ab;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #f4d2ab;
  color: #5d4037;
  transform: translateY(-3px);
}

.footer-jam {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-jam i {
  color: #f4d2ab;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(244, 210, 171, 0.15);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Float WA */
.float-wa {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

.float-wa:hover {
  background: #1da851;
  color: #fff;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-img {
    width: 300px;
    height: 300px;
  }

  .hero-text {
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-desc {
    margin: 0 auto 25px;
  }

  .keunggulan-img img {
    width: 200px;
    height: 200px;
    margin: 20px 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-img {
    width: 250px;
    height: 250px;
  }

  .keunggulan-card {
    padding: 20px;
  }

  .manfaat-img {
    height: 180px;
  }

  .varian-desc {
    padding: 25px;
  }

  .varian-desc h3 {
    font-size: 1.5rem;
  }

  .harga-img {
    min-height: 200px;
  }

  .harga-body {
    padding: 25px;
  }

  .harga-title {
    font-size: 1.5rem;
  }

  .harga-price {
    font-size: 2rem;
  }

  .gallery-item img {
    height: 220px;
  }

  .footer {
    padding: 40px 0 20px;
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .float-wa {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }
}

/* AOS Custom Overrides */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}
