/* =====================================================
   MOMMY LAUNDRY – STYLE.CSS
   Tema: Teal/Toska Premium | Font: Nunito + Playfair
   ===================================================== */

/* ── CSS Variables ── */
:root {
  --teal-dark: #006060;
  --teal: #008080;
  --teal-mid: #00a8a8;
  --teal-light: #b2e8e8;
  --teal-pale: #e0f9f9;
  --teal-xpale: #f0fdfd;

  --white: #ffffff;
  --gray-50: #f8fafb;
  --gray-100: #f1f5f5;
  --gray-200: #e2eded;
  --gray-400: #9cb8b8;
  --gray-600: #5a7878;
  --gray-800: #1e3232;

  --wa-green: #25d366;
  --wa-dark: #128c7e;

  --accent-gold: #ffd700;
  --accent-warm: #ff9966;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 128, 128, 0.1);
  --shadow-md: 0 6px 24px rgba(0, 128, 128, 0.14);
  --shadow-lg: 0 16px 48px rgba(0, 128, 128, 0.18);
  --shadow-card: 0 4px 20px rgba(0, 128, 128, 0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 72px;
  --container: 1200px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-teal {
  color: var(--teal-mid);
}

/* ── Section Common ── */
.section {
  padding: 88px 0;
}
.section__head {
  text-align: center;
  margin-bottom: 56px;
}
.section__eyebrow {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--gray-800);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section__subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ════════════════════════════════ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 100px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn--lg {
  padding: 15px 32px;
  font-size: 1rem;
}
.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--teal-mid);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 168, 168, 0.35);
}
.btn--primary:hover {
  background: var(--teal);
  box-shadow: 0 6px 24px rgba(0, 128, 128, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--teal-mid);
  border-color: var(--teal-mid);
}
.btn--outline:hover {
  background: var(--teal-pale);
}

.btn--wa {
  background: var(--wa-green);
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.btn--wa:hover {
  background: var(--wa-dark);
  box-shadow: 0 6px 24px rgba(18, 140, 126, 0.45);
}

.btn--wa-outline {
  background: transparent;
  color: var(--wa-dark);
  border-color: var(--wa-green);
}
.btn--wa-outline:hover {
  background: #eafaf5;
}

/* ════════════════════════════════ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--gray-200);
  transition:
    box-shadow var(--transition),
    background var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 128, 128, 0.12);
  background: rgba(255, 255, 255, 0.99);
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.navbar__logo-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--teal-mid);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.navbar__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.navbar__brandname {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
}
.navbar__brandname em {
  color: var(--teal-mid);
  font-style: normal;
}

.navbar__nav {
  margin-left: auto;
}
.navbar__list {
  display: flex;
  gap: 4px;
  align-items: center;
}
.navbar__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: 100px;
  transition:
    color var(--transition),
    background var(--transition);
}
.navbar__link:hover,
.navbar__link.active {
  color: var(--teal-mid);
  background: var(--teal-pale);
}

.navbar__cta {
  margin-left: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--gray-800);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ════════════════════════════════ HERO ═══ */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    140deg,
    var(--teal-xpale) 0%,
    #e8fafa 40%,
    #f5f9ff 100%
  );
  padding-top: var(--nav-height);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-mid), transparent 70%);
  opacity: 0.06;
}
.hero__bubble--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
}
.hero__bubble--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  opacity: 0.05;
}
.hero__bubble--3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 35%;
  opacity: 0.04;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 64px;
}

.hero__badge {
  display: inline-block;
  background: var(--white);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--teal-light);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  color: var(--gray-800);
  margin-bottom: 20px;
}
.hero__title--accent {
  color: var(--teal-mid);
}
.hero__title--highlight {
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--teal);
}
.hero__stat span {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero__stat-divider {
  width: 1.5px;
  height: 36px;
  background: var(--gray-200);
}

/* Hero Illustration */
.hero__illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 168, 168, 0.18));
}

.hero__float-badge {
  position: absolute;
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--teal-light);
  color: var(--gray-800);
  white-space: nowrap;
}
.hero__float-badge--1 {
  top: 8%;
  left: 2%;
}
.hero__float-badge--2 {
  top: 4%;
  right: 0%;
}
.hero__float-badge--3 {
  bottom: 14%;
  right: 2%;
}

