/* ============================================================
   JASA SKRIPSI JAKARTA - Main Stylesheet
   ============================================================ */

/* ── 1. CSS Variables ─ */
:root {
  --primary: #6C63FF;
  --primary-dark: #5851DB;
  --primary-light: #8B85FF;
  --secondary: #FF6B6B;
  --accent: #FFD93D;
  --success: #4CAF50;
  --warning: #FF9800;
  --info: #2196F3;
  --dark: #0D0E1C;
  --dark-2: #151626;
  --dark-3: #1E1F31;
  --dark-4: #282940;
  --gray: #8892A0;
  --gray-light: #C4C9D4;
  --text: #E8EAED;
  --text-muted: #9AA0AC;
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 40px rgba(108, 99, 255, 0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 100px; /* Diperbesar dari 72px untuk menampung logo baru */
}

/* ── 2. Reset & Base ─ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* ── 3. Utilities ─ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), #A78BFA, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-3 {
  margin-top: 1.5rem;
}

/* ── 4. Section Header ─ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(108, 99, 255, 0.15);
  border: 1px solid rgba(108, 99, 255, 0.3);
  color: var(--primary-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── 5. Buttons ─ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(108, 99, 255, 0.5);
}

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(108, 99, 255, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--primary-light);
  border: 1.5px solid rgba(108, 99, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(108, 99, 255, 0.1);
}

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

.btn-white:hover {
  background: var(--accent);
}

.btn-lg {
  padding: 12px 28px;
  font-size: 0.92rem;
}

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

/* ── 6. NAVBAR ─ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  min-height: var(--nav-h);
  z-index: 1000;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: rgba(13, 14, 28, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--primary-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: var(--glass);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: var(--transition);
  box-shadow: var(--shadow);
  
  /* GRID LAYOUT: 5 DOWN AND THEN SIDEWAYS */
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 4px 20px; /* Horizontal gap between columns */
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(108, 99, 255, 0.12);
  color: var(--primary-light);
}

