/* ============================================================
   OKAPIA PETSHOP AND CARE — style.css
   BEM Methodology | Professional & Caring | Blue + White Palette
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Colors */
  --c-blue-900: #0a1628;
  --c-blue-800: #0d2240;
  --c-blue-700: #1340a8;
  --c-blue-600: #1a56db;
  --c-blue-500: #2878f0;
  --c-blue-400: #5b9ef8;
  --c-blue-100: #dbeafe;
  --c-blue-50: #eff6ff;
  --c-teal-500: #0ea5b5;
  --c-teal-100: #ccfbf1;
  --c-sky-500: #0ea5e9;
  --c-indigo-500: #6366f1;
  --c-white: #ffffff;
  --c-gray-50: #f8fafc;
  --c-gray-100: #f1f5f9;
  --c-gray-200: #e2e8f0;
  --c-gray-400: #94a3b8;
  --c-gray-600: #475569;
  --c-gray-800: #1e293b;
  --c-green: #25d366;

  /* Typography */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:
    0 1px 3px rgba(10, 22, 40, 0.06), 0 1px 2px rgba(10, 22, 40, 0.04);
  --shadow-md:
    0 4px 16px rgba(10, 22, 40, 0.1), 0 2px 6px rgba(10, 22, 40, 0.06);
  --shadow-lg:
    0 12px 40px rgba(10, 22, 40, 0.14), 0 4px 14px rgba(10, 22, 40, 0.08);
  --shadow-blue: 0 8px 32px rgba(26, 86, 219, 0.25);

  /* Transitions */
  --trans-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --trans-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-w: 1180px;
  --nav-h: 72px;
}

