/* ============================================
   VARIABEL WARNA & UKURAN — DOKTER WC THEME
   Ganti nilai di sini untuk mengubah tampilan
============================================ */
:root {
  --navy:        #0C1F5E;   /* Warna utama gelap — navy biru Dokter WC */
  --navy-dark:   #07133B;   /* Lebih gelap untuk footer */
  --blue:        #1755CC;   /* Aksen biru royal — warna utama logo */
  --blue-light:  #4AADE8;   /* Aksen biru lebih cerah */
  --orange:      #E8631A;   /* Warna tombol CTA / darurat */
  --light-bg:    #EEF4FF;   /* Background terang biru muda */
  --white:       #FFFFFF;
  --text:        #1E293B;   /* Teks utama */
  --text-muted:  #64748B;   /* Teks sekunder */
  --border:      #C8DCF8;   /* Garis pembatas biru muda */
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   UTILITY / LAYOUT
============================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.section-desc {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 1rem;
  max-width: 540px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-desc {
  margin: 16px auto 0;
}

/* ============================================
   TOMBOL / BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-orange:hover {
  background: #cf5515;
  box-shadow: 0 8px 24px rgba(232, 99, 26, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1fb959;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ============================================
   TOP BAR DARURAT
============================================ */
.top-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-bottom: 2px solid var(--blue);
}

.top-bar strong {
  font-weight: 800;
  font-size: 1rem;
}

/* ============================================
   HEADER / NAVIGASI
============================================ */
.header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.30);
}

.header-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--blue);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-name {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  display: block;
}

.logo-cross {
  color: var(--blue-light);
  font-size: 1rem;
}

.logo-sub {
  color: var(--blue-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--blue-light);
}

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

.nav-phone {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-btn {
  background: var(--blue);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.15s, transform 0.15s;
}

.nav-btn:hover {
  background: #1240A8;
  transform: translateY(-1px);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  background: linear-gradient(135deg, #07113A 0%, #0C1F5E 45%, #0a1848 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0 110px;
}

/* Wallpaper siluet truk — latar belakang */
.hero-truck-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Overlay gradien di atas siluet agar teks tetap terbaca */
.hero-truck-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7, 19, 59, 0.92) 0%,
    rgba(7, 19, 59, 0.70) 40%,
    rgba(7, 19, 59, 0.30) 75%,
    rgba(7, 19, 59, 0.10) 100%
  );
  z-index: 1;
}

/* Grid garis / dot pattern dekorasi */
.hero-truck-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(74,173,232,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: 0;
}

/* Cahaya biru dramatis di kanan atas */
.hero-glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 520px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(23,85,204,0.28) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Cahaya oranye aksen kecil */
.hero-glow-orange {
  position: absolute;
  bottom: 60px;
  right: 200px;
  width: 280px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(232,99,26,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Diagonal slash — elemen signature visual */
.hero-slash {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 700px;
  height: 140%;
  background: linear-gradient(160deg, var(--blue) 0%, #0A1844 100%);
  transform: skewX(-10deg);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* Lengkung putih di bawah hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 56px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

/* Road line bawah hero */
.hero-road {
  position: absolute;
  bottom: 52px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent 0%, rgba(74,173,232,0.25) 20%, rgba(74,173,232,0.18) 80%, transparent 100%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

/* Kiri: Teks hero */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 173, 232, 0.14);
  border: 1px solid rgba(74, 173, 232, 0.35);
  color: var(--blue-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
}

/* Titik berkedip di badge */
.dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 20px;
}

.hero h1 em {
  color: var(--blue-light);
  font-style: normal;
}

.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 460px;
}

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

/* Kanan: Kartu statistik */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(74, 173, 232, 0.22);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(8px);
}

.hero-card-label {
  color: var(--blue-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
}

.stat-number {
  color: var(--white);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
}

/* Kotak telepon di dalam hero card */
.phone-box {
  background: var(--blue);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.15s, transform 0.18s;
}

.phone-box:hover {
  background: #1240A8;
  transform: translateY(-2px);
}

.phone-box-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.phone-box-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 500;
  display: block;
}

.phone-box-number {
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: block;
}

/* ============================================
   HERO ILLUSTRATION SVG
============================================ */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-illustration {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.hero-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(23, 85, 204, 0.35));
}

