/* =============================================
   Laundry Cepat — Kiloan & Setrika
   Primary:#4a90e2 Accent:#a8d5ff Bg:#e6f2ff
   ============================================= */

:root {
  --primary: #4a90e2;
  --primary-dark: #2e5cb8;
  --primary-light: #6ba3ea;
  --accent: #a8d5ff;
  --accent-light: #c9e4ff;
  --bg: #e6f2ff;
  --bg-white: #f0f8ff;
  --text: #1a3a52;
  --text-light: #3d5a7c;
  --text-muted: #6b8aaa;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(74,144,226,0.12);
  --shadow-md: 0 4px 24px rgba(74,144,226,0.16);
  --radius: 10px;
  --radius-lg: 18px;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  padding-top: 40px;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── DEMO BAR ── */
.demo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 0 16px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.03em;
}
.demo-bar a { color: var(--accent-light); text-decoration: underline; }
.demo-bar a:hover { color: var(--white); }

/* ── CHECKBOX HACK NAV ── */
#nav-toggle { display: none; }

header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 40px;
  z-index: 1000;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
  flex: 1;
}
.logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  flex-shrink: 0;
}

/* ── HAMBURGER ── */
.hamburger-label {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: all 0.3s ease;
}

#nav-toggle:checked ~ header .hamburger-label span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
#nav-toggle:checked ~ header .hamburger-label span:nth-child(2) {
  opacity: 0;
}
#nav-toggle:checked ~ header .hamburger-label span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ── NAV MENU ── */
.nav-menu {
  list-style: none;
  display: none;
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  background: var(--white);
  flex-direction: column;
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  z-index: 999;
}
.nav-menu li {
  border-bottom: 1px solid var(--bg);
}
.nav-menu li:last-child { border-bottom: none; }
.nav-menu a {
  display: block;
  padding: 14px 20px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}
.nav-menu a:hover {
  background: var(--bg-white);
  text-decoration: none;
}
.nav-menu a.active {
  background: var(--bg-white);
  color: var(--primary);
  font-weight: 700;
}
.nav-menu .nav-cta {
  color: var(--white);
  background: var(--primary);
  margin: 8px 12px;
  border-radius: var(--radius);
  text-align: center;
}
.nav-menu .nav-cta:hover {
  background: var(--primary-dark);
}

#nav-toggle:checked ~ header .nav-menu {
  display: flex;
}

@media (min-width: 768px) {
  .hamburger-label { display: none; }
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    gap: 0;
  }
  .nav-menu li { border-bottom: none; }
  .nav-menu a {
    padding: 10px 16px;
    font-size: 14px;
  }
  .nav-menu .nav-cta {
    margin: 0 0 0 12px;
    padding: 10px 20px;
  }
}

/* ── MAIN CONTAINER ── */
main { flex: 1; }
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}
.hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.hero-icon-wrap {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}
.badge {
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-align: center;
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  text-decoration: none;
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  text-decoration: none;
}

@media (max-width: 600px) {
  .hero { padding: 40px 20px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .hero-badges { gap: 8px; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; }
}

/* ── STATS ── */
.stats {
  background: var(--bg-white);
  padding: 40px 20px;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 6px;
}
.stat-item span {
  font-size: 14px;
  color: var(--text-muted);
}

/* ── SECTION ── */
.section {
  padding: 60px 20px;
  background: var(--bg-white);
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--primary);
}
.divider {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto 20px;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border-top: 4px solid var(--accent);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
}
.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}
.card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── FEATURES ── */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.features-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}
.features-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}
.feature-list {
  list-style: none;
  margin-bottom: 20px;
}
.feature-list li {
  padding: 8px 0;
  color: var(--text);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .features {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* ── HARGA GRID ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  border: 2px solid transparent;
}
.price-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}
.price-card.featured {
  transform: scale(1.05);
  border-color: var(--primary);
}
@media (max-width: 768px) {
  .price-card.featured { transform: scale(1); }
}
.price-card.featured::after {
  content: "POPULER";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.price-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.price-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.price-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}
.price-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li::before {
  content: "●";
  color: var(--accent);
  font-size: 12px;
}
.price-btn {
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
}
.price-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ── TESTIMONIALS ── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.testimonial-stars {
  color: #ffd700;
  font-size: 14px;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
}

/* ── FORM ── */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--primary);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: all 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74,144,226,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.form-submit {
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}
.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 20px;
  text-align: center;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 14px;
}
.footer-nav a {
  color: var(--accent-light);
  text-decoration: underline;
}
.footer-nav a:hover {
  color: var(--white);
}
.footer-contact {
  font-size: 14px;
  margin-bottom: 12px;
}
.footer-contact strong { color: var(--accent-light); }
.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}
.footer-social a {
  color: var(--white);
  font-size: 14px;
  transition: color 0.3s;
}
.footer-social a:hover {
  color: var(--accent-light);
  text-decoration: none;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.separator {
  width: 100%;
  height: 1px;
  background: var(--accent);
  margin: 40px 0;
}