/* ===== 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(--c-gray-800);
  background-color: var(--c-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal:nth-child(3) {
  transition-delay: 0.18s;
}
.reveal:nth-child(4) {
  transition-delay: 0.26s;
}
.reveal:nth-child(5) {
  transition-delay: 0.34s;
}
.reveal:nth-child(6) {
  transition-delay: 0.42s;
}

/* ===== SHARED COMPONENTS ===== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue-600);
  background: var(--c-blue-50);
  border: 1px solid var(--c-blue-100);
  padding: 0.3em 0.9em;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--c-blue-900);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--c-blue-600);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans-base);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-blue-600);
  color: var(--c-white);
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
  background: var(--c-blue-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(26, 86, 219, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--c-blue-700);
  border-color: var(--c-blue-200, #bfdbfe);
}
.btn--outline:hover {
  background: var(--c-blue-50);
  border-color: var(--c-blue-400);
}
.btn--ghost {
  background: transparent;
  color: var(--c-blue-600);
  border-color: var(--c-blue-200, #bfdbfe);
  font-size: 0.875rem;
}
.btn--ghost:hover {
  background: var(--c-blue-50);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--trans-base),
    box-shadow var(--trans-base);
}
.navbar.is-scrolled {
  border-bottom-color: var(--c-gray-200);
  box-shadow: var(--shadow-sm);
}

.navbar__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar__logo {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.navbar__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-blue-900);
}
.navbar__name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--c-gray-600);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar__link {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-gray-600);
  transition: all var(--trans-fast);
}
.navbar__link:hover {
  background: var(--c-blue-50);
  color: var(--c-blue-700);
}
.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  margin-left: 0.5rem;
  background: var(--c-blue-600);
  color: var(--c-white) !important;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  transition: all var(--trans-base);
}
.navbar__cta:hover {
  background: var(--c-blue-700);
  transform: translateY(-1px);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-gray-800);
  border-radius: 2px;
  transition: all var(--trans-base);
}
.navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  background: linear-gradient(150deg, #f0f7ff 0%, #e8f2fe 40%, #f5f0ff 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.hero__shape--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, #93c5fd, transparent 70%);
}
.hero__shape--2 {
  width: 350px;
  height: 350px;
  bottom: 80px;
  left: -60px;
  background: radial-gradient(circle, #bfdbfe, transparent 70%);
}
.hero__shape--3 {
  width: 280px;
  height: 280px;
  top: 40%;
  left: 45%;
  background: radial-gradient(circle, #c7d2fe, transparent 70%);
  opacity: 0.2;
}

.hero__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-xl) 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35em 1em;
  background: var(--c-white);
  border: 1px solid var(--c-blue-100);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-blue-700);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-blue-900);
  margin-bottom: 1.25rem;
}
.hero__title em {
  font-style: italic;
  color: var(--c-blue-600);
  display: block;
}

.hero__desc {
  font-size: 1.075rem;
  color: var(--c-gray-600);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero__desc strong {
  color: var(--c-blue-700);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-gray-100);
  width: fit-content;
}
.hero__stat {
  text-align: center;
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-blue-700);
  line-height: 1;
}
.hero__stat span {
  font-size: 0.72rem;
  color: var(--c-gray-400);
  font-weight: 500;
}
.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: var(--c-gray-200);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__blob {
  position: absolute;
  width: 320px;
  height: 320px;
  background: linear-gradient(
    135deg,
    var(--c-blue-500) 0%,
    #6ea8fe 50%,
    #93c5fd 100%
  );
  border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
  animation: blob-morph 8s ease-in-out infinite;
  opacity: 0.18;
}

@keyframes blob-morph {
  0%,
  100% {
    border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
  }
  33% {
    border-radius: 46% 54% 62% 38% / 44% 60% 40% 56%;
  }
  66% {
    border-radius: 54% 46% 38% 62% / 56% 40% 60% 44%;
  }
}

.hero__card {
  position: absolute;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-gray-100);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-blue-900);
  z-index: 2;
  animation: card-float 3s ease-in-out infinite;
}
.hero__card-icon {
  font-size: 1.375rem;
}

.hero__card--main {
  bottom: 30px;
  left: 20px;
  animation-delay: 0s;
}
.hero__card--float1 {
  top: 60px;
  right: 30px;
  animation-delay: 0.8s;
}
.hero__card--float2 {
  top: 180px;
  left: 10px;
  animation-delay: 1.6s;
}

@keyframes card-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero__paw-trail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 2.25rem;
  opacity: 0.15;
  transform: translate(-50%, -50%) rotate(-15deg);
  pointer-events: none;
  z-index: 0;
}

/* Hero Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--c-gray-400);
  text-transform: uppercase;
  font-weight: 500;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--c-blue-400), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% {
    opacity: 1;
    transform: scaleY(1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: scaleY(0.5) translateY(10px);
  }
}

/* ===== PROFIL ===== */
.profil {
  padding: var(--space-3xl) 1.5rem;
  background: var(--c-white);
}
.profil__container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}

.profil__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.profil__avatar {
  position: relative;
  width: 240px;
  height: 240px;
}
.profil__avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(
    var(--c-blue-500) 0deg,
    var(--c-sky-500) 120deg,
    var(--c-blue-300) 240deg,
    var(--c-blue-500) 360deg
  );
  animation: ring-spin 6s linear infinite;
}
@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

.profil__avatar-inner {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--c-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px solid var(--c-white);
}
.profil__avatar-emoji {
  font-size: 5rem;
  line-height: 1;
}

.profil__badge-ig {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--c-white);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-gray-100);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-blue-700);
  white-space: nowrap;
  z-index: 2;
}

.profil__deco-dot {
  position: absolute;
  border-radius: 50%;
}
.profil__deco-dot--1 {
  width: 12px;
  height: 12px;
  top: 15%;
  right: 8%;
  background: var(--c-blue-400);
  animation: dot-pulse 2s ease-in-out infinite;
}
.profil__deco-dot--2 {
  width: 8px;
  height: 8px;
  top: 30%;
  left: 5%;
  background: var(--c-teal-500);
  animation: dot-pulse 2s ease-in-out infinite 0.5s;
}
@keyframes dot-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

