body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f2f6fa;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER & NAVIGASI
========================= */
header {
  background: #0a2540;
  color: white;
  padding: 12px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.logo {
  font-size: 20px;
  font-weight: 700;
}

/* DESKTOP NAV */
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a, nav span {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.btn {
  background: #00c46a;
  padding: 8px 15px;
  border-radius: 6px;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  padding: 10px;
  min-width: 230px;
  top: 28px;
  left: 0;
  z-index: 20;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.dropdown-content a {
  color: #000;
  display: block;
  padding: 6px 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* =========================
   MOBILE MODE
========================= */

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 480px) {

  .hamburger {
    display: block;
    
  }

  nav {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #0a2540;
    flex-direction: column;
    align-items: flex-end;
    padding: 15px;
    gap: 12px;
    display: none; 
  }

  nav.show {
    display: flex;
  }

  .dropdown-content {
    position: static;
    background: #092033;
    padding-left: 15px;
    box-shadow: none;
    border-radius: 0;
  }

  .dropdown-content a {
    color: #cfcfcf;
  }

  .dropdown:hover .dropdown-content {
    display: block; /* tetap muncul saat diklik */
  }
}


/* =========================
   HERO SECTION
========================= */
.hero {
  background: url("../img/hero/clean.jpg") no-repeat center;
  background-size: cover;
  padding: 100px 0;
  text-align: center;
  color: white;
}
.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #00ffa6;
}

.hero p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
  background: rgba(0,0,0,0.4);
  padding: 20px;
  border-radius: 12px;
}
/* =========================
   BASE STYLING & FONT
========================= */
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: #333; /* Warna teks gelap untuk kontras tinggi */
}

/* =========================
   PROBLEM SECTION & JUDUL
========================= */
.problems {
    padding: 60px 20px;
    background: #f4f9f4; /* Latar belakang abu-abu kehijauan muda */
    text-align: center;
}

.problems h2 {
    font-size: 38px;
    margin-bottom: 10px;
    color: #0A2540; /* Warna gelap tetap dipertahankan untuk judul utama */
    font-weight: 800;
}

.problems .subtitle {
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.6;
}



/* =========================
   PROBLEM GRID & CARD
========================= */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 40px auto 0;
    max-width: 1200px;
}

.problem-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid #34A853; /* Aksen warna di sisi kiri (HIJAU) */
    text-align: left;
    transition: all 0.3s ease-in-out;
}

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

.problem-card h4 {
    font-size: 20px;
    color: #34A853; /* Warna primer untuk judul (HIJAU) */
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* =========================
   HIGHLIGHT CARD (CTA BLOCK)
========================= */
.problems .container > .problem-card.highlight {
    max-width: 600px;
    margin: 50px auto 0;
    background: linear-gradient(135deg, #2E8B57, #34A853); /* Gradien warna hijau */
    color: white;
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(46, 139, 87, 0.4); /* Shadow hijau */
    border-left: none;
    transform: none;
}

.problem-card.highlight p {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.problem-card.highlight b {
    font-weight: 700;
    color: #FEEA55; /* Highlight kata kunci dengan warna kontras (KUNING) */
}

.problem-card.highlight a.btn-cta {
    display: inline-block;
    background-color: #FEEA55; /* Warna kuning kontras tinggi (CTA color) */
    color: #0A2540;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    transition: background-color 0.3s;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.problem-card.highlight a.btn-cta:hover {
    background-color: #ffda00; /* Sedikit lebih gelap saat hover */
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 480px) {
    .problems h2 {
        font-size: 30px;
    }
    .problem-grid {
        grid-template-columns: 1fr;
    }
    .problem-card.highlight {
        max-width: 100%;
    }
}

/* =========================
   SOLUTION SECTION
========================= */
.solution {
  padding: 40px 20px; /* Menambah padding atas/bawah */
  background: white;
  text-align: center;
}

.solution-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.solution-sub {
  color: #555;
  max-width: 650px;
  margin: 0 auto 50px;
  font-size: 16px;
}

/* 5 CARD DALAM 1 BARIS */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* CARD */
.solution-card {
  background: linear-gradient(135deg, #ffffff, #f1f6ff);
  padding: 35px 22px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  transition: all 0.35s ease;
  text-align: center;
  position: relative;
}

.solution-card .icon {
  font-size: 45px;
  margin-bottom: 15px;
}

.solution-card h4 {
  margin-bottom: 12px;
  font-size: 17px;
  color: #0a2540;
}

.solution-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* HOVER PREMIUM (SEMUA CARD SAMA) */
.solution-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(10, 37, 64, 0.2);
  background: #0a2540;
}

.solution-card:hover h4,
.solution-card:hover p,
.solution-card:hover .icon {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-title {
    font-size: 26px;
  }

  .solution-card {
    padding: 25px 18px;
  }
}


.btn-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: #00c46a;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
}

/* =========================
   SERVICE SECTION
========================= */
.services {
  padding: 40px 20px; /* Menambah padding atas/bawah */
  background: #f8fafc;
  text-align: center;
}

.services h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.services .subtitle {
  color: #555;
  margin-bottom: 40px;
}

.services .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.services .card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  text-align: left;
}

.services .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.services .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  /* Hapus border-radius lagi di sini karena sudah ada di .services .card */
  /* border-radius: 18px; */
  margin-bottom: 0; /* Ubah margin-bottom dari 15px agar gambar menempel ke tepi card yang rounded */
}

