/* =====================
   ROOT COLOR BRAND
===================== */
:root {
  --primary: #c13d6b;
  --primary-dark: #a22f59;
  --secondary: #66d9e8;
  --soft-pink: #fff2f6;
  --light: #fff9fb;
  --dark: #3d1830;
  --text: #333333;
}

/* =====================
     GLOBAL
  ===================== */
body {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--text);
  padding-top: 80px;
  line-height: 1.7;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

ul {
  padding-left: 18px;
}

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

button,
.btn,
.form-control,
textarea,
.form-select {
  min-height: 44px;
}

/* =====================
     BRAND & BUTTON
  ===================== */
.text-brand {
  color: var(--primary);
}

.btn-primary {
  background-color: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #a83259;
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  border-radius: 50px;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: #fff;
}

/* =====================
     NAVBAR
  ===================== */
.navbar {
  padding: 15px 0;
  background: #ffffff;
}

.navbar-brand img {
  max-height: 45px;
}

.nav-link {
  font-weight: 500;
  color: #444;
  margin-left: 10px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

/* =====================
      HERO
  ===================== */

.hero-section {
  padding-top: 120px;
  padding-bottom: 80px;

  background: linear-gradient(to bottom, #fff7fa, #ffffff);
}

.hero-box {
  background: linear-gradient(135deg, #fff0f5, #ffffff);

  border-radius: 40px;

  padding: 55px 60px;

  position: relative;

  overflow: hidden;

  box-shadow: 0 20px 50px rgba(176, 48, 96, 0.08);
}

.hero-box::before {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(255, 105, 160, 0.12),
    transparent 70%
  );

  top: -150px;
  right: -100px;
}

.hero-badge {
  display: inline-block;

  background: #ffe3ec;

  color: #c13d6b;

  padding: 10px 18px;

  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 22px;
}

.hero-title {
  font-size: 58px;

  line-height: 1.08;

  font-weight: 800;

  color: #2b1b25;

  margin-bottom: 22px;
}

.hero-desc {
  font-size: 19px;

  line-height: 1.9;

  color: #666;

  max-width: 520px;

  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  background: #c13d6b !important;

  border: none !important;

  border-radius: 50px;

  padding: 15px 32px;

  font-weight: 600;

  box-shadow: 0 10px 25px rgba(193, 61, 107, 0.25);
}

.hero-btn-secondary {
  border-radius: 50px;

  padding: 15px 32px;

  border: 1px solid #eee;

  font-weight: 600;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-modern {
  width: 100%;

  border-radius: 30px;

  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.14);
  transform: translateY(-8px);
}

.hero-floating-card {
  position: absolute;

  bottom: 25px;
  left: -20px;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(12px);

  border-radius: 18px;

  padding: 14px 18px;

  display: flex;
  gap: 12px;
  align-items: center;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.hero-floating-card i {
  font-size: 28px;

  color: #c13d6b;
}

.hero-floating-card h5 {
  margin: 0;

  font-size: 16px;
  font-weight: 700;
}

.hero-floating-card p {
  margin: 0;

  color: #666;

  font-size: 14px;
}

@media (max-width: 992px) {
  .hero-box {
    padding: 45px;
    text-align: center;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-desc {
    margin: auto auto 35px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-floating-card {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* =====================
   ABOUT SECTION
===================== */

.about-section {
  padding: 40px 0;

  background: linear-gradient(to bottom, #ffffff, #fff7fa);
}

.about-box {
  background: white;

  border-radius: 40px;

  padding: 70px;

  position: relative;

  overflow: hidden;

  box-shadow: 0 20px 50px rgba(176, 48, 96, 0.08);
}

.about-box::before {
  content: "";

  position: absolute;

  width: 400px;
  height: 400px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(255, 105, 160, 0.1),
    transparent 70%
  );

  bottom: -180px;
  right: -120px;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;

  border-radius: 30px;

  object-fit: cover;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-floating-card {
  position: absolute;

  bottom: 25px;
  left: -20px;

  background: rgba(255, 255, 255, 0.94);

  backdrop-filter: blur(12px);

  border-radius: 20px;

  padding: 16px 20px;

  display: flex;
  gap: 14px;
  align-items: center;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.about-floating-card i {
  font-size: 30px;

  color: #c13d6b;
}

.about-floating-card h5 {
  margin: 0;

  font-size: 16px;
  font-weight: 700;
}

.about-floating-card p {
  margin: 0;

  color: #666;

  font-size: 14px;
}

.about-badge {
  display: inline-block;

  background: #ffe3ec;

  color: #c13d6b;

  padding: 10px 18px;

  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 22px;
}

.about-title {
  font-size: 52px;

  line-height: 1.1;

  font-weight: 800;

  color: #2b1b25;

  margin-bottom: 25px;
}

.about-desc {
  font-size: 18px;

  line-height: 1.9;

  color: #666;

  margin-bottom: 20px;
}

.about-features {
  display: flex;
  gap: 18px;

  flex-wrap: wrap;

  margin-top: 30px;
}

.about-feature {
  background: #fff7fa;

  border: 1px solid #ffe3ec;

  padding: 14px 18px;

  border-radius: 16px;

  font-weight: 600;

  color: #444;

  display: flex;
  gap: 10px;
  align-items: center;
}

.about-feature i {
  color: #c13d6b;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .about-box {
    padding: 45px;
    text-align: center;
  }

  .about-title {
    font-size: 40px;
  }

  .about-features {
    justify-content: center;
  }

  .about-floating-card {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 32px;
  }

  .about-desc {
    font-size: 16px;
  }
}

/* =====================
   PROBLEM SECTION
===================== */

.problem-section {
  padding: 60px 0;

  background: linear-gradient(to bottom, #fff7fa, #ffffff);
}

.problem-badge {
  display: inline-block;

  background: #ffe3ec;

  color: #c13d6b;

  padding: 10px 18px;

  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 20px;
}

.problem-title {
  font-size: 54px;

  font-weight: 800;

  color: #2b1b25;

  margin-bottom: 15px;
}

.problem-subtitle {
  color: #666;

  font-size: 18px;

  max-width: 700px;

  margin: auto;

  line-height: 1.8;
}

.problem-card {
  background: white;

  border-radius: 28px;

  padding: 35px 30px;

  height: 100%;

  transition: 0.35s;

  box-shadow: 0 15px 35px rgba(176, 48, 96, 0.08);

  border: 1px solid #fff0f5;
}

.problem-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(176, 48, 96, 0.14);
}

.problem-icon {
  width: 70px;
  height: 70px;

  border-radius: 20px;

  background: #fff0f5;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 22px;
}

.problem-icon i {
  font-size: 30px;

  color: #c13d6b;
}

.problem-card h4 {
  font-size: 24px;

  font-weight: 700;

  color: #2b1b25;

  margin-bottom: 15px;
}

.problem-card p {
  color: #666;

  line-height: 1.8;

  margin: 0;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .problem-title {
    font-size: 38px;
  }

  .problem-subtitle {
    font-size: 16px;
  }
}

/* =====================
     BACKGROUND SOFT
  ===================== */
.bg-soft-blue {
  background-color: var(--light);
}

/* =====================
     SERVICE CARD
  ===================== */
.service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

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

.service-card h5 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
}

.service-card ul li {
  font-size: 14px;
  margin-bottom: 6px;
}

.problem-card {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);

  /* KUNCINYA DI SINI */
  display: flex;
  align-items: flex-start; /* Checklist nempel di atas jika teks panjang */
  gap: 12px; /* Jarak antara checklist dan teks */
  text-align: left; /* Pastikan teks rata kiri */
}

/* Jika ikon checklist kamu menggunakan tag <i> atau <span> */
.problem-card i,
.problem-card svg {
  margin-top: 3px; /* Sedikit penyesuaian agar sejajar baris pertama teks */
  flex-shrink: 0; /* Mencegah ikon jadi gepeng saat teks panjang */
}

.problem-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* =====================
     WHY US CARD
  ===================== */
.why-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

/* PRODUCT FINAL FIX */

#products {
  padding-top: 50px;
  padding-bottom: 40px;
}

.product-card {
  border: none !important;

  border-radius: 30px !important;

  overflow: hidden;

  transition: 0.35s;

  box-shadow: 0 12px 30px rgba(176, 48, 96, 0.08);
}

.product-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(176, 48, 96, 0.14);
}

.product-img {
  height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 55px;
}

.product-card h3 {
  font-size: 28px;

  line-height: 1.3;

  margin-bottom: 18px;
}

.product-card p {
  font-size: 17px;

  line-height: 1.8;
}

.btn-outline-danger {
  border: 2px solid #c13d6b;

  color: #c13d6b;

  padding: 12px 26px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-outline-danger:hover {
  background: #c13d6b;

  color: white;
}
/* =====================
     FORM
  ===================== */
.form-control,
.form-select {
  border-radius: 12px;
  padding: 12px 15px;
}

.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: var(--primary);
}

/* =====================
     CTA SECTION
  ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #ffffff;
  padding: 80px 20px;
}

.cta-title {
  font-weight: 700;
  margin-bottom: 10px;
}

/* =====================
     FOOTER
===================== */
.footer {
  background: var(--dark);
  color: #ffffff;
  padding: 48px 0; /* lebih lega */
  line-height: 1.6; /* teks alamat enak dibaca */
}

.footer p {
  margin-bottom: 8px;
  color: #ffffff;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* =====================
     WHATSAPP FLOAT
  ===================== */
.wa-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #ffffff;
  font-size: 24px;
  padding: 14px 16px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

/* =====================
   RESPONSIVE SPACING FIX
===================== */

/* Tablet & Mobile */
@media (max-width: 992px) {
  /* Global padding supaya tidak nempel */
  .hero-section,
  .section,
  .cta-section {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  /* NAVBAR */
  .navbar {
    padding: 10px 0;
  }

  .navbar-brand img {
    max-height: 36px;
  }

  /* HERO */
  .hero-section {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
  }

  .hero-title {
    margin-bottom: 14px;
  }

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

  /* HERO IMAGE */
  .hero-image {
    margin-top: 28px;
  }

  /* SECTION */
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-title {
    margin-bottom: 16px;
  }

  .section-text {
    margin-bottom: 18px;
  }

  /* CARD */
  .service-card,
  .why-card {
    margin-bottom: 22px;
    padding: 22px;
  }

  /* CTA */
  .cta-section {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
  }

  /* FOOTER */
  .footer {
    text-align: center;
    padding: 36px 20px;
  }
}

/* Small Mobile (HP kecil) */
@media (max-width: 576px) {
  .hero-section,
  .section,
  .cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .hero-desc {
    font-size: 0.95rem;
  }
}

/* =====================
   SECTION SPACING FIX
===================== */

.hero-section {
  padding-bottom: 60px;
}

.about-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.problem-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

#products {
  padding-top: 60px;
  padding-bottom: 40px;
}

#coverage {
  padding-top: 40px;
  padding-bottom: 40px;
}

#contact {
  padding-top: 60px;
  padding-bottom: 80px;
  margin-top: 30px;
}

/* TITLE SPACING */

.section-title,
.problem-title,
.about-title {
  margin-bottom: 18px !important;
}

/* CARD SPACING */

.product-card {
  margin-bottom: 20px;
}