.profil__role {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-blue-500);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.profil__bio {
  font-size: 1rem;
  color: var(--c-gray-600);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.profil__bio strong {
  color: var(--c-blue-700);
}

.profil__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}
.profil__tag {
  padding: 0.3em 0.85em;
  background: var(--c-blue-50);
  border: 1px solid var(--c-blue-100);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-blue-700);
}

.profil__ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--c-white);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--trans-base);
  box-shadow: 0 4px 16px rgba(131, 58, 180, 0.3);
}
.profil__ig-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(131, 58, 180, 0.4);
}

/* ===== LAYANAN ===== */
.layanan {
  padding: var(--space-3xl) 1.5rem;
  background: var(--c-gray-50);
  position: relative;
  overflow: hidden;
}
.layanan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--c-blue-600),
    var(--c-teal-500),
    var(--c-sky-500)
  );
}

.layanan__container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.layanan__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.layanan__subtitle {
  font-size: 1.05rem;
  color: var(--c-gray-600);
  max-width: 540px;
  margin: 0 auto;
}

.layanan__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: var(--space-lg);
}

.layanan__card {
  background: var(--c-white);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--c-gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-base);
  position: relative;
  overflow: hidden;
}
.layanan__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-blue-500), var(--c-blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-base);
}
.layanan__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-blue-100);
}
.layanan__card:hover::after {
  transform: scaleX(1);
}

.layanan__card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.layanan__card-icon--blue {
  background: var(--c-blue-50);
}
.layanan__card-icon--teal {
  background: var(--c-teal-100);
}
.layanan__card-icon--sky {
  background: #e0f2fe;
}
.layanan__card-icon--indigo {
  background: #eef2ff;
}

.layanan__card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-blue-900);
  margin-bottom: 0.5rem;
}
.layanan__card p {
  font-size: 0.88rem;
  color: var(--c-gray-600);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.layanan__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-blue-600);
  background: var(--c-blue-50);
  padding: 0.2em 0.7em;
  border-radius: var(--radius-full);
  border: 1px solid var(--c-blue-100);
}

.layanan__note {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-blue-600), var(--c-blue-700));
  color: var(--c-white);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  text-align: center;
}
.layanan__note-icon {
  font-size: 1.75rem;
}
.layanan__note p {
  font-size: 0.975rem;
}
.layanan__note p strong {
  font-weight: 700;
}
.layanan__note .btn--ghost {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.4);
  font-size: 0.84rem;
}
.layanan__note .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ===== PRICELIST ===== */
.pricelist {
  padding: var(--space-3xl) 1.5rem;
  background: var(--c-white);
}
.pricelist__container {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pricelist__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.pricelist__subtitle {
  font-size: 1.05rem;
  color: var(--c-gray-600);
}

.pricelist__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.pricelist__card {
  background: var(--c-white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 2px solid var(--c-gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-base);
}
.pricelist__card:hover {
  border-color: var(--c-blue-200, #bfdbfe);
  box-shadow: var(--shadow-md);
}
.pricelist__card--wide {
  grid-column: 1 / -1;
}

.pricelist__card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--c-gray-100);
}
.pricelist__card-icon {
  font-size: 1.5rem;
}
.pricelist__card-header h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-blue-900);
}

.pricelist__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricelist__list--row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
}
.pricelist__list--row .pricelist__item {
  flex: 1;
  min-width: 180px;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  background: var(--c-gray-50);
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  border: 1px solid transparent;
}
.pricelist__list--row .pricelist__item:hover {
  border-color: var(--c-blue-100);
}
.pricelist__list--row .pricelist__item-price {
  font-size: 1rem;
}
.pricelist__list--row .pricelist__item-price small {
  font-size: 0.7rem;
  color: var(--c-gray-400);
  font-weight: 400;
}