.services .card h3 {
  font-size: 18px;
  padding: 15px 15px 5px;
}

.services .card p {
  font-size: 14px;
  padding: 0 15px 15px;
  color: #555;
}

.btn-detail {
  display: block;
  text-align: center;
  margin: 0 15px 20px;
  padding: 10px;
  background: #16a34a;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn-detail:hover {
  background: #0f7a36;
}

/* Versi mobile */
@media (max-width: 480px) {
  .services .grid {
    grid-template-columns: 1fr;
  }

  .services .card img {
    height: 160px;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 12px rgba(0,0,0,.1);
}

.cta {
  background: #0a2540;
  padding: 50px 20px; /* Tambahkan padding samping */
  color: white;
  text-align: center;
}

/* ==========================
   FOOTER STYLING
========================== */
footer {
    background: #0a2540;
    color: white; /* Teks terang */
    padding-top: 40px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap; /* Penting untuk responsif di HP */
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px;
}

.footer-col {
    width: 100%; /* Default 100% di HP */
    max-width: 350px; /* Batasan lebar per kolom */
    margin-bottom: 30px;
}

/* Judul Kolom */
.footer-col h4 {
    color: #00c46a; /* Warna hijau khas kamu */
    margin-bottom: 20px;
    font-size: 1.1rem;
    border-bottom: 2px solid #555;
    padding-bottom: 8px;
}

/* Teks Kontak */
.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info i {
    margin-right: 10px;
    color: #00c46a;
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-info a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #00c46a;
}

/* Navigasi Cepat */
.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.quick-links a:hover {
    color: #00c46a;
}

/* Media Sosial */
.social-icons a {
    color: #f0f0f0;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #00c46a;
}


/* Copyright Section */
.footer-bottom {
    background: #222;
    text-align: center;
    padding: 15px 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #aaa;
}

/* Responsif untuk tablet dan desktop */
@media (min-width: 480px) {
    .footer-col {
        width: 30%; /* Atur lebar kolom agar 3 kolom */
    }
}

/* =========================
   CARA PESAN (Slide Horizontal)
========================= */
.cara-pesan {
  padding: 60px 10%;
  background: #f8fbff;
}

.cara-pesan h2 {
  text-align: center;
  margin-bottom: 30px;
}

.slide-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.slide-track {
  display: flex;
  gap: 40px;
  padding-bottom: 10px;
}

.slide-item {
  min-width: 150px;
  max-width: 200px;
  padding: 25px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  scroll-snap-align: start;
  transition: 0.3s ease;
  flex-shrink: 0; /* Pastikan item tidak menyusut */
}

.slide-item:hover {
  transform: translateY(-8px);
}

.happy {
  background: #fff8e1;
  font-weight: 600;
  transform: scale(1.05);
}

/* Icon bulat */
.bulat {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
  font-size: 18px;
}

.satu { background: #2196F3; }
.dua { background: #FF9800; }
.tiga { background: #9C27B0; }
.empat { background: #4CAF50; }
.lima { background: #FFC107; color: #333; }


/* ==========================
   RESET & UMUM
========================== */
* {
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pricing-ecom {
  padding: 40px 20px;
  text-align: center;
}

.title {
  color: #333;
  margin-bottom: 5px;
}

.subtitle {
  color: #666;
  margin-bottom: 30px;
}

/* ==========================
   TABS NAVIGASI
========================== */
.tab-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.tab-btn {
  background: #f0f0f0;
  border: none;
  padding: 10px 20px;
  border-radius: 50px; 
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #555;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tab-btn.active {
  background: #00c46a;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 196, 106, 0.3);
  transform: translateY(-2px);
}

.tab-btn:hover:not(.active) {
  background: #e0e0e0;
}

/* ==========================
   PANEL GRID & KARTU HARGA
========================== */
.tab-panel {
  display: none; /* Default sembunyi */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive Grid */
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.tab-panel.active {
  display: grid;
  animation: fadeIn 0.5s;
}

/* Styling Kartu Harga (Price Card) */
.price-card {
  background: white;
  padding: 30px 20px;
  border-radius: 18px; /* Lebih bulat */
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  width: 100%;
  text-align: center;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative; /* Penting untuk badge diskon */
}

/* Style KHUSUS untuk kartu yang sedang diskon */
.price-card.discount-card {
  border-color: #00c46a; /* Border hijau */
  box-shadow: 0 10px 25px rgba(0, 196, 106, 0.2);
}

.price-card h3 {
  margin: 0 0 10px;
  color: #333;
  font-size: 1.4rem;
}

.description {
    color: #888;
    margin: 15px 0 30px;
    min-height: 40px; /* Jaga agar tinggi card stabil */
    line-height: 1.5;
    font-size: 0.95rem;
}

/* === HARGA === */
.price-group {
    margin: 10px 0;
    min-height: 50px; /* Jaga agar tinggi card stabil */
}

/* Harga Coret (Harga Asli) */
.original-price {
    display: block;
    color: #aaa;
    text-decoration: line-through;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Harga Sekarang (Harga Diskon/Normal) */
.current-price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
}
/* Harga DISKON dibuat Hijau */
.discount-card .current-price {
    color: #00c46a; 
}


/* === BADGE DISKON (Green Angled Tag) === */
.discount-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #00c46a;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 10px 0;
  width: 90px;
  text-align: center;
  transform: rotate(45deg) translate(20px, -18px); /* Rotasi dan geser ke pojok */
  transform-origin: 0 0;
  box-shadow: 0 0 10px rgba(0, 196, 106, 0.5);
  overflow: hidden;
  z-index: 10;
}

/* === TOMBOL PESAN === */
.order-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.2s;
}

.primary-btn { /* Tombol untuk DISKON (Warna Hijau) */
    background: #00c46a;
    color: white;
}

.primary-btn:hover {
    background: #00a95d;
}

.secondary-btn { /* Tombol untuk Normal (Warna Abu-abu/Netral) */
    background: #00c46a;
    color: #555;
}

.secondary-btn:hover {
    background: #ccc;
}


/* ==========================
   POPUP MODAL (Agar berfungsi)
========================== */
.order-modal {
  display: none; 
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.order-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 450px; 
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: slideDown 0.3s ease-out;
}

/* ... Styling form lainnya tetap sama ... */
.order-box input, 
.order-box textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.order-summary {
  background: #f0fff4;
  padding: 15px;
  border-radius: 6px;
  margin: 20px 0;
  border: 1px dashed #00c46a;
}

.submit-btn {
  background: #00c46a;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 10px;
}

.close-btn {
  background: transparent;
  color: #888;
  border: none;
  width: 100%;
  padding: 10px;
  cursor: pointer;
  text-decoration: underline;
}

/* Animasi */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================
   DETAIL PAKET (Durasi & Petugas)
========================== */
.package-details {
    margin: 15px 0;
    padding: 10px;
    background: #f8f8f8; /* Background abu-abu muda */
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: left;
}

.package-details p {
    margin: 5px 0;
    color: #555;
    /* Membuat petugas dan durasi bersebelahan jika cukup */
    display: flex; 
    justify-content: space-between; 
}
.package-details p strong {
    font-weight: 600;
    color: #333;
}

/* ==========================
   POPUP MODAL (PENTING!)
========================== */
.order-modal {
  display: none; /* Sembunyi default */
  position: fixed; /* Mengambang di atas layar */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Latar belakang gelap transparan */
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.order-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 450px; /* Lebar maksimal form */
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  position: relative;
  animation: slideDown 0.3s ease-out;
}

.order-box h2 {
  text-align: center;
  margin-top: 0;
  color: #333;
}

/* Form Styling */
.order-box label {
  display: block;
  margin: 15px 0 5px;
  font-weight: 500;
  font-size: 0.9rem;
}

.order-box input, 
.order-box textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.order-box textarea {
  resize: vertical;
  min-height: 80px;
}

.order-summary {
  background: #f0fff4;
  padding: 15px;
  border-radius: 6px;
  margin: 20px 0;
  border: 1px dashed #00c46a;
}

.submit-btn {
  background: #00c46a;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 10px;
}

.close-btn {
  background: transparent;
  color: #888;
  border: none;
  width: 100%;
  padding: 10px;
  cursor: pointer;
  text-decoration: underline;
}

/* Animasi */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


/* Rating */

.rating-slider {
  padding: 60px 15px;
  background: #f9fafb;
  text-align: center;
}

.rating-slider h2 {
  font-size: 26px;
  margin-bottom: 5px;
}

.rating-slider .subtitle {
  color: #666;
  margin-bottom: 30px;
}

.slider-wrapper {
  max-width: 600px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.stars {
  color: #f5b50a;
  font-size: 22px;
  margin-bottom: 10px;
}

.slide p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 12px;
}

.slide span {
  font-size: 13px;
  color: #888;
  font-style: italic;
}

  /* Tambahkan CSS ini jika belum ada, atau taruh di file CSS Anda */
  .star-rating-fixed {
    display: inline-block;
    font-size: 1.2em; /* Ukuran bintang */
    font-family: sans-serif;
    position: relative;
    color: #ccc; /* Warna dasar (abu-abu) untuk bagian kosong */
  }
  
  .star-rating-fixed::before {
    content: "★★★★★"; /* 5 Bintang dasar */
    position: absolute;
    top: 0;
    left: 0;
    width: 93%; /* 95% = 4.75 bintang (4 + 3/4) */
    overflow: hidden;
    color: #ffc107; /* Warna Emas/Kuning */
    white-space: nowrap;
 

}




/* ==================================== */
/* 1. MODAL CONTAINER (Wajib Fixed di Tengah) */
/* ==================================== */

.modal {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000; /* Pastikan di atas semua elemen */
    background-color: rgba(0,0,0,0.7); 
    
    /* Menggunakan Flexbox untuk Pusatkan Konten */
    display: flex;
    align-items: center; 
    justify-content: center; 
    
    /* Disembunyikan secara default */
    display: none; 
}

/* ==================================== */
/* 2. KONTEN MODAL PROMO                */
/* ==================================== */

.modal-content-promo {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    width: 90%; 
    max-width: 400px; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.3); 
    position: relative;
    text-align: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* HEADER DAN TEXT */
.header-promo-final h2 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 20px;
}

.promo-icon {
    width: 50px;
    height: 50px;
}

/* --- BAGIAN DISKON YANG MENONJOL --- */
.discount-highlight {
    background-color: #f7f7f7; /* Latar belakang abu-abu muda */
    border: 1px solid #eee;
    padding: 15px 10px;
    margin-bottom: 25px;
    border-radius: 8px;
}

.discount-text {
    font-size: 16px;
    color: #555;
    margin: 0;
    font-weight: 500;
}

.discount-value {
    font-size: 60px; /* Angka BESAR */
    font-weight: 900; /* Sangat Tebal */
    color: #dc3545; /* Warna Merah (Khas Promo) */
    line-height: 1; 
    margin: 5px 0;
}

.discount-info {
    font-size: 14px;
    color: #333;
    margin: 0;
}

/* --- TOMBOL AKSI TUNGGAL --- */
#closeAndProceedFinal {
    width: 100%;
    background-color: green; 
    color: white;
    padding: 14px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 17px;
    font-weight: bold;
    transition: background-color 0.2s;
}

#closeAndProceedFinal:hover {
    background-color: #0056b3;
}

/* TOMBOL TUTUP (X) */
.close-button-promo {
    color: #666;
    font-size: 28px;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}
.close-button-promo:hover {
    color: #333;
}





/* ==============================
max-width: 900px;
margin: auto;
display: flex;
flex-direction: column;
gap: 40px;
}


.about-block {
background: #ffffff;
max-width: 900px;
padding: 45px 50px;
border-radius: 14px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}


.about-block h2 {
font-size: 26px;
margin-bottom: 18px;
color: #1f2937;
}


.about-block p {
font-size: 16px;
line-height: 1.9;
color: #4b5563;
margin-bottom: 18px;
}


/* Highlight versi elegan, bukan "kartu" */
.about-block.highlight {
background: linear-gradient(135deg, #f8fafc, #eef2ff);
border-left: 0.5px solid #2563eb;
}


.about-list {
padding-left: -1px;
margin-top: 10px;
}


.about-list li {
margin-bottom: 12px;
font-size: 15px;
color: #374151;
}


/* Responsive */
@media (max-width: 480px) {
.hero-inner h1 {
font-size: 32px;
}


.hero-inner p {
font-size: 16px;
}


.about {
padding: 60px 15px;
}


.about-block {
padding: 30px 25px;
}
}
.hero-inner p {
font-size: 16px;
}


.about {
padding: 60px 15px;
}





/* ==================================== */
/* 1. MODAL CONTAINER (Wajib Fixed di Tengah) */
/* ==================================== */

.modal {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000; /* Pastikan di atas semua elemen */
    background-color: rgba(0,0,0,0.7); 
    
    /* Menggunakan Flexbox untuk Pusatkan Konten */
    display: flex;
    align-items: center; 
    justify-content: center; 
    
    /* Disembunyikan secara default */
    display: none; 
}
/* ====================================================================
   VARIABLE (Wajib Ada untuk Konsistensi Warna)
==================================================================== */
:root {
    --color-primary: #00c46a; /* Hijau Utama */
    --color-dark: #0a2540;    /* Biru Gelap */
    --color-text: #333;
    --color-light-bg: #f8fbfd;
    --color-white: #ffffff;
    --font-primary: 'Poppins', sans-serif; /* Asumsi font ini digunakan */
}

/* Pastikan body dan container memiliki style dasar yang baik */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text);
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
/* ====================================================================
   CONTENT SECTION (.about) - TAMPILAN BLOCK VERTICAL (STACKED)
==================================================================== */

.about {
    padding: 80px 20px;
    background: var(--color-light-bg); /* Latar belakang lembut */
}

.about-wrap {
    /* max-width: 800px; /* Batasi lebar agar konten tidak terlalu lebar di desktop */
    margin: auto;
    /* MENGHAPUS GRID UNTUK MEMBUAT BLOK BERURUTAN KE BAWAH */
    display: block; 
    /* gap: 30px; dihapus */
}

.about-block {
    background: var(--color-white);
    padding: 35px 30px; 
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); /* Bayangan lembut */
    border-top: 4px solid var(--color-primary); /* Garis atas Hijau Utama */
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px; /* Tambahkan margin di bawah setiap blok */
}

.about-block:hover {
    transform: none; /* Hapus efek hover translateY karena tidak cocok untuk stacked block */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-block h2 {
    font-size: 1.75rem; 
    margin-bottom: 15px;
    color: var(--color-dark); /* Biru gelap untuk judul */
    border-bottom: 2px solid #eee; /* Garis pemisah judul */
    padding-bottom: 8px;
}

.about-block p {
    font-size: 1rem; 
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    text-align: justify; /* Tambahkan justifikasi agar paragraf lebih rapi */
}

.about-block p b {
    color: var(--color-dark);
}

/* HIGHLIGHT BLOCK (Kini Hadir Lebih Dekat) */
.about-block.highlight {
    background: var(--color-primary); /* Menggunakan HIJAU UTAMA */
    color: var(--color-white);
    border-top: 4px solid #00a95d; /* Garis atas hijau gelap */
    box-shadow: 0 10px 25px rgba(0, 196, 106, 0.4); /* Bayangan hijau */
}

.about-block.highlight h2,
.about-block.highlight p,
.about-block.highlight p b {
    color: var(--color-white);
}

/* LIST KOMITMEN */
.about-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.about-list li {
    margin-bottom: 5px;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
}
.about-list li::before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: 5rem;
    font-size: 1.2rem;
}

/* Paragraf Komitmen Penutup */
.about-block h2 + .about-list + p {
    margin-top: 10px;
    padding: 3px;
    border-left: 4px solid var(--color-primary);
    background-color: #f4fff7;
    font-style: italic;
    text-align: left; /* Biarkan align left untuk italic note */
}

/* ====================================================================
   CTA SECTION
==================================================================== */

.cta {
    background: var(--color-dark); /* Menggunakan Biru Gelap */
    color: var(--color-white);
    padding: 60px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 3px;
    font-weight: 700;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 3px;
    opacity: 0.9;
}

.btn-cta {
    background: var(--color-primary); /* Tombol CTA Hijau Utama */
    color: var(--color-white);
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 196, 106, 0.5);
}

.btn-cta:hover {
    background: #00a95d; /* Hijau sedikit lebih gelap saat dihover */
    transform: translateY(-2px);
}

/* ====================================================================
   RESPONSIVE
==================================================================== */
@media (max-width: 600px) {
    .about-wrap {
        gap: 20px;
    }
    .about-block {
        padding: 25px 20px;
    }
    .about-block h2 {
        font-size: 1.5rem;
    }
    .cta h2 {
        font-size: 1.7rem;
    }
}



/* ==========================
   FAQ SECTION
========================== */
.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 15px;
  text-align: center;
}

