/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Color Variables */
:root {
  --primary-brown: #8b4513;
  --golden-brown: #d2b48c;
  --cream: #f5f5dc;
  --white: #ffffff;
  --dark-brown: #654321;
  --light-brown: #deb887;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  flex: 1;
}

.logo {
  height: 60px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.nav-menu {
  flex: 2;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.nav-cta {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark-brown);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-brown);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-brown);
  transition: width 0.3s;
}

.cta-nav {
  background: var(--primary-brown);
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: background 0.3s;
  text-decoration: none !important;
}

.cta-nav:hover {
  background: var(--dark-brown);
}

.cta-nav::after {
  display: none;
}

/* Tombol CTA di CTA Section */
.cta-section .cta-button {
  background: #d2b48c;
  color: #fff !important;
  border: none;
  border-radius: 30px;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(166, 124, 82, 0.12);
  transition: background 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-section .cta-button:hover {
  background: #c2a06c;
  box-shadow: 0 6px 24px rgba(166, 124, 82, 0.18);
  color: #fff;
}

/* Mobile Menu Toggle */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: 44vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    gap: 0;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-brown);
    text-decoration: none;
    padding: 0.8rem 2rem;
    transition: all 0.3s;
    text-align: center;
    width: 80%;
    border-bottom: 1px solid rgba(139, 69, 19, 0.2);
    position: relative;
  }

  .nav-menu a:last-of-type {
    border-bottom: none;
  }

  .nav-menu a:hover {
    background: var(--cream);
    color: var(--primary-brown);
    border-bottom-color: var(--primary-brown);
  }

  .nav-menu .cta-nav {
    background: var(--primary-brown);
    color: white !important;
    border: none;
    border-radius: 25px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
    border-bottom: none;
    width: auto;
    padding: 0.8rem 2rem;
  }

  .nav-menu .cta-nav:hover {
    background: var(--dark-brown);
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.003);
  transition: all 0.3s;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.13);
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary-brown);
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 3px;
  position: relative;
}

.mobile-menu-toggle span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--golden-brown);
  border-radius: 3px;
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.mobile-menu-toggle:hover span::before {
  transform: scaleX(1);
}

.mobile-menu-toggle.active {
  background: rgba(139, 69, 19, 0.1);
}

.mobile-menu-toggle.active span {
  background: var(--dark-brown);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-toggle.active span::before {
  transform: scaleX(0);
}

/* Hero Section */
.hero {
  margin-top: 70px;
  min-height: 90vh;
  background: linear-gradient(
      rgba(245, 245, 220, 0.925),
      rgba(222, 184, 135, 0.815)
    ),
    url("images/bg1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text {
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-brown);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.hero-tagline {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--golden-brown);
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.589);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--dark-brown);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-brown); /* coklat utama */
  color: white;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgb(255, 255, 255);
  animation: pulse-cta 2s infinite;
  position: relative;
  overflow: hidden;
}

.hero-cta:hover {
  background: #ccb322a1;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(161, 163, 162, 0.5);
  animation: none;
}

.hero-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.hero-cta:hover::before {
  left: 100%;
}

@keyframes pulse-cta {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero-images {
  position: relative;
  height: 600px;
  width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: all 0.8s ease-in-out;
  transform: translateX(100%);
}

.hero-carousel img.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-carousel img.prev {
  transform: translateX(-100%);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.cta-button.large {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
}

/* Social Proof */
.social-proof {
  padding: 4rem 0;
  background: var(--white);
  text-align: center;
}

.social-proof h2 {
  font-size: 2rem;
  color: var(--primary-brown);
  margin-bottom: 2rem;
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.proof-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.proof-gallery img:hover {
  transform: scale(1.05);
}

/* Problem Section */
.problem {
  padding: 4rem 0;
  background: var(--cream);
}

.problem h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-brown);
  margin-bottom: 1rem;
}

.problem > .container > p {
  text-align: center;
  font-size: 1.2rem;
  color: var(--dark-brown);
  margin-bottom: 3rem;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.comparison-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-item.highlight {
  border: 3px solid var(--golden-brown);
  transform: scale(1.05);
}

.comparison-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.comparison-item h3 {
  color: var(--primary-brown);
  margin-bottom: 1rem;
}

.comparison-item ul {
  list-style: none;
  text-align: left;
}

.comparison-item li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.comparison-item li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-brown);
  font-weight: bold;
}

/* Offer Section */
.offer {
  padding: 4rem 0;
  background: var(--primary-brown);
  color: white;
  text-align: center;
}

.offer h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.offer p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.offer .cta-button {
  background: var(--golden-brown);
  color: var(--dark-brown);
}