.pricelist__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--trans-fast);
}
.pricelist__item:hover {
  background: var(--c-blue-50);
}
.pricelist__item-name {
  font-size: 0.875rem;
  color: var(--c-gray-600);
}
.pricelist__item-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-blue-700);
  white-space: nowrap;
}

.pricelist__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--c-blue-50);
  border: 1px solid var(--c-blue-100);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
}
.pricelist__disclaimer-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricelist__disclaimer p {
  font-size: 0.875rem;
  color: var(--c-gray-600);
  line-height: 1.6;
}
.pricelist__disclaimer a {
  color: var(--c-blue-600);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pricelist__disclaimer a:hover {
  color: var(--c-blue-700);
}

/* ===== LOKASI ===== */
.lokasi {
  padding: var(--space-3xl) 1.5rem;
  background: linear-gradient(160deg, var(--c-blue-900) 0%, #0d2240 100%);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.lokasi::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(40, 120, 240, 0.25),
    transparent 70%
  );
  pointer-events: none;
}
.lokasi::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 181, 0.2), transparent 70%);
  pointer-events: none;
}

.lokasi__container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lokasi .section-label {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #93c5fd;
}
.lokasi .section-title {
  color: var(--c-white);
}

.lokasi__info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}
.lokasi__info-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  transition: background var(--trans-base);
}
.lokasi__info-item:hover {
  background: rgba(255, 255, 255, 0.12);
}
.lokasi__info-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.lokasi__info-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #93c5fd;
  margin-bottom: 0.2rem;
}
.lokasi__info-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
.lokasi__info-item a {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.lokasi__info-item a:hover {
  color: var(--c-white);
}

.lokasi__wa-btn {
  margin-top: 0.5rem;
}

.lokasi__map {
  position: relative;
}
.lokasi__map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(255, 255, 255, 0.15);
  aspect-ratio: 4/3;
}
.lokasi__map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--c-blue-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 2.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__logo {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  opacity: 0.9;
}
.footer__brand strong {
  color: var(--c-white);
  font-size: 0.95rem;
  font-family: var(--font-display);
}
.footer__brand p {
  font-size: 0.78rem;
}
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer__copy {
  font-size: 0.78rem;
}

/* ===== FLOATING WA BUTTON ===== */
.wa-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--c-green);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--trans-base);
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.wa-fab__pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .layanan__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricelist__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  /* Navbar mobile */
  .navbar__nav {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--c-white);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--c-gray-100);
    box-shadow: var(--shadow-md);
  }
  .navbar__nav.is-open {
    display: flex;
  }
  .navbar__link {
    width: 100%;
    padding: 0.6rem 0.85rem;
  }
  .navbar__cta {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .navbar__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__visual {
    display: none;
  }
  .hero__desc,
  .hero__actions {
    max-width: 100%;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__stats {
    margin: 0 auto;
  }

  /* Profil */
  .profil__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .profil__image-wrap {
    justify-content: center;
  }
  .profil__tags {
    justify-content: center;
  }
  .profil__ig-btn {
    margin: 0 auto;
  }

  /* Layanan */
  .layanan__grid {
    grid-template-columns: 1fr;
  }
  .layanan__note {
    text-align: center;
    flex-direction: column;
  }

  /* Pricelist */
  .pricelist__grid {
    grid-template-columns: 1fr;
  }
  .pricelist__list--row {
    flex-direction: column;
    gap: 0.75rem;
  }
  .pricelist__list--row .pricelist__item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Lokasi */
  .lokasi__container {
    grid-template-columns: 1fr;
  }
  .lokasi__info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .hero__stat-divider {
    display: none;
  }
  .profil__avatar {
    width: 180px;
    height: 180px;
  }
  .profil__avatar-emoji {
    font-size: 3.5rem;
  }
  .pricelist__card--wide .pricelist__list--row {
    gap: 0.5rem;
  }
}