/* Animasi asap knalpot */
@keyframes smokeRise {
  0%   { opacity: 0.6; transform: translateY(0) scale(1); }
  100% { opacity: 0;   transform: translateY(-14px) scale(1.6); }
}

.smoke { animation: smokeRise 2s ease-out infinite; }
.smoke1 { animation-delay: 0s; }
.smoke2 { animation-delay: 0.4s; }
.smoke3 { animation-delay: 0.8s; }

/* Bintang berkelip */
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50%       { opacity: 0.9; transform: scale(1.3); }
}

.star-twinkle { animation: twinkle 2.5s ease-in-out infinite; }

/* ============================================
   LAYANAN NOTE — HARGA JARAK
============================================ */
.layanan-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 16px 22px;
  background: var(--white);
  border: 1.5px dashed var(--blue);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.layanan-note-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.layanan-note strong {
  color: var(--blue);
}

/* ============================================
   LAYANAN
============================================ */
.layanan {
  background: var(--light-bg);
}

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

.layanan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

/* Strip aksen kiri yang muncul saat hover */
.layanan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.22s ease;
}

.layanan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(12, 31, 94, 0.12);
}

.layanan-card:hover::before {
  transform: scaleY(1);
}

.layanan-icon {
  font-size: 2.3rem;
  margin-bottom: 18px;
  display: block;
}

.layanan-nama {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.layanan-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.layanan-harga {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.87rem;
}

/* ============================================
   KEUNGGULAN
============================================ */
.keunggulan {
  background: var(--white);
}

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

/* Panel statistik kiri */
.stats-panel {
  background: var(--navy);
  border-radius: 20px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}

.stats-panel::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.12;
}

.stats-panel-label {
  color: var(--blue-light);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.stats-panel-big {
  color: var(--white);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.stats-panel-big-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.stats-panel-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 26px;
}

.stats-panel-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sub-stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
}

.sub-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* Daftar keunggulan kanan */
.keunggulan-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

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

.keunggulan-item-icon {
  width: 48px;
  height: 48px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.keunggulan-item-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.keunggulan-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.62;
}

/* ============================================
   AREA LAYANAN
============================================ */
.area {
  background: var(--navy);
  padding: 72px 0;
}

.area .section-title {
  color: var(--white);
}

.area .section-desc {
  color: rgba(255,255,255,0.58);
}

.area .section-eyebrow {
  color: var(--blue-light);
}

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

.area-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(74, 173, 232, 0.20);
  color: rgba(255,255,255,0.82);
  padding: 13px 18px;
  border-radius: 10px;
  text-align: center;
  font-size: 0.87rem;
  font-weight: 500;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.area-tag:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* ============================================
   TESTIMONI
============================================ */
.testimoni {
  background: var(--light-bg);
}

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

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.testi-kutip {
  font-size: 2.6rem;
  color: var(--blue);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 10px;
}

.testi-bintang {
  color: #F59E0B;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-text {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.72;
  margin-bottom: 22px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.testi-nama {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

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

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  background: var(--white);
  padding: 80px 0;
}

.cta-box {
  max-width: 780px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Lingkaran dekorasi di dalam kotak CTA */
.cta-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.12;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--blue-light);
  opacity: 0.10;
}

.cta-box h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-box p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.60);
  padding: 52px 0 28px;
}

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

.footer-brand .logo-name {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 14px;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.72;
  max-width: 290px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 18px;
}

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

.footer-col ul li {
  font-size: 0.87rem;
}

.footer-col ul a {
  color: rgba(255,255,255,0.58);
  transition: color 0.15s;
}

.footer-col ul a:hover {
  color: var(--blue-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ============================================
   SOSIAL MEDIA — NAV, HERO, FOOTER
============================================ */

/* Ikon sosmed di navbar */
.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 4px;
}

.nav-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}

.nav-social-icon:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.nav-social-icon:first-child:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
}

.nav-social-icon:last-child:hover {
  background: #010101;
  border-color: transparent;
}

/* Sosmed di hero */
.hero-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-social-label {
  color: rgba(255,255,255,0.50);
  font-size: 0.82rem;
  font-weight: 500;
}