.offer .cta-button:hover {
  background: var(--light-brown);
}

/* Features & Benefits */
.features,
.benefits {
  padding: 4rem 0;
}

.features {
  background: var(--white);
}

.benefits {
  background: var(--cream);
}

.features h2,
.benefits h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-brown);
  margin-bottom: 3rem;
}

.features-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item,
.benefit-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.feature-item:hover,
.benefit-item:hover {
  transform: translateY(-5px);
}

.feature-item i,
.benefit-item i {
  font-size: 3rem;
  color: var(--primary-brown);
  margin-bottom: 1rem;
}

.feature-item h3,
.benefit-item h3 {
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

/* Products */
.products {
  padding: 4rem 0;
  background: var(--white);
}

.products h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-brown);
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  border: 3px solid var(--golden-brown);
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.product-image-container {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--cream);
}

.product-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.product-images img.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
}

/* keluar */
.product-images img.slide-left {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 1;
}

.product-images img.slide-right {
  transform: translateX(100%);
  opacity: 0;
  z-index: 1;
}

/* masuk */
.product-images img.enter-left {
  transform: translateX(-100%);
}

.product-images img.enter-right {
  transform: translateX(100%);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-brown);
  transition: all 0.3s;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.product-item:hover .nav-btn {
  opacity: 1;
  visibility: visible;
}

.nav-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

.image-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background: white;
  transform: scale(1.2);
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  color: var(--primary-brown);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.product-content p {
  color: var(--dark-brown);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    var(--primary-brown) 0%,
    var(--dark-brown) 100%
  );
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.product-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
  background: linear-gradient(
    135deg,
    var(--dark-brown) 0%,
    var(--primary-brown) 100%
  );
}

.product-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.product-cta:hover::before {
  left: 100%;
}

.product-cta i {
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background: var(--cream);
}

.testimonials h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-brown);
  margin-bottom: 3rem;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-container {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
}

.testimonial-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, white 0%, var(--cream) 100%);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--golden-brown);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.testimonial-item.active {
  transform: translateX(0);
  z-index: 2;
}

/* keluar */
.testimonial-item.slide-left {
  transform: translateX(-100%);
}
.testimonial-item.slide-right {
  transform: translateX(100%);
}

/* masuk */
.testimonial-item.enter-left {
  transform: translateX(-100%);
}
.testimonial-item.enter-right {
  transform: translateX(100%);
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--primary-brown),
    var(--golden-brown)
  );
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
  z-index: 2;
}

.stars {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-item p {
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--dark-brown);
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.customer {
  text-align: center;
  position: relative;
  z-index: 2;
}

.customer strong {
  color: var(--primary-brown);
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.customer span {
  color: var(--golden-brown);
  font-size: 1rem;
  font-weight: 500;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-nav {
  background: white;
  border: 2px solid var(--golden-brown);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-brown);
  transition: all 0.3s;
  flex-shrink: 0;
}

.testimonial-nav:hover {
  background: var(--primary-brown);
  color: white;
  transform: scale(1.1);
}

.testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(139, 69, 19, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dot.active {
  background: var(--primary-brown);
  transform: scale(1.2);
}

.testimonial-item.next-transition {
  transform: translateX(100%);
}

.testimonial-item.prev-transition {
  transform: translateX(-100%);
}

/* Bonus Section */
.bonus {
  padding: 4rem 0;
  background: var(--white);
}

.bonus h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-brown);
  margin-bottom: 3rem;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.bonus-item {
  text-align: center;
  padding: 2rem;
  background: var(--cream);
  border-radius: 15px;
  transition: transform 0.3s;
}

.bonus-item:hover {
  transform: translateY(-5px);
}

.bonus-item i {
  font-size: 3rem;
  color: var(--primary-brown);
  margin-bottom: 1rem;
}

.bonus-item h3 {
  color: var(--dark-brown);
  margin-bottom: 1rem;
}

/* Founder Section */
.founder {
  padding: 4rem 0;
  background: var(--cream);
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.founder-image img {
  width: 100%;
  border-radius: 15px;
}

.founder-text h2 {
  color: var(--primary-brown);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.founder-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-brown);
  margin-bottom: 2rem;
}

.founder-signature strong {
  color: var(--primary-brown);
  display: block;
}

.founder-signature span {
  color: var(--golden-brown);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: var(--primary-brown);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Trust Section */
.trust {
  padding: 3rem 0;
  background: var(--white);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.trust-item {
  text-align: center;
  padding: 1.5rem;
}

.trust-item i {
  font-size: 2.5rem;
  color: var(--primary-brown);
  margin-bottom: 1rem;
}

.trust-item h3 {
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: var(--golden-brown);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background: var(--cream);
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-brown);
  margin-bottom: 3rem;
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--cream);
}

.faq-question h3 {
  color: var(--primary-brown);
  font-size: 1.1rem;
}

.faq-question i {
  color: var(--golden-brown);
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: var(--dark-brown);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--dark-brown);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-info {
  max-width: 100%;
}

.footer-info h3 {
  color: var(--golden-brown);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-info p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--light-brown);
}

.contact-info {
  margin-top: 1rem;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 0.95rem;
  color: var(--light-brown) !important;
}

.contact-info p a {
  color: var(--light-brown) !important;
  text-decoration: none !important;
}

.contact-info p a:visited,
.contact-info p a:hover,
.contact-info p a:active {
  color: var(--light-brown) !important;
}

/* Safari/iOS specific fixes */
.contact-info p a[href^="tel"] {
  color: var(--light-brown) !important;
  text-decoration: none !important;
  -webkit-text-decoration-color: var(--light-brown) !important;
  -webkit-appearance: none !important;
}

@supports (-webkit-touch-callout: none) {
  .contact-info p a {
    color: var(--light-brown) !important;
    -webkit-text-fill-color: var(--light-brown) !important;
  }
}

.contact-info i {
  color: var(--golden-brown);
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 16px;
}

.footer-links h4 {
  color: var(--golden-brown);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--light-brown);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.95rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--golden-brown);
  transform: translateX(5px);
}