.faq-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.faq-subtitle {
  color: #666;
  margin-bottom: 30px;
}

.faq-list {
  text-align: left;
}

.faq-item {
  border-radius: 12px;
  background: #fff;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  overflow: hidden;
}

/* Question */
.faq-question {
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 22px;
  transition: transform 0.3s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  font-size: 14px;
  color: #555;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 18px 16px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 600px) {
  .faq-title {
    font-size: 24px;
  }
}
/* ==================================== */
/* CSS FINAL DETAIL CARD JPS       */
/* ==================================== */

/* 1. Container Utama Kartu */
.price-card {
    position: relative !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 1;
}

/* 2. Kotak Detail (Balon) - Sembunyi Default */
.balon-text-box {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 10;
    padding: 20px;
    box-sizing: border-box;
    border: 2px solid #00c46a;
    border-radius: 18px;
    text-align: left;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    overflow-y: auto; /* Biar bisa di-scroll kalau teks panjang */
}

/* 3. Efek saat Kursor Menyorot Kartu (HOVER) */
.balon-text-box.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* 4. Tombol X (Tutup) di Pojok Kanan Atas Balon */
.close-balon {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
    z-index: 101;
}
.close-balon:hover {
    color: #dc3545;
}

/* 5. Styling Teks di Dalam Balon */
.balon-text-box strong {
    display: block;
    font-size: 16px;
    color: #0a2540;
    margin-bottom: 12px;
    border-bottom: 2px solid #00c46a;
    padding-bottom: 5px;
}
.balon-text-box span {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #444;
    line-height: 1.4;
}