/* ════════════════════════════════ LAYANAN ═══ */
.layanan {
  background: var(--white);
}
.layanan__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.layanan__card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  position: relative;
}
.layanan__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.layanan__card--featured {
  background: linear-gradient(160deg, var(--teal-xpale), var(--white));
  border-color: var(--teal-light);
  box-shadow: var(--shadow-card);
}

.layanan__badge-featured {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-mid);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.layanan__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.layanan__icon-wrap--1 {
  background: var(--teal-pale);
}
.layanan__icon-wrap--2 {
  background: #fff3e0;
}
.layanan__icon-wrap--3 {
  background: #e8f5e9;
}
.layanan__icon-wrap--4 {
  background: #fce4ec;
}

.layanan__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gray-800);
  margin-bottom: 10px;
}
.layanan__desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}
.layanan__features {
  list-style: none;
}
.layanan__features li {
  font-size: 0.83rem;
  color: var(--gray-600);
  padding: 3px 0;
}

/* ════════════════════════════════ PRICE LIST ═══ */
.pricelist {
  background: var(--teal-xpale);
  position: relative;
  overflow: hidden;
}
.pricelist__bg-deco {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-pale), transparent 70%);
  pointer-events: none;
}

.pricelist__teaser {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.pricelist__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--teal-light);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.pricelist__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pricelist__icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}
.pricelist__info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.pricelist__info p {
  font-size: 0.85rem;
  color: var(--gray-600);
}
.pricelist__info strong {
  color: var(--teal);
}

.pricelist__cta {
  text-align: center;
}
.pricelist__cta p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}

/* ════════════════════════════════ WHY US ═══ */
.whyus {
  background: var(--white);
}
.whyus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.whyus__item {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1.5px solid var(--gray-200);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}
.whyus__item:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.whyus__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.whyus__item h4 {
  font-weight: 800;
  font-size: 1rem;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.whyus__item p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ════════════════════════════════ LOKASI ═══ */
.lokasi {
  background: var(--gray-50);
}
.lokasi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.lokasi__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--gray-200);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  display: flex;
  flex-direction: column;
}
.lokasi__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.lokasi__card-header {
  padding: 24px 24px 16px;
  border-bottom: 1.5px solid var(--teal-pale);
  background: linear-gradient(135deg, var(--teal-xpale), var(--white));
}
.lokasi__badge {
  display: inline-block;
  background: var(--teal-mid);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.lokasi__badge--2 {
  background: var(--teal-dark);
}
.lokasi__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gray-800);
  line-height: 1.3;
}

.lokasi__details {
  padding: 18px 24px;
}
.lokasi__address {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.lokasi__icon-addr {
  flex-shrink: 0;
  margin-top: 2px;
}
.lokasi__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.lokasi__meta span {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  background: var(--teal-pale);
  padding: 4px 12px;
  border-radius: 100px;
}

.lokasi__map-wrap {
  flex: 1;
  min-height: 220px;
  overflow: hidden;
}
.lokasi__map {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.lokasi__card .btn--wa {
  margin: 16px 24px 24px;
  width: calc(100% - 48px);
  border-radius: var(--radius-md);
}

/* ════════════════════════════════ KONTAK ═══ */
.kontak {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 80px 0;
  overflow: hidden;
}
.kontak__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
}
.kontak__content {
  flex: 1;
  z-index: 1;
}
.kontak__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: white;
  line-height: 1.2;
  margin-bottom: 18px;
}
.kontak__title span {
  color: var(--teal-light);
}
.kontak__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.kontak__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.kontak__deco {
  flex-shrink: 0;
  opacity: 0.15;
}

/* ════════════════════════════════ FOOTER ═══ */
.footer {
  background: var(--gray-800);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
}
.footer__logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--teal-mid);
  flex-shrink: 0;
  background: var(--teal-dark);
}
.footer__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__brandname {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: white;
  font-weight: 700;
}
.footer__tagline {
  font-size: 0.78rem;
  color: var(--teal-light);
  margin-top: 2px;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 36px;
}
.footer__col-title {
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer__list {
  font-size: 0.88rem;
  line-height: 1.75;
}
.footer__list--links a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}
.footer__list--links a:hover {
  color: var(--teal-light);
}