.footer-social h4 {
  color: var(--golden-brown);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--primary-brown);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--golden-brown);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(210, 180, 140, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--primary-brown);
  color: var(--light-brown);
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}

.floating-wa:hover {
  background: #128c7e;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .logo {
    height: 50px;
    max-width: 200px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

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

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-images {
    height: 400px;
    width: 280px;
  }

  .hero-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .founder-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-image-container {
    height: 350px;
  }

  .nav-btn {
    opacity: 1;
    visibility: visible;
  }

  .product-content {
    padding: 1.2rem;
  }

  .product-content h3 {
    font-size: 1.2rem;
  }

  .testimonials-container {
    height: 280px;
  }

  .testimonial-item {
    padding: 2rem 1.5rem;
  }

  .testimonial-controls {
    gap: 1rem;
  }

  .testimonial-nav {
    width: 45px;
    height: 45px;
  }

  .features-grid,
  .benefits-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .trust-items {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }

  .footer-info {
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer-info h3 {
    font-size: 1.3rem;
  }

  .footer-info p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .contact-info {
    text-align: left;
    max-width: 100%;
  }

  .contact-info p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    word-break: break-word;
  }

  .footer-links {
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .footer-links ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .footer-links li {
    margin-bottom: 0;
  }

  .footer-social {
    text-align: center;
  }

  .footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .social-links {
    justify-content: center;
    gap: 1.5rem;
  }

  .social-links a {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    font-size: 0.85rem;
  }

  .container {
    padding: 0 15px;
  }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-info {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer-links,
  .footer-social {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .floating-wa {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .footer-info h3 {
    font-size: 1.2rem;
  }

  .footer-info p {
    font-size: 0.85rem;
  }

  .contact-info p {
    font-size: 0.85rem;
    gap: 0.6rem;
  }

  .footer-links h4,
  .footer-social h4 {
    font-size: 1rem;
  }

  .footer-links ul {
    gap: 1rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .social-links {
    gap: 1rem;
  }

  .social-links a {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding-top: 1rem;
  }
}

@media (max-width: 768px) {
  .testimonials-carousel {
    overflow: visible;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .testimonials-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .testimonial-item {
    border: 3px solid var(--golden-brown);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, white 0%, var(--cream) 100%);
    padding: 1.5rem 1rem 1.5rem 1rem;
    margin: 0 auto 24px auto;
    min-width: 0;
    max-width: 92.3vw;
    width: 97vw;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
  }
  .testimonial-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
  }
  .stars {
    font-size: 1.2rem;
    color: #ffd700;
    margin-top: 0.5rem;
    margin-bottom: 0.7rem;
    letter-spacing: 2px;
  }
  .customer strong {
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.2rem;
  }
  .customer span {
    font-size: 0.95rem;
    color: #888;
  }
  .testimonial-controls {
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .testimonial-nav {
    font-size: 1.2rem;
    padding: 0.5rem 0.9rem;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    color: #a67c52;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: background 0.2s;
  }
  .testimonial-nav:active {
    background: #e0d3c2;
  }
  .testimonial-indicators {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
  }
  .testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1bfa3;
    opacity: 0.6;
    transition: background 0.2s, opacity 0.2s;
  }
  .testimonial-dot.active {
    background: #a67c52;
    opacity: 1;
  }
}
