/* Global */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ff4fa3;
  color: #ffffff;
}

a { color: inherit; }

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 6vw;
  background: rgba(139, 13, 93, 0.9);
  backdrop-filter: blur(12px);
}

.header-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
  margin-top: 6px;
  margin-bottom: 4px;
}

.header-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 14px;
}

.header-nav a {
  text-decoration: none;
  opacity: 0.9;
}

.header-nav a:hover {
  opacity: 1;
}

.header-btn {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #ffd1f0;
  font-size: 13px;
}

/* HERO */
.hero {
  min-height: 70vh;
  padding: 60px 8vw 80px;
  background: linear-gradient(135deg, #ff4fa3 0%, #e2188f 45%, #a10f6e 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #ffffff;
}

.hero-title {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero-sub {
  font-size: 16px;
  opacity: 0.95;
  margin: 0 0 26px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: #ffffff;
  color: #d9138a;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

/* Fade-in animations */
.fade-in-1, .fade-in-2, .fade-in-3, .fade-in-4, .fade-in-5 {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s forwards;
}
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.25s; }
.fade-in-3 { animation-delay: 0.4s; }
.fade-in-4 { animation-delay: 0.55s; }
.fade-in-5 { animation-delay: 0.7s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HOW IT WORKS */
.how {
  text-align: center;
  padding: 100px 6vw;
  color: #fff;
  background: linear-gradient(135deg, #ff4fa3 0%, #d9138a 40%, #a10f6e 100%);
}

.how h2 {
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: 700;
}

.how-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 50px;
}

.how-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.step {
  width: 260px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.25);
}

.step-icon {
  font-size: 42px;
  margin-bottom: 14px;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.step p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.4;
}

/* WHY */
.why {
  text-align: center;
  padding: 100px 6vw;
  color: #ffffff;
  background: linear-gradient(145deg, #e2188f 0%, #c21575 50%, #8b0d5d 100%);
}

.why h2 {
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: 700;
}

.why-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  padding: 30px 24px;
  border-radius: 18px;
  transition: 0.3s ease;
  box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.18);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.why-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 600;
}

.why-card p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.4;
}

/* DISCOVER */
.discover {
  position: relative;
  height: 420px;
  background-image: url("assets/lifestyle-paarsal.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.discover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(255, 79, 163, 0.80) 0%,
      rgba(217, 19, 138, 0.80) 40%,
      rgba(161, 15, 110, 0.85) 100%
  );
  backdrop-filter: blur(2px);
}

.discover-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  padding: 0 20px;
}

.discover h2 {
  font-size: 34px;
  margin-bottom: 16px;
  font-weight: 700;
}

.discover p {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.95;
  margin-bottom: 26px;
}

.discover-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #ffffff;
  color: #d9138a;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.discover-btn:hover {
  background: #ffeff7;
}

/* FAQ */
.faq {
  padding: 100px 6vw;
  color: #fff;
  background: linear-gradient(145deg, #a10f6e 0%, #d9138a 40%, #ff4fa3 100%);
  text-align: center;
}

.faq h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.faq-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 50px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0px 8px 25px rgba(0,0,0,0.2);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  .faq-answer p {
  margin: 15px 0 20px;
  opacity: 0.9;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400 !important;
}

}

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

.faq-item.active .faq-question {
  color: #ffd7f3;
}

/* POLICY */
.policy {
  padding: 90px 6vw;
  text-align: center;
  background: linear-gradient(135deg, #d9138a 0%, #b91077 50%, #8b0d5d 100%);
  color: #ffffff;
}

.policy h2 {
  font-size: 34px;
  margin-bottom: 10px;
  font-weight: 700;
}

.policy-subtitle {
  opacity: 0.9;
  font-size: 16px;
  margin-bottom: 40px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.policy-card {
  display: block;
  padding: 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: #ffffff;
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
  box-shadow: 0px 6px 25px rgba(0,0,0,0.18);
}

.policy-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-5px);
}

.policy-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.policy-card p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  padding: 90px 6vw;
  background: linear-gradient(135deg, #ff4fa3 0%, #d9138a 45%, #a10f6e 100%);
  color: #fff;
}

.final-cta h2 {
  font-size: 40px;
  margin-bottom: 12px;
  font-weight: 700;
}

.final-cta p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 30px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.final-btn-primary-gradient,
.final-btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.final-btn-primary-gradient {
  background: linear-gradient(135deg, #ffebf7 0%, #ffffff 50%, #ffd5f1 100%);
  color: #d9138a;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.final-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

/* FOOTER */
.footer {
  background: linear-gradient(145deg, #8b0d5d 0%, #d9138a 50%, #ff4fa3 100%);
  padding: 70px 6vw 40px;
  color: #fff;
  position: relative;
  margin-top: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-tagline {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.4;
}

.footer-col h4 {
  font-size: 17px;
  margin-bottom: 16px;
  font-weight: 600;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ffe4f6;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
}

.footer-col ul li a:hover {
  opacity: 1;
  text-shadow: 0 0 8px rgba(255, 0, 120, 0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.22);
  margin-top: 40px;
  padding-top: 18px;
  text-align: center;
  font-size: 13px;
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .hero {
    align-items: flex-start;
  }
  .hero-title {
    font-size: 30px;
  }
  .header-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media(max-width: 700px) {
  .how h2 { font-size: 28px; }
  .how-steps { gap: 20px; }
  .step { width: 100%; max-width: 320px; }

  .discover {
    height: 380px;
  }
  .discover h2 {
    font-size: 28px;
  }

  .faq h2 { font-size: 30px; }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }

  .final-cta h2 {
    font-size: 32px;
  }
}

/* Floating Buttons */
.btn-back-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #ff66b6, #d9138a);
  border-radius: 50%;
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 999;
}
.btn-back-top.visible { opacity:1; pointer-events:auto; }
.btn-back-top:hover { transform: translateY(-4px); }

.btn-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 999;
  transition: 0.25s ease;
}
.btn-whatsapp img { width: 32px; height: 32px; }
.btn-whatsapp:hover { transform: translateY(-4px); }

/* Fix FAQ bold issue */
.faq-answer p {
  font-weight: 400 !important;
}

/* Floating buttons */
.floating-whatsapp, 



.floating-whatsapp img {
  width:55px;
  height:55px;
  border-radius:50%;
  box-shadow:0 4px 12px rgba(0,0,0,0.25);
}








/* WHATSAPP BUTTON FIX */
.whatsapp-btn {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 70px !important;
  height: 70px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 99999 !important;
}

.whatsapp-btn img {
  width: 40px !important;
  height: 40px !important;
  object-fit: contain !important;

  /* HERO LAYOUT WITH SLIDER */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
}

.hero-left {
    width: 50%;
    z-index: 2;
}

/* SLIDER */
.hero-slider {
    width: 45%;
    height: 420px;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

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

.hero-slider .slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slider .slide.active {
    opacity: 1;
}