.hero-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}

.hero-social-btn:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.hero-social-btn:first-of-type:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
}

.hero-social-btn:last-of-type:hover {
  background: #010101;
  border-color: rgba(255,255,255,0.12);
}

/* Sosmed di footer */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.58);
  font-size: 0.87rem;
  transition: color 0.15s;
}

.footer-social-icon:hover {
  color: var(--blue-light);
}

/* ============================================
   MOTTO STRIP
============================================ */
.motto-strip {
  background: var(--blue);
  padding: 12px 0;
  text-align: center;
}

.motto-strip span {
  color: var(--white);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ============================================
   HAMBURGER BUTTON
============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

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

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

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

/* ============================================
   MOBILE DRAWER MENU
============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--navy-dark);
  z-index: 200;
  padding: 80px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
  background: rgba(74, 173, 232, 0.15);
  color: var(--white);
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-social {
  display: flex;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  transition: color 0.18s, background 0.18s;
}

.mobile-social-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

/* Overlay gelap di belakang menu */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 190;
  backdrop-filter: blur(2px);
}

.menu-overlay.show {
  display: block;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
============================================ */
.fab-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 18px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 150;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab-whatsapp:hover,
.fab-whatsapp:active {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ============================================
   MOBILE BOTTOM ACTION BAR
============================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
  gap: 10px;
}

.mobile-bottom-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: opacity 0.18s, transform 0.18s;
}

.mobile-bottom-btn:active {
  opacity: 0.85;
  transform: scale(0.97);
}

.mobile-bottom-call {
  background: var(--orange);
  color: var(--white);
}

.mobile-bottom-wa {
  background: #25D366;
  color: var(--white);
}

/* ============================================
   RESPONSIVE — Tablet (max 960px)
============================================ */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-illustration {
    max-width: 360px;
  }

  .hero-card {
    max-width: 440px;
  }

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

  .keunggulan-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .nav-links {
    display: none;
  }

  .nav-social {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ============================================
   RESPONSIVE — Handphone (max 600px)
============================================ */
@media (max-width: 600px) {
  /* Spacing */
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* Top bar */
  .top-bar {
    font-size: 0.78rem;
    padding: 8px 12px;
  }

  .top-bar strong {
    font-size: 0.88rem;
  }

  /* Header */
  .header-inner {
    height: 62px;
  }

  .logo-sub {
    display: none;
  }

  /* Hide desktop-only nav items */
  .nav-phone { display: none; }
  .nav-btn   { display: none; }

  /* Hero */
  .hero { padding: 48px 0 72px; }

  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 1rem;
  }

  .hero-card {
    padding: 24px 20px;
  }

  /* Stats grid */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  /* Section header */
  .section-header {
    margin-bottom: 36px;
  }

  /* Layanan */
  .layanan-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .layanan-card {
    padding: 24px 20px;
  }

  .layanan-note {
    font-size: 0.85rem;
    padding: 14px 16px;
  }

  .hero-illustration {
    max-width: 300px;
  }

  /* Keunggulan stats panel */
  .stats-panel {
    padding: 28px 22px;
  }

  .stats-panel-big {
    font-size: 3rem;
  }

  .stats-panel-sub {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .sub-stat-num {
    font-size: 1.4rem;
  }

  /* Area */
  .area-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .area-tag {
    padding: 11px 10px;
    font-size: 0.82rem;
  }

  /* Testimoni */
  .testimoni-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testi-card {
    padding: 22px 18px;
  }

  /* CTA box */
  .cta-section { padding: 56px 0; }

  .cta-box {
    padding: 40px 20px;
    border-radius: 18px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 10px;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 1rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  footer {
    padding-bottom: calc(28px + 80px); /* ruang untuk bottom bar */
  }

  /* Show mobile-only elements */
  .fab-whatsapp {
    display: flex;
    bottom: 80px;
  }

  .mobile-bottom-bar {
    display: flex;
  }
}

/* ============================================
   RESPONSIVE — HP Kecil (max 380px)
============================================ */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .logo-name {
    font-size: 0.95rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

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

  .mobile-bottom-btn {
    font-size: 0.82rem;
    padding: 12px 8px;
  }
}
