/* =====================
   ROOT COLOR BRAND
===================== */
:root {
    --primary: #c03a66;      /* Magenta brand */
    --secondary: #8ed1e5;    /* Soft blue */
    --dark: #0f3057;         /* Navy */
    --light: #f5f7fa;        /* Soft light */
    --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 SECTION
  ===================== */
  .hero-section {
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    padding: 110px 0;
    color: #ffffff;
  }
  
  .hero-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
  }
  
  .hero-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffe3ec;
    margin-top: 10px;
  }
  
  .hero-desc {
    margin: 20px 0 30px;
    max-width: 520px;
  }

/* =====================
   HERO IMAGE CONTROL
===================== */
.hero-image {
    width: 100%;
    max-width: 600px; /* ukuran desktop */
    height: auto;
    display: block;
    margin-left: auto;
  }
  
 /* =====================
   RESPONSIVE HERO IMAGE (REVISI)
===================== */

/* Tablet */
@media (max-width: 992px) {
    .hero-image {
      max-width: 300px;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .hero-image {
      max-width: 260px;
      margin: 30px auto 0;
      display: block;
    }
  }
  
  /* Small Mobile */
  @media (max-width: 576px) {
    .hero-image {
      max-width: 240px;
    }
  }
  
  
  /* =====================
     SECTION GENERAL
  ===================== */
  .section {
    padding: 80px 0;
  }
  
  .section-title {
    font-weight: 700;
    color: var(--dark);
  }
  
  .section-subtitle {
    color: #666;
  }
  
  .section-text {
    margin-bottom: 15px;
  }
  
  /* =====================
     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%;
  }
  
  /* =====================
     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;
    }
  
  }
  
  