.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  transition:
    background var(--transition),
    color var(--transition);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.footer__social-btn:hover {
  color: white;
}
.footer__social-btn--ig:hover {
  background: rgba(193, 53, 132, 0.25);
  border-color: rgba(193, 53, 132, 0.4);
}
.footer__social-btn--tt:hover {
  background: rgba(255, 255, 255, 0.12);
}
.footer__social-btn--em:hover {
  background: rgba(0, 168, 168, 0.25);
  border-color: rgba(0, 168, 168, 0.4);
}
.footer__social-btn svg {
  flex-shrink: 0;
}

.footer__bottom {
  padding: 18px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ════════════════════════════════ FLOATING WA ═══ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  background: var(--wa-green);
  color: white;
  border-radius: 100px;
  padding: 14px 20px 14px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  font-weight: 700;
  font-size: 0.9rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}
.wa-float:hover {
  background: var(--wa-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(18, 140, 126, 0.5);
}
.wa-float__label {
  font-family: var(--font-body);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .layanan__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricelist__teaser {
    grid-template-columns: repeat(2, 1fr);
  }
  .whyus__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__inner {
    gap: 32px;
  }
  .hero__float-badge--1 {
    display: none;
  }
  .footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Navbar mobile */
  .navbar__hamburger {
    display: flex;
  }
  .navbar__cta {
    display: none;
  }
  .navbar__nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: white;
    border-bottom: 2px solid var(--teal-pale);
    padding: 16px 24px 24px;
    transform: translateY(-110%);
    opacity: 0;
    transition:
      transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.3s;
    box-shadow: 0 8px 32px rgba(0, 128, 128, 0.1);
    z-index: 999;
  }
  .navbar__nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .navbar__list {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
  }
  .navbar__link {
    display: block;
    padding: 12px 18px;
    font-size: 1rem;
  }

  /* Hero mobile */
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 16px);
  }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 48px;
  }
  .hero__content {
    order: 1;
  }
  .hero__illustration {
    order: 2;
  }
  .hero__desc {
    margin: 0 auto 28px;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__stats {
    justify-content: center;
  }
  .hero__svg {
    max-width: 300px;
  }
  .hero__float-badge {
    display: none;
  }

  /* Sections */
  .section {
    padding: 64px 0;
  }
  .section__head {
    margin-bottom: 36px;
  }

  /* Layanan */
  .layanan__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Price list */
  .pricelist__teaser {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Why us */
  .whyus__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Lokasi — VERTICAL on mobile */
  .lokasi__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .lokasi__card {
    width: 100%;
  }
  .lokasi__map-wrap {
    min-height: 240px;
  }
  .lokasi__map {
    height: 240px;
    width: 100%;
  }
  /* Edge-to-edge maps on mobile */
  .lokasi .container {
    padding: 0;
  }
  .lokasi .section__head {
    padding: 0 24px;
  }
  .lokasi__card {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  .lokasi__card:first-child {
    border-top: 0;
  }
  .lokasi__card:last-child {
    border-bottom: 0;
  }
  .lokasi__card-header,
  .lokasi__details,
  .lokasi__card .btn--wa {
    padding-left: 20px;
    padding-right: 20px;
  }
  .lokasi__card .btn--wa {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  /* Kontak */
  .kontak__inner {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
  .kontak__actions {
    justify-content: center;
  }
  .kontak__deco {
    display: none;
  }

  /* Footer */
  .footer__inner {
    gap: 28px;
  }
  .footer__cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer__brand {
    justify-content: center;
    text-align: center;
  }

  /* Floating WA – smaller on mobile */
  .wa-float {
    padding: 13px;
    border-radius: 50%;
  }
  .wa-float__label {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }
  .kontak__actions {
    flex-direction: column;
    align-items: center;
  }
  .kontak__actions .btn {
    width: 100%;
    max-width: 320px;
  }
  .hero__stats {
    gap: 16px;
  }
  .footer {
    padding-top: 44px;
  }
}

/* ════════════════════════════════
   ACCESSIBILITY — Reduce motion
   ════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