/* 6. Tombol Pesan Tetap di Atas Balon */
.order-btn {
    position: relative;
    z-index: 20;
}

/* 7. Scrollbar Cantik di Dalam Balon */
.balon-text-box::-webkit-scrollbar {
    width: 5px;
}
.balon-text-box::-webkit-scrollbar-thumb {
    background: #00c46a;
    border-radius: 10px;
}


/* ===================================================
   FIX KHUSUS HALAMAN LAYANAN (HOME CLEANING)
   Agar tidak berantakan karena CSS lama
   =================================================== */

/* Pastikan container wrap tetap urut ke bawah */
.about-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Fix untuk list di dalam block agar tidak lari ke tengah */
.about-block .about-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    text-align: left;
}

/* Reset icon dot (bulat) supaya tidak ada margin 5rem */
.about-block .about-list li::before {
    content: "•";
    color: var(--color-primary, #00c46a);
    font-weight: bold;
    margin-right: 15px; /* Jarak antara titik dan teks */
    margin-left: 0 !important; /* PAKSA NOL agar tidak lari ke tengah */
    width: auto;
}

/* Perbaikan khusus blok highlight di halaman layanan */
.about-block.highlight .about-list li {
    color: white;
}

.about-block.highlight .about-list li::before {
    color: #FEEA55; /* Titik jadi kuning di blok hijau agar kontras */
}

/* Tambahkan padding ekstra untuk mobile */
@media (max-width: 480px) {
    .about-block {
        padding: 25px 20px !important;
    }
}
