@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #00C853;
  --primary-dark: #00A844;
  --primary-light: #E8F5E9;
  --secondary: #1A1A2E;
  --bg: #F5F6FA;
  --white: #FFFFFF;
  --text: #1E293B;
  --text-light: #475569;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --danger: #EF4444;
  --warning-light: #FEF3C7;
  --success-light: #DCFCE7;
  --info-light: #DBEAFE;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --radius: 10px;
  --font: 'Poppins', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo img { width: 38px; height: 38px; }

.logo-text h1 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.nav ul {
  display: flex;
  gap: 4px;
}

.nav ul li a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: 8px;
}

.nav ul li a:hover { color: var(--primary); background: var(--primary-light); }

.nav ul li a.active {
  color: var(--primary);
  background: var(--primary-light);
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.hero-banner {
  padding: 32px 0;
  background: var(--bg);
}

.banner-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
}

.banner-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero {
  padding: 70px 0;
  background: var(--white);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content h1 span { color: var(--primary); }

.hero-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-image img { max-width: 100%; }

.hero-stats {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-stats-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  max-width: 700px;
}

.hero-stats-title span { color: var(--primary); }

.hero-stats-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 36px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  padding: 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.section { padding: 60px 0; }

.section-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

.about { background: var(--white); }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-split-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-split-text h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-split-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-split-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.steps { background: var(--white); }
.steps .section-title { margin-bottom: 36px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  padding: 28px 18px;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: var(--primary);
}

.step-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.packages { background: var(--white); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.package-card.featured {
  border: 2px solid var(--primary);
  background: var(--primary-light);
}

.package-card.featured::before {
  content: 'Populer';
  position: absolute;
  top: 14px;
  right: -30px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 36px;
  font-size: 0.7rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.package-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.package-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.package-speed {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.package-price span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
}

.package-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.package-card .btn {
  width: 100%;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); }

.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { background: #16213E; }

.btn-sm { padding: 6px 14px; font-size: 0.8rem; }

.btn-danger { background: var(--danger); color: var(--white); }
.btn-danger:hover { background: #DC2626; }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.form-page {
  padding: 40px 0;
  background: var(--bg);
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.form-group label .required { color: var(--danger); }

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
}

.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { resize: vertical; min-height: 80px; }

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-link {
  text-align: center;
  margin-top: 20px;
}

.form-link a {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-link a:hover { text-decoration: underline; }

.order-steps-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step-dot .dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-dot.active .dot {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.step-dot span {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.step-dot.active span {
  color: var(--primary);
  font-weight: 600;
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 10px;
  margin-bottom: 24px;
}

.form-card {
  max-width: 720px;
  margin: 0 auto 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.form-card-header {
  padding: 20px 28px 0;
  border-bottom: 1px solid var(--border);
}

.form-card-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-card-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-card-body { padding: 20px 28px 28px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  margin-top: 2px;
}

.form-step { display: none; }

.form-step.active { display: block; }

.form-nav {
  max-width: 720px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step-dot.completed .dot {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.step-dot.completed span {
  color: var(--primary);
  font-weight: 600;
}

.order-summary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.summary-row:last-child { border-bottom: none; }

.summary-row span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.summary-row strong {
  font-size: 0.875rem;
  text-align: right;
}

.table-page {
  padding: 50px 0;
  background: var(--bg);
}

.table-container {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}

.table-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.table-header h2 {
  font-size: 1.2rem;
  font-weight: 700;
}

.table-wrapper { overflow-x: auto; }

table { width: 100%; border-collapse: collapse; }

table thead { background: var(--bg); }

table th {
  padding: 12px 18px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--border);
}

table td {
  padding: 12px 18px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}

table tbody tr:hover { background: var(--bg); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
}

.badge-warning { background: var(--warning-light); color: #92400E; }
.badge-info { background: var(--info-light); color: #1E40AF; }
.badge-success { background: var(--success-light); color: #166534; }

.table-actions { display: flex; gap: 6px; }

.profile-page {
  padding: 50px 0;
  background: var(--bg);
}

.profile-header {
  text-align: center;
  margin-bottom: 40px;
}

.profile-header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.profile-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.profile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.profile-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.profile-image img { max-width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

.about-intro { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 10px;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.coverage { background: var(--bg); }

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.coverage-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.coverage-item:last-child { border-right: none; }

.coverage-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.coverage-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.visi-misi { background: var(--white); }

.visi-misi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.visi-card, .misi-list {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.visi-card h3, .misi-list h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.visi-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.misi-list ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.misi-list ul li:last-child { border-bottom: none; }
.misi-list ul li i { color: var(--primary); margin-top: 3px; }

.values { background: var(--bg); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}

.value-letter {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.value-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.quality-policy { background: var(--white); }

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.quality-text h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.quality-lead {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.quality-list {
  list-style: decimal;
  padding-left: 20px;
}

.quality-list li {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 10px;
}

.quality-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.login-page {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--bg);
}

.login-container {
  display: flex;
  max-width: 860px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.login-image {
  flex: 1;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.login-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-card {
  flex: 1;
  padding: 40px 36px;
  display: flex;
  align-items: center;
}

.login-card-inner { width: 100%; }

.login-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.login-subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 1rem;
}

.login-footer {
  text-align: center;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.login-footer a { color: var(--primary); font-weight: 600; }

.page-header {
  background: var(--secondary);
  padding: 44px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.footer {
  background: var(--secondary);
  color: var(--white);
  padding: 20px 0;
  margin-top: auto;
}

.footer .container { display: flex; justify-content: center; }

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.empty-state {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-muted);
}

.empty-state i {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header { height: 64px; }
  .logo img { width: 32px; height: 32px; }
  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    padding: 80px 20px 20px;
    transition: right 0.3s;
    z-index: 999;
  }

  .nav.active { right: 0; }
  .nav ul { flex-direction: column; gap: 4px; }
  .nav ul li a { padding: 12px 14px; width: 100%; font-size: 0.95rem; }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
  }

  .nav-overlay.active { display: block; }

  .hero { padding: 40px 0; }
  .hero .container { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-content p { margin: 0 auto 24px; }
  .hero-content h1 { font-size: 1.6rem; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 60%; margin: 0 auto; }

  .section-title { font-size: 1.4rem; }

  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .form-row { grid-template-columns: 1fr; }
  .step-dot span { font-size: 0.6rem; }
  .step-dot .dot { width: 28px; height: 28px; font-size: 0.7rem; }

  .profile-content, .about-grid, .about-split, .quality-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-image, .about-split-image, .quality-image { order: -1; }

  .coverage-stats { grid-template-columns: 1fr; }
  .coverage-item { border-right: none; border-bottom: 1px solid var(--border); }
  .coverage-item:last-child { border-bottom: none; }

  .visi-misi-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .login-container { flex-direction: column; }
  .login-image { max-height: 180px; }
  .login-image img { object-fit: cover; }
  .login-card { padding: 28px 24px; }

  .table-header { flex-direction: column; text-align: center; }
  .footer { padding: 16px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content h1 { font-size: 1.4rem; }
  .section { padding: 40px 0; }
  .section-title { font-size: 1.2rem; }
  .packages-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .btn { padding: 8px 16px; font-size: 0.85rem; }
  table th, table td { padding: 8px 12px; font-size: 0.75rem; }
  .table-actions { flex-direction: column; gap: 4px; }
}