.dropdown-item i {
  width: 16px;
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Tombol Login Navbar */
.btn-login-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-login-nav:hover {
  background: rgba(108, 99, 255, 0.18);
  border-color: rgba(108, 99, 255, 0.5);
  color: #fff;
}

.btn-login-nav i {
  font-size: 1rem;
  color: var(--primary-light, #8B85FF);
}

/* Sembunyikan item login di nav-list saat desktop (tampil di btn nav-cta) */
.nav-item-login-mobile {
  display: none;
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── 7. HERO ─ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(108, 99, 255, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(108, 99, 255, 0.15);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(236, 72, 153, 0.1);
  bottom: -50px;
  left: -50px;
  animation-delay: 2s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(255, 217, 61, 0.08);
  top: 50%;
  left: 40%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 24px 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(108, 99, 255, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.25);
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 14px;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.stat-plus {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
}

.hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--primary);
  font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap {
  position: relative;
  width: 125%;
  /* Melebarkan ke samping melebihi kolom grid */
  margin-left: -5%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 280px;
  /* Dibuat lebih kecil secara vertikal */
  object-fit: cover;
  /* Crop bagian atas/bawah agar jadi persegi panjang / lanskap */
  object-position: center;
  filter: drop-shadow(0 20px 40px rgba(108, 99, 255, 0.2));
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at center, black 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 75% at center, black 50%, transparent 100%);
}

.float-badge {
  position: absolute;
  background: rgba(30, 31, 49, 0.85);
  /* dark-3 with opacity */
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  z-index: 3;
}

.float-badge i {
  color: var(--accent);
  font-size: 0.95rem;
}

.badge-grade {
  top: 5%;
  right: 0%;
  animation: float 4s ease-in-out 0.5s infinite;
}

.badge-time {
  bottom: 5%;
  left: 2%;
  animation: float 5s ease-in-out 1.2s infinite;
}

.badge-safe {
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  animation: float 4.5s ease-in-out 2s infinite;
  white-space: nowrap;
}

.hero-notif {
  position: absolute;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  animation: slideIn 0.5s ease both;
}

/* Notif-1: pojok kanan atas, DI DALAM batas hero-visual */
.notif-1 {
  top: 0;
  right: 10px;
  animation-delay: 1s;
  z-index: 3;
  max-width: 220px;
}

/* Notif-2: pojok kiri bawah, DI DALAM batas hero-visual */
.notif-2 {
  bottom: 0;
  left: 10px;
  animation-delay: 2s;
  z-index: 3;
  max-width: 220px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.notif-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.notif-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notif-text strong {
  color: #fff;
}

.notif-text span {
  color: var(--text-muted);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--border);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(8px);
    opacity: 0;
  }
}

/* ── 8. LAYANAN ─ */
.layanan-section {
  background: var(--dark-2);
}

.layanan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.layanan-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.layanan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.layanan-card:hover {
  border-color: rgba(108, 99, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.layanan-card:hover::before {
  opacity: 1;
}

.layanan-card.featured {
  border-color: rgba(108, 99, 255, 0.5);
  background: linear-gradient(135deg, var(--dark-3), rgba(108, 99, 255, 0.08));
}

.card-popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 0 var(--radius) 0 var(--radius-sm);
}

/* Gambar cover full atas card */
.layanan-icon {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.12), rgba(79, 70, 229, 0.08));
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: var(--primary);
  margin-bottom: 0;
  overflow: hidden;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.layanan-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.layanan-card:hover .layanan-icon img {
  transform: scale(1.05);
}

/* Body konten card */
.layanan-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.layanan-name {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.layanan-desc {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 16px;
  line-height: 1.65;
}

.layanan-price {
  margin-bottom: 12px;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.price-value {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
}

.layanan-durasi {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.layanan-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.layanan-cta {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(236, 72, 153, 0.1));
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: var(--radius);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-text h3 {
  font-family: var(--font-main);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.cta-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── 9. TENTANG ─ */
.tentang-section {
  background: var(--dark);
}

.tentang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 72px;
}

.tentang-visual {
  position: relative;
}

.tentang-img-main {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder-main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 3rem;
  color: var(--primary);
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
}

.img-placeholder-main span {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.tentang-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 140px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  border: 3px solid rgba(108,99,255,0.4);
  background: var(--dark-3);
}

.tentang-stat-card {
  position: absolute;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.stat-card-1 {
  top: -16px;
  right: 30px;
}

.stat-card-2 {
  bottom: 60px;
  left: -16px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(108, 99, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.stat-info strong {
  display: block;
  font-weight: 800;
  color: #fff;
}

.stat-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.tentang-desc {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.keunggulan-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.keunggulan-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.keung-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.bg-blue {
  background: rgba(33, 150, 243, 0.2);
  color: #2196F3;
}

.bg-purple {
  background: rgba(108, 99, 255, 0.2);
  color: var(--primary);
}

.bg-green {
  background: rgba(76, 175, 80, 0.2);
  color: var(--success);
}

.bg-orange {
  background: rgba(255, 152, 0, 0.2);
  color: var(--warning);
}

.keung-text h4 {
  font-weight: 700;
  margin-bottom: 4px;
}

.keung-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.stats-item:hover {
  border-color: rgba(108, 99, 255, 0.3);
  transform: translateY(-3px);
}

.stats-item>i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.stats-num {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  display: inline;
}

.stats-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: inline;
}

.stats-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── 10. TESTIMONI ─ */
.testimoni-section {
  background: var(--dark-2);
}

.swiper {
  padding-bottom: 50px !important;
}

.testimoni-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
}

.testimoni-card:hover {
  border-color: rgba(108, 99, 255, 0.3);
}

.card-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.card-quote {
  font-size: 1.8rem;
  color: rgba(108, 99, 255, 0.3);
  margin-bottom: 12px;
}

.card-isi {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.card-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.profile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  overflow: hidden;
  flex-shrink: 0;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.profile-nama {
  font-weight: 700;
  font-size: 0.95rem;
}

.profile-univ {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.profile-layanan {
  font-size: 0.75rem;
  color: var(--primary-light);
}

.rating-summary {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.rating-score {
  text-align: center;
}

.score-number {
  font-family: var(--font-main);
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.score-stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin: 8px 0 6px;
}

.score-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 300px;
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  width: 30px;
  text-align: right;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: var(--dark-4);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
}

.bar-pct {
  font-size: 0.78rem;
  color: var(--text-muted);
  width: 35px;
}

/* Swiper Custom */
.testimoniSwiper .swiper-pagination-bullet {
  background: var(--primary);
}

.testimoniSwiper .swiper-button-prev,
.testimoniSwiper .swiper-button-next {
  color: var(--primary);
  background: var(--dark-3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.testimoniSwiper .swiper-button-prev::after,
.testimoniSwiper .swiper-button-next::after {
  font-size: 1rem;
  font-weight: 800;
}

/* ── 11. PROSES ─ */
.proses-section {
  background: var(--dark);
}

.proses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.proses-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.proses-card:hover {
  transform: translateY(-5px);
}

.proses-num {
  position: absolute;
  top: -16px;
  left: 24px;
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 800;
  background: var(--primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
}

.proses-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.color-blue .proses-icon {
  background: rgba(33, 150, 243, 0.15);
  color: #2196F3;
}

.color-purple .proses-icon {
  background: rgba(108, 99, 255, 0.15);
  color: var(--primary);
}

.color-orange .proses-icon {
  background: rgba(255, 152, 0, 0.15);
  color: var(--warning);
}

.color-green .proses-icon {
  background: rgba(76, 175, 80, 0.15);
  color: var(--success);
}

.color-blue:hover {
  border-color: rgba(33, 150, 243, 0.3);
}

.color-purple:hover {
  border-color: rgba(108, 99, 255, 0.3);
}

.color-orange:hover {
  border-color: rgba(255, 152, 0, 0.3);
}

.color-green:hover {
  border-color: rgba(76, 175, 80, 0.3);
}

.proses-card h3 {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.proses-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.proses-arrow {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(108, 99, 255, 0.4);
}

/* ── 12. FAQ ─ */
.faq-section {
  background: var(--dark-2);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.faq-left p {
  color: var(--text-muted);
  margin-bottom: 8px;
  margin-top: 12px;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(108, 99, 255, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── 13. KONTAK ─ */
.kontak-section {
  background: var(--dark);
}

.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.info-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item:hover {
  background: var(--glass);
}

.info-wa {
  background: rgba(37, 211, 102, 0.05);
}

.info-wa:hover {
  background: rgba(37, 211, 102, 0.1);
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(108, 99, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.info-wa .info-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.info-text {
  flex: 1;
}

.info-text strong {
  display: block;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.info-text span {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.info-text small {
  font-size: 0.75rem;
  color: var(--primary-light);
}

.quick-wa .quick-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.btn-quickwa {
  display: block;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #25D366;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition: var(--transition);
  cursor: pointer;
  text-align: left;
}

.btn-quickwa:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.4);
  transform: translateX(4px);
}

.form-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.form-card h3 {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-card>p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.9rem;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.input-wrap {
  position: relative;
}

.input-wrap>i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 0.9rem;
  pointer-events: none;
}

.input-wrap textarea+i,
.input-wrap textarea~i {
  top: 16px;
  transform: none;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: 12px 14px 12px 40px;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.input-wrap textarea {
  padding-left: 40px;
  resize: vertical;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--primary);
  background: rgba(108, 99, 255, 0.05);
}

.input-wrap select option {
  background: var(--dark-3);
}

/* Alert */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.alert-success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: var(--success);
}

.alert-error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #f44336;
}

/* ── 14. FOOTER ─ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}

.footer-main {
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  width: fit-content;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-title {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 0.6rem;
  color: var(--primary);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  font-size: 0.86rem;
}

.footer-contact li i {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact li a,
.footer-contact li span {
  color: var(--text-muted);
}

.footer-contact li a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.text-red {
  color: var(--secondary);
}

/* ── 15. Float Buttons ─ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: waPulse 2s infinite;
}

.login-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-light);
  z-index: 999;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.login-float:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-glow);
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* ── 16. Admin Login ─ */
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding: 24px;
}

.login-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow);
}

.login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.login-logo .logo-icon {
  width: 60px;
  height: 60px;
  font-size: 1.6rem;
  margin: 0 auto 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.login-logo h1 {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 800;
}

.login-logo p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 4px;
}


/* ── 16. SERVICE DETAIL PAGE ─ */
.service-detail-page {
  padding-top: var(--nav-h);
}

.detail-hero {
  padding: 40px 0 40px;
  background: radial-gradient(circle at 10% 30%, rgba(108, 99, 255, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
              var(--dark-2);
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a:hover {
  color: var(--primary-light);
}

.breadcrumb .separator {
  font-size: 0.7rem;
  opacity: 0.5;
}

.breadcrumb span {
  color: var(--text);
  font-weight: 600;
}

.detail-tag {
  display: inline-block;
  background: rgba(108, 99, 255, 0.12);
  color: var(--primary-light);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.detail-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, var(--gray-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.detail-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-muted);
}

.meta-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

.meta-item span {
  color: #fff;
  font-weight: 600;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

.detail-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.detail-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

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

.detail-icon-wrap {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.5;
}

.detail-body {
  padding: 40px;
}

.detail-body h3 {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

.rich-text {
  line-height: 1.8;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.rich-text p {
  margin-bottom: 20px;
}

.rich-text ul, .rich-text ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.rich-text li {
  margin-bottom: 10px;
}

/* Features inside detail */
.detail-features h3 {
  font-family: var(--font-main);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.f-icon {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.f-text h4 {
  font-family: var(--font-main);
  font-size: 1rem;
  margin-bottom: 6px;
  color: #fff;
}

.f-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Sidebar */
.sticky-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.cta-card {
  padding: 30px;
  background: linear-gradient(135deg, var(--dark-3), rgba(108, 99, 255, 0.05));
  border: 1px solid var(--glass-border);
}

.cta-card h3 {
  font-family: var(--font-main);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.cta-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.card-price {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-price .label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.card-price .value {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.trust-indicators i {
  color: var(--primary-light);
}

.info-card {
  padding: 24px;
}

.info-card h4 {
  font-family: var(--font-main);
  font-size: 1rem;
  margin-bottom: 20px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-link {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-link i {
  width: 32px;
  height: 32px;
  background: rgba(108, 99, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.info-link span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.info-link p {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600;
}

/* Related Services */
.related-layanan {
  border-top: 1px solid var(--border);
}

.text-left {
  text-align: left;
  margin-left: 0;
}

/* FAQ Simple */
.bg-dark-alt {
  background: var(--dark-2);
}

.faq-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.faq-simple-item h4 {
  font-family: var(--font-main);
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #fff;
}

.faq-simple-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive Detail */
@media (max-width: 992px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .detail-image {
    height: 300px;
  }
  
  .detail-body {
    padding: 24px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-simple-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .meta-item {
    font-size: 0.88rem;
  }
}

/* ── 17. Responsive ─ */
@media (max-width: 1024px) {
  .tentang-grid {
    grid-template-columns: 1fr;
  }

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

  .proses-arrow {
    display: none;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 100px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    gap: 16px;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(13, 14, 28, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 20px;
    display: none;
    flex-direction: column;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 12px 16px;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: var(--dark-4);
    margin-top: 0;
    box-shadow: none;
    display: block; /* Reset grid layout on mobile */
  }

  .hamburger {
    display: flex;
  }

  .nav-cta .btn-wa span {
    display: none;
  }

  /* Mobile: sembunyikan login di nav-cta, tampilkan di nav-list */
  .btn-login-nav {
    display: none;
  }

  .nav-item-login-mobile {
    display: block;
  }

  .layanan-grid {
    grid-template-columns: 1fr;
  }

  .proses-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .kontak-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .rating-summary {
    flex-direction: column;
    gap: 24px;
  }

  .rating-breakdown {
    min-width: auto;
    width: 100%;
  }

  .tentang-grid {
    gap: 40px;
  }
}

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

  .layanan-cta {
    flex-direction: column;
  }

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

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ── AOS Mobile Override ─ */
@media (max-width: 768px) {

  /* Percepat semua transisi AOS di mobile */
  [data-aos] {
    transition-duration: 300ms !important;
    transition-delay: 0ms !important;
  }

  /* Pastikan elemen yang belum dianimasikan tidak stuck tak terlihat */
  [data-aos]:not(.aos-animate) {
    opacity: 0;
    /* Fallback: paksa tampil setelah 1.5s jika JS lambat */
    animation: aosFailsafe 0s 1.5s forwards;
  }

  @keyframes aosFailsafe {
    to {
      opacity: 1;
      transform: none;
    }
  }

  /* Kurangi transform jarak untuk mobile agar lebih halus */
  [data-aos="fade-up"]:not(.aos-animate) {
    transform: translateY(20px) !important;
  }

  [data-aos="fade-down"]:not(.aos-animate) {
    transform: translateY(-20px) !important;
  }

  [data-aos="fade-right"]:not(.aos-animate) {
    transform: translateX(-20px) !important;
  }

  [data-aos="fade-left"]:not(.aos-animate) {
    transform: translateX(20px) !important;
  }
}

/* ── Live Toast Notification ─ */
#live-toast-container {
  position: fixed;
  bottom: 100px; /* Di atas tombol login */
  left: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.live-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 12px 16px;
  min-width: 260px;
  max-width: 320px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  /* Start hidden below */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.live-toast.toast-show {
  opacity: 1;
  transform: translateY(0);
}

.live-toast.toast-hide {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.live-toast .toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.live-toast.toast-selesai .toast-icon {
  background: rgba(76, 175, 80, 0.18);
  color: #4CAF50;
}

.live-toast.toast-order .toast-icon {
  background: rgba(108, 99, 255, 0.18);
  color: var(--primary-light);
}

.live-toast .toast-body {
  flex: 1;
  min-width: 0;
}

.live-toast .toast-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-toast .toast-msg {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-toast .toast-time {
  font-size: 0.68rem;
  color: var(--gray);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}

.live-toast .toast-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  position: absolute;
  top: 10px;
  right: 12px;
  animation: pulse 2s infinite;
}

.live-toast.toast-selesai .toast-dot {
  background: #4CAF50;
}

.live-toast.toast-order .toast-dot {
  background: var(--primary);
}

@media (max-width: 768px) {
  #live-toast-container {
    left: 15px;
    bottom: 90px; /* Sesuaikan agar di atas tombol login di mobile */
    right: 85px; 
    width: auto;
  }

  .login-float {
    width: 48px;
    height: 48px;
    bottom: 20px;
    left: 15px;
    font-size: 1.1rem;
  }

  .live-toast {
    min-width: auto;
    max-width: 100%;
    padding: 10px 12px;
    gap: 10px;
    border-radius: 12px;
  }

  .live-toast .toast-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .live-toast .toast-title {
    font-size: 0.72rem;
  }

  .live-toast .toast-msg {
    font-size: 0.68rem;
  }

  .live-toast .toast-time {
    display: none; /* Hide time on very small screens to save space */
  }
}