/* 
  Klinik Utama JHC Matraman - Style CSS Murni (Pure CSS Layout)
  Author: AI Studio Code Architect
*/

/* --------------------------------------------------------------------------
   1. CSS Reset & Variable Definitions
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* JHC Royal Maroon & Cream Palette */
  --maroon-950: #30030c;
  --maroon-900: #4a0512;
  --maroon-850: #66081a;
  --maroon-800: #8c1d2e;
  --maroon-700: #a72338;
  --maroon-300: #f8b4be;
  --maroon-150: #fde8eb;
  --maroon-50:  #fff5f6;

  /* Stone Neutrals */
  --stone-50:  #fcfbf9;
  --stone-100: #f5f4ef;
  --stone-150: #ebeae4;
  --stone-200: #e2dfd5;
  --stone-300: #c9c5b5;
  --stone-500: #7a7565;
  --stone-600: #5c584b;
  --stone-800: #292723;
  --stone-900: #1b1a18;
  --stone-950: #0f0e0d;

  /* Branding Colors */
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --whatsapp-light: #e8f9ee;
  
  --green-500: #10b981;
  --green-700: #047857;
  --green-50: #ecfdf5;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-50: #eff6ff;
  --indigo-700: #4338ca;
  --indigo-50: #eef2ff;
  --purple-700: #7e22ce;
  --purple-50: #f5f3ff;
  --rose-700: #be123c;
  --rose-50: #fff1f2;

  /* System Presets */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-3xl: 24px;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. Typography & Core Layout
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--stone-50);
  color: var(--stone-900);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-col: true;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Helper Constraints */
.max-w-7xl {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.max-w-4xl {
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.max-w-3xl {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

/* Utility classes for layout & gaps */
.hidden {
  display: none !important;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   3. Header Navigation (Navbar)
   -------------------------------------------------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-200);
  transition: all var(--transition-normal);
}

.has-fixed-navbar {
  padding-top: 72px;
}

#header-section {
  position: sticky;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  width: 100%;
}

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

/* Brand Logo */
.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--maroon-700), var(--maroon-900));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(140, 29, 46, 0.15);
  transition: transform var(--transition-normal);
}

.logo-brand:hover .logo-icon {
  transform: scale(1.05);
}

.logo-text-top {
  display: block;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--stone-900);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.logo-text-sub {
  display: block;
  font-size: 10px;
  color: var(--maroon-800);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop Navigation Menu */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--stone-600);
}

.desktop-nav a {
  transition: color var(--transition-normal);
}

.desktop-nav a:hover {
  color: var(--maroon-800);
}

/* CTA Buttons */
.btn-primary {
  background-color: var(--maroon-800);
  color: #fff;
  font-weight: 650;
  font-size: 13.5px;
  padding: 11px 22px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 8px rgba(140, 29, 46, 0.12);
  transition: all var(--transition-normal);
}

.btn-primary:hover {
  background-color: var(--maroon-900);
  box-shadow: 0 6px 14px rgba(140, 29, 46, 0.22);
}

.btn-primary:active {
  transform: scale(0.98);
}

.header-cta-btn {
  display: none;
}

/* Mobile Menu Trigger */
.burger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  color: var(--stone-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  transition: background-color var(--transition-normal);
}

.burger-btn svg {
  display: block;
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.burger-btn:hover {
  background-color: var(--stone-100);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  border-t: 1px solid var(--stone-200);
  background-color: #fff;
  padding: 16px 20px 24px;
}

.mobile-nav-drawer.active {
  display: block;
}

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

.mobile-nav-link {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 15px;
  color: var(--stone-800);
  transition: background-color var(--transition-normal);
}

.mobile-nav-link:hover {
  background-color: var(--stone-100);
}

.mobile-nav-cta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--stone-150);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #fff;
  font-weight: 600;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  border-radius: var(--radius-xl);
  width: 100%;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
}

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

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   4. Hero Section & Booking Form
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, var(--maroon-950) 0%, var(--maroon-900) 50%, var(--stone-900) 100%);
  color: #fff;
  padding: 48px 0 80px;
  overflow: hidden;
}

/* Abstract rings background decoration */
.hero-deco-ring1 {
  position: absolute;
  top: -160px;
  left: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.hero-deco-ring2 {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 60px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

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

.hero-left {
  text-align: center;
}

/* Badge Alert */
.badge-instan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(102, 8, 26, 0.6);
  border: 1px solid var(--maroon-700);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--maroon-150);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.ping-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  position: relative;
}

.ping-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  opacity: 0.7;
  animation: ping 1.5s infinite;
}

@keyframes ping {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--maroon-300);
}

.hero-paragraph {
  color: var(--stone-300);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* Checklist layout */
.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
  text-align: left;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.checklist-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(102, 8, 26, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon-300);
  flex: 0 0 22px;
}

.checklist-icon svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.7;
}

.checklist-item span {
  display: block;
  min-width: 0;
}

/* Form Container Card */
.form-card {
  background-color: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-3xl);
  padding: 24px;
  color: var(--stone-900);
  box-shadow: var(--shadow-xl);
}

.form-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 12.5px;
  color: var(--stone-500);
  line-height: 1.5;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--stone-600);
  margin-bottom: 6px;
}

.form-subdued-hint {
  display: block;
  font-size: 10px;
  color: var(--stone-500);
  margin-bottom: 6px;
  line-height: 1.2;
}

.input-wrapper {
  position: relative;
}

.form-control {
  width: 100%;
  background-color: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-xl);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--stone-900);
  transition: all var(--transition-normal);
}

.form-control:focus {
  border-color: var(--maroon-800);
  box-shadow: 0 0 0 3px rgba(140, 29, 46, 0.1);
  background-color: #fff;
}

/* Custom +62 phone inputs */
.phone-prefix {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  font-size: 14px;
  color: var(--stone-500);
}

.form-control-phone {
  padding-left: 52px;
}

/* Custom indicator chevron for Select */
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
}

.select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--stone-500);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.select-chevron svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn-submit-form {
  width: 100%;
  height: 50px;
  font-size: 14.5px;
  font-weight: 700;
  text-transform: none;
  margin-top: 8px;
}

.btn-submit-form:disabled {
  cursor: wait;
  opacity: 0.82;
}

.lead-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 0 0 12px;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(159, 27, 31, 0.08);
  color: var(--maroon-800);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.form-success {
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
}

.form-secure-statement {
  font-size: 10px;
  color: var(--stone-500);
  text-align: center;
  line-height: 1.4;
  margin-top: 14px;
}

/* --------------------------------------------------------------------------
   5. Section Setup & Headings
   -------------------------------------------------------------------------- */
section {
  padding: 64px 0;
}

.section-tagline-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--maroon-50);
  border: 1px solid var(--maroon-150);
  border-radius: 99px;
  color: var(--maroon-800);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  width: fit-content;
  margin: 0 auto;
}

.section-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--stone-900);
}

.section-desc {
  font-size: 14px;
  color: var(--stone-500);
  font-weight: 300;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   6. Services Section (9-Grid Poliklinik)
   -------------------------------------------------------------------------- */
.services-section {
  background-color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--stone-200);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 12px;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 18px rgba(41, 37, 36, 0.04);
}

.service-card:hover {
  border-color: rgba(140, 29, 46, 0.25);
  box-shadow: 0 14px 28px rgba(140, 29, 46, 0.08);
}

.service-card-main {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.service-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background-color: var(--maroon-50);
  color: var(--maroon-800);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  flex: 0 0 auto;
}

.service-card:hover .service-icon-box {
  background-color: var(--maroon-800);
  color: #fff;
}

.service-icon-box svg {
  width: 18px;
  height: 18px;
}

.service-copy {
  min-width: 0;
}

.service-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--stone-900);
  line-height: 1.25;
  margin: 0 0 4px;
}

.service-text {
  font-size: 12px;
  color: var(--stone-500);
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}

.service-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(140, 29, 46, 0.06);
  color: var(--maroon-800);
  font-size: 10.5px;
  font-weight: 700;
  white-space: nowrap;
}

.service-cta-btn {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--maroon-800);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: transform var(--transition-normal), color var(--transition-normal);
}

.service-cta-btn:hover {
  color: var(--maroon-900);
  transform: translateX(3px);
}

.service-cta-btn svg {
  width: 12px;
  height: 12px;
}

/* --------------------------------------------------------------------------
   7. Facilities Slider Section
   -------------------------------------------------------------------------- */
.facilities-section {
  background-color: rgba(245, 244, 239, 0.6);
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
}

.facilities-heading-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}

.facilities-intro-copy {
  text-align: left;
}

.facility-section-badge {
  margin-left: 0;
  margin-bottom: 12px;
}

.facility-section-desc {
  margin-left: 0;
  max-width: 600px;
  margin-top: 8px;
}

/* Slider button layouts */
.slider-control-buttons {
  display: flex;
  gap: 12px;
  align-self: flex-start;
}

.slider-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xl);
  background-color: #fff;
  border: 1px solid var(--stone-200);
  color: var(--stone-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.slider-arrow-btn:hover {
  background-color: var(--stone-50);
  color: var(--maroon-800);
}

.slider-arrow-btn:active {
  transform: scale(0.95);
}

.slider-arrow-btn svg {
  width: 20px;
  height: 20px;
}

/* Outer wrapper viewport */
.slider-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-deck {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Individual Slides */
.facility-slide {
  width: 100%;
  flex-shrink: 0;
  background-color: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.slide-content {
  padding: 24px;
}

.slide-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 99px;
  background-color: var(--stone-100);
  border: 1px solid var(--stone-200);
  color: var(--stone-600);
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.slide-title {
  font-size: 17px;
  font-weight: 750;
  color: var(--stone-900);
  margin-bottom: 8px;
  line-height: 1.25;
}

.slide-desc {
  color: var(--stone-500);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 300;
}

.slide-footer {
  padding: 16px 24px;
  background-color: rgba(245, 244, 239, 0.3);
  border-top: 1px solid var(--stone-150);
  font-size: 10.5px;
  color: var(--stone-500);
  font-family: var(--font-mono);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   9. Why JHC Section (4 Columns)
   -------------------------------------------------------------------------- */
.why-section {
  background-color: var(--stone-50);
  border-top: 1px solid var(--stone-200);
}

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

.why-card {
  background-color: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-2xl);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-normal);
}

.why-card:hover {
  border-color: rgba(140, 29, 46, 0.1);
}

.why-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.why-icon-badge svg {
  width: 28px;
  height: 28px;
}

.badge-green  { background-color: var(--green-50);  color: var(--green-700); }
.badge-blue   { background-color: var(--blue-50);   color: var(--blue-700); }
.badge-purple { background-color: var(--purple-50); color: var(--purple-700); }
.badge-rose   { background-color: var(--rose-50);   color: var(--rose-700); }

.why-card-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--stone-900);
  line-height: 1.3;
}

.why-card-desc {
  font-size: 13px;
  color: var(--stone-500);
  line-height: 1.6;
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   10. Locations & Maps Section
   -------------------------------------------------------------------------- */
.locations-section {
  background-color: #fff;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}

.locations-left-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Switchable branch cards style */
.branch-card {
  border: 1px solid var(--stone-200);
  background-color: rgba(245, 244, 239, 0.3);
  padding: 24px;
  border-radius: var(--radius-2xl);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: left;
}

.branch-card:hover {
  border-color: rgba(140, 29, 46, 0.4);
}

.branch-card-active {
  border: 2px solid var(--maroon-800) !important;
  background-color: var(--stone-100) !important;
  box-shadow: var(--shadow-md);
}

.branch-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}

.branch-name {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--stone-900);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 99px;
  padding: 2px 8px;
  border: 1px solid var(--stone-200);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-active {
  background-color: var(--green-50);
  color: var(--green-700);
  border-color: rgba(16, 185, 129, 0.2);
}

.status-active .blink-circle {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--green-500);
  animation: pulse-active 1.2s infinite;
}

@keyframes pulse-active {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(1); opacity: 0.9; }
}

.status-closed {
  background-color: var(--stone-100);
  color: var(--stone-500);
}

.status-closed .grey-circle {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--stone-500);
}

/* Branch Address Items list */
.branch-info-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12.5px;
  color: var(--stone-600);
  font-weight: 300;
  line-height: 1.5;
}

.branch-info-lines p {
  display: flex;
  gap: 10px;
}

.branch-info-lines svg {
  width: 16px;
  height: 16px;
  color: var(--maroon-800);
  flex-shrink: 0;
}

.branch-action-buttons {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

.btn-small-maroon {
  background-color: var(--maroon-800);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.btn-small-maroon:hover {
  background-color: var(--maroon-900);
}

.btn-small-white {
  background-color: #fff;
  border: 1px solid var(--stone-200);
  color: var(--stone-600);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition-normal);
}

.btn-small-white:hover {
  background-color: var(--stone-50);
}

.btn-small-white svg {
  width: 12px;
  height: 12px;
}

/* Simulated maps cards (interactive vector maps) */
.map-visual-card {
  min-height: 380px;
  background-color: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.map-visual-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.map-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.map-label-blue {
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--blue-700);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.map-label-indigo {
  background-color: rgba(67, 56, 190, 0.1);
  color: var(--indigo-700);
  border: 1px solid rgba(67, 56, 190, 0.2);
}

.map-visual-card h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--stone-800);
  line-height: 1.4;
  margin-top: 8px;
}

/* Inner mock canvas map style */
.map-canvas {
  flex-grow: 1;
  position: relative;
  margin: 16px 0;
  border-radius: var(--radius-2xl);
  background-color: var(--stone-50);
  border: 1px solid var(--stone-200);
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

/* Dots and Roads elements */
.map-dots-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(var(--maroon-800) 1px, transparent 1px);
  background-size: 16px 16px;
}

.road-main-vert {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 33.333%;
  width: 64px;
  background-color: var(--stone-150);
  border-left: 1px solid var(--stone-200);
  border-right: 1px solid var(--stone-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.road-label-vert {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: var(--stone-500);
  letter-spacing: 0.1em;
  transform: rotate(-90deg);
  white-space: nowrap;
}

.road-label-horiz {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: var(--stone-500);
  letter-spacing: 0.1em;
}

.road-main-horiz {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25%;
  height: 48px;
  background-color: var(--stone-150);
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.road-main-horiz-salemba {
  position: absolute;
  left: 0;
  right: 0;
  top: 33.333%;
  height: 52px;
  background-color: var(--stone-150);
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.road-side-vert {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25%;
  width: 48px;
  background-color: var(--stone-150);
  border-left: 1px solid var(--stone-200);
  border-right: 1px solid var(--stone-200);
}

.mock-building {
  position: absolute;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  color: var(--stone-500);
  background-color: var(--stone-100);
  border: 1px solid var(--stone-200);
  box-shadow: var(--shadow-sm);
}

.mock-building-tj {
  top: 25%;
  left: 10%;
  background-color: var(--blue-600);
  color: #fff;
  border-color: var(--blue-700);
}

.mock-building-ui {
  bottom: 24px;
  left: 24px;
}

/* JHC PINPOINT ON MAP */
.pinpoint-card {
  position: absolute;
  background-color: var(--maroon-800);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--maroon-700);
  box-shadow: 0 10px 20px rgba(140, 29, 46, 0.25);
}

.pinpoint-card-matraman {
  top: 30%;
  right: 10%;
}

.pinpoint-card-salemba {
  top: 12%;
  left: 28%;
}

.pin-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  flex-shrink: 0;
}

.pin-pulse-active {
  animation: pulse-active 1.5s infinite;
}

.pin-label-line-top {
  display: block;
  font-weight: 700;
}

.pin-label-line-sub {
  display: block;
  font-size: 8px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  margin-top: 2px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.map-disclaimer {
  font-size: 9.5px;
  color: var(--stone-500);
  text-align: left;
}

/* --------------------------------------------------------------------------
   11. FAQ Accordion Section
   -------------------------------------------------------------------------- */
.faq-section {
  background-color: var(--stone-50);
  border-top: 1px solid var(--stone-200);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-btn {
  background: none;
  border: none;
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--stone-900);
  font-family: var(--font-display);
  cursor: pointer;
}

.faq-btn:hover {
  color: var(--maroon-800);
}

.faq-btn svg {
  width: 18px;
  height: 18px;
  color: var(--stone-500);
  transition: transform var(--transition-normal);
}

.faq-icon.is-open {
  transform: rotate(180deg);
}

.faq-answer {
  border-top: 1px solid var(--stone-150);
  padding: 20px 24px;
  background-color: rgba(245, 244, 239, 0.3);
  font-size: 13.5px;
  color: var(--stone-600);
  line-height: 1.6;
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   12. Footer Section
   -------------------------------------------------------------------------- */
footer {
  background-color: var(--stone-900);
  border-top: 1px solid #2d2925;
  color: var(--stone-500);
  padding: 42px 0 30px;
  font-size: 13px;
}

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

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

.footer-simple-grid {
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  text-align: center;
}

.footer-simple-brand {
  align-items: center;
}

.footer-simple-brand .footer-brand,
.footer-simple-brand .footer-logo-row {
  justify-content: center;
}

.footer-simple-brand .footer-desc {
  max-width: 620px;
}

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

.footer-brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: var(--maroon-800);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.footer-desc {
  color: var(--stone-500);
  line-height: 1.5;
  max-width: 340px;
  font-weight: 400;
  font-size: 12px;
  margin: 0;
}

.footer-copyright-mini {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--stone-600);
  margin-top: 2px;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.1em;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 300;
}

.footer-links-list a {
  transition: color var(--transition-normal);
}

.footer-links-list a:hover {
  color: #fff;
}

.footer-contacts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 300;
}

.footer-contacts-list li {
  display: flex;
  gap: 10px;
  line-height: 1.4;
}

.footer-contacts-list svg {
  width: 16px;
  height: 16px;
  color: var(--maroon-800);
  flex-shrink: 0;
}

.footer-contacts-list .accent-emergency {
  font-size: 11px;
  line-height: 1.4;
  color: var(--stone-600);
}

.footer-disclaimer-panel {
  border-top: 1px solid #2d2925;
  padding-top: 32px;
  font-size: 11px;
  color: var(--stone-600);
  text-align: center;
  font-weight: 300;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. Floating & Sticky Interactive Elements
   -------------------------------------------------------------------------- */
/* Back To Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--maroon-800);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(140, 29, 46, 0.4);
  cursor: pointer;
  z-index: 99;
  transition: all var(--transition-normal);
}

.back-to-top-btn:hover {
  background-color: var(--maroon-900);
}

.back-to-top-btn:active {
  transform: scale(0.95);
}

.back-to-top-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

/* Floating WhatsApp Link */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background-color: var(--whatsapp);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 99px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  z-index: 90;
  transition: all var(--transition-normal);
}

.floating-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.floating-whatsapp svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   14. Success Page Structure (sukses.html Layout)
   -------------------------------------------------------------------------- */
.success-page-body {
  background-color: var(--stone-50);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.success-header {
  background-color: #fff;
  border-bottom: 1px solid var(--stone-200);
  padding: 14px 0;
}

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

.btn-back-home-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--stone-600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-normal);
}

.btn-back-home-text:hover {
  color: var(--maroon-800);
}

.btn-back-home-text svg {
  width: 16px;
  height: 16px;
}

.success-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  background-color: rgba(245, 244, 239, 0.2);
  flex-grow: 1;
}

.success-card {
  max-width: 576px;
  width: 100%;
  background-color: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-3xl);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
}

/* Success circle badge */
.success-badge-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--green-50);
  border: 4px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}

.success-badge-pulse {
  position: absolute;
  inset: 0;
  background-color: var(--green-50);
  border-radius: 50%;
  transform: scale(0.9);
  opacity: 0.4;
  animation: pulse-active 1.5s infinite;
}

.success-badge-circle svg {
  width: 40px;
  height: 40px;
  color: var(--whatsapp-dark);
  position: relative;
  z-index: 1;
}

.success-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--stone-900);
  margin-bottom: 12px;
}

.success-title span {
  color: var(--whatsapp-dark);
}

.success-desc {
  font-size: 13px;
  color: var(--stone-600);
  font-weight: 300;
  line-height: 1.5;
  max-width: 420px;
  margin: 0 auto 32px;
}

/* Ticket Receipt layout */
.ticket-receipt-box {
  background-color: var(--stone-50);
  border: 1px solid var(--stone-150);
  border-radius: var(--radius-2xl);
  padding: 20px;
  margin-bottom: 32px;
  text-align: left;
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--stone-150);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.ticket-header-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--stone-500);
  letter-spacing: 0.1em;
}

.ticket-copy-btn {
  background: none;
  border: none;
  font-size: 11px;
  font-weight: 700;
  color: var(--stone-600);
  cursor: pointer;
}

.ticket-copy-btn:hover {
  color: var(--maroon-800);
}

.copied-flag-active {
  color: var(--green-700);
  font-weight: 700;
}

.ticket-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.ticket-item {
  text-align: left;
}

.ticket-kpi-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--stone-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.ticket-kpi-value {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--stone-900);
}

#label-full-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#label-date {
  color: var(--stone-500);
}

.ticket-booking-id {
  font-family: var(--font-mono);
  font-weight: 700;
  background-color: var(--stone-150);
  border: 1px solid var(--stone-200);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 12.5px;
  color: var(--stone-950);
}

.ticket-whatsApp-style {
  color: var(--green-700);
}

.ticket-pricing-style {
  font-weight: 700;
  color: var(--maroon-800);
}

/* Cta layout buttons */
.success-action-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-whatsapp-cta {
  background-color: var(--whatsapp);
  color: #fff;
  font-weight: 600;
  gap: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: var(--radius-xl);
  font-size: 14.5px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
}

.btn-whatsapp-cta:hover {
  background-color: var(--whatsapp-dark);
}

.btn-whatsapp-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-white-back {
  background-color: #fff;
  border: 1px solid var(--stone-200);
  color: var(--stone-700);
  font-weight: 600;
  padding: 15px 24px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition-normal);
}

.btn-white-back:hover {
  background-color: var(--stone-50);
  border-color: var(--stone-300);
}

.btn-white-back svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
  flex: 0 0 auto;
}

.success-bottom-protect {
  margin-top: 24px;
  font-size: 10px;
  color: var(--stone-500);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.success-bottom-protect svg {
  width: 14px;
  height: 14px;
  color: var(--green-500);
}

/* --------------------------------------------------------------------------
   15. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (min-width: 576px) {
  .hero-title {
    font-size: 36px;
  }
  .success-card {
    padding: 40px;
  }
  .ticket-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (min-width: 768px) {
  /* Layout shifts */
  .hero-grid {
    gap: 60px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facilities-heading-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  
  .slider-control-buttons {
    align-self: flex-end;
  }

  .facility-slide {
    width: calc(50% - 12px);
  }

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

  .footer-top-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .footer-column:nth-child(1) {
    grid-column: span 5;
  }

  .footer-column:nth-child(2) {
    grid-column: span 3;
  }

  .footer-column:nth-child(3) {
    grid-column: span 4;
  }

  .success-action-row {
    flex-direction: row;
  }
  
  .success-action-row a {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  /* Header Shifts */
  .header-container {
    height: 80px;
  }
  .desktop-nav {
    display: flex;
  }
  .header-cta-btn {
    display: inline-flex;
  }
  .burger-btn {
    display: none;
  }
  .mobile-nav-drawer {
    display: none !important;
  }

  /* Hero Shifts */
  .hero-section {
    padding: 88px 0;
  }
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
  }
  .hero-left {
    grid-column: span 7;
    text-align: left;
  }
  .hero-left .badge-instan {
    margin-left: 0;
  }
  .hero-paragraph {
    margin-left: 0;
    font-size: 15.5px;
  }
  .hero-checklist {
    margin-left: 0;
    max-width: 640px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
    gap: 10px;
  }
  .hero-right-container {
    grid-column: span 5;
  }

  /* Components Grid shifts */
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .facility-slide {
    width: calc(33.333% - 16px);
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .locations-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  
  .locations-left-panel {
    grid-column: span 5;
  }
  
  .map-visual-card {
    grid-column: span 7;
  }
}

/* JHC 2026 landing page revisions */
.brand-logo-img {
  display: block;
  width: clamp(180px, 18vw, 260px);
  max-height: 58px;
  object-fit: contain;
}

.success-brand-logo {
  width: clamp(170px, 20vw, 235px);
}

.legacy-location-section[hidden] {
  display: none !important;
}

#layanan,
#fasilitas,
#lokasi,
#faq {
  scroll-margin-top: 96px;
}

.hero-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 247, 244, 0.96) 58%, rgba(255, 241, 242, 0.68) 100%);
  color: var(--stone-950);
  overflow: hidden;
}

.hero-section > .max-w-7xl {
  position: relative;
  z-index: 10;
}

.hero-deco-ring1,
.hero-deco-ring2 {
  opacity: 0.13;
}

.hero-left {
  position: relative;
}

.hero-left::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -22px;
  width: 220px;
  height: 220px;
  border: 18px solid rgba(159, 27, 31, 0.09);
  border-radius: 999px;
  pointer-events: none;
}

.badge-instan {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(159, 27, 31, 0.12);
  box-shadow: 0 14px 38px rgba(41, 37, 36, 0.08);
  color: var(--stone-800);
  gap: 10px;
}

.hero-lamfi-mark {
  width: 76px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.badge-instan span:last-child {
  color: var(--maroon-700);
  font-weight: 800;
  text-transform: none;
}

.hero-title {
  color: var(--stone-950);
  line-height: 0.98;
}

.hero-title span {
  color: var(--maroon-700);
}

.hero-paragraph {
  color: var(--stone-600);
  max-width: 680px;
}

.checklist-item {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(159, 27, 31, 0.11);
  box-shadow: 0 10px 26px rgba(41, 37, 36, 0.06);
  color: var(--stone-800);
  backdrop-filter: blur(10px);
}

.checklist-item:hover {
  transform: translateY(-1px);
  border-color: rgba(159, 27, 31, 0.2);
  box-shadow: 0 14px 32px rgba(41, 37, 36, 0.1);
}

.checklist-icon {
  background: rgba(159, 27, 31, 0.11);
  color: var(--maroon-700);
}

.btn-submit-form svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
  flex: 0 0 auto;
}

.facility-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 0;
}

.facility-visual-panel {
  position: relative;
  min-height: 440px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--stone-900);
  box-shadow: 0 22px 60px rgba(41, 37, 36, 0.16);
}

.facility-visual-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 360ms ease, transform 520ms ease;
  pointer-events: none;
}

.facility-visual-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.facility-visual-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}

.facility-image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 25, 23, 0.74), rgba(28, 25, 23, 0.2) 62%, rgba(28, 25, 23, 0.48)),
    linear-gradient(0deg, rgba(28, 25, 23, 0.74), transparent 54%);
}

.facility-visual-copy {
  position: absolute;
  left: clamp(24px, 4vw, 52px);
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(30px, 5vw, 56px);
  color: white;
  max-width: 680px;
}

.facility-visual-copy span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--maroon-700);
  color: white;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.facility-visual-copy h4 {
  margin: 18px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.03;
}

.facility-visual-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.7;
}

.facility-showcase-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--stone-900);
  box-shadow: 0 12px 28px rgba(41, 37, 36, 0.2);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.facility-showcase-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.04);
}

.facility-showcase-arrow svg {
  width: 24px;
  height: 24px;
}

.facility-arrow-prev {
  left: 24px;
}

.facility-arrow-next {
  right: 24px;
}

.facility-progress-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  display: inline-flex;
  gap: 10px;
  transform: translateX(-50%);
}

.facility-dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 220ms ease, background 220ms ease;
}

.facility-dot.is-active {
  width: 56px;
  background: var(--maroon-700);
}

.facility-side-panel {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
}

.facility-detail-card {
  display: none;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--stone-200);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 44px);
  box-shadow: 0 18px 50px rgba(41, 37, 36, 0.1);
}

.facility-detail-card.is-active {
  display: block;
}

.facility-detail-card h4 {
  margin: 0 0 18px;
  color: var(--stone-900);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
}

.facility-detail-card p {
  margin: 0 0 26px;
  color: var(--stone-500);
  line-height: 1.7;
}

.facility-detail-card ul {
  display: grid;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.facility-detail-card li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--stone-800);
  font-weight: 700;
}

.facility-detail-card li span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dcfce7;
  color: #16a34a;
  font-weight: 900;
  flex: 0 0 auto;
}

.facility-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.facility-thumb {
  border: 1px solid var(--stone-200);
  background: white;
  border-radius: 12px;
  padding: 9px;
  cursor: pointer;
  text-align: left;
  color: var(--stone-700);
  box-shadow: 0 8px 20px rgba(41, 37, 36, 0.08);
}

.facility-thumb.is-active {
  border-color: var(--maroon-600);
  box-shadow: 0 10px 24px rgba(159, 27, 31, 0.16);
}

.facility-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

.facility-thumb span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
}

.why-section {
  background: white;
}

.why-heading {
  max-width: 860px;
  margin-bottom: 40px;
}

.why-heading h3 {
  margin: 0;
  color: var(--stone-950);
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
}

.why-heading-rule {
  display: block;
  width: 64px;
  height: 5px;
  border-radius: 999px;
  background: var(--maroon-700);
  margin: 16px 0;
}

.why-heading p {
  margin: 0;
  color: var(--stone-500);
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.58;
}

.why-grid {
  gap: 16px;
}

.why-card {
  min-height: 0;
  border: 1px solid var(--stone-200);
  border-radius: 14px;
  background: white;
  box-shadow: 0 10px 24px rgba(41, 37, 36, 0.06);
  padding: clamp(18px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 10px;
}

.why-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(159, 27, 31, 0.08);
  color: var(--maroon-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px;
}

.why-icon-badge svg {
  width: 24px;
  height: 24px;
}

.why-card-title {
  margin: 0 0 4px;
  color: var(--stone-900);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.18;
}

.why-card-desc {
  margin: 0;
  color: var(--stone-500);
  line-height: 1.55;
  font-size: 13px;
}

.why-verified {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 34px;
  color: var(--maroon-700);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.why-verified svg {
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   Partner Logo Marquee
   -------------------------------------------------------------------------- */
.partner-section {
  background: #fafaf9;
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
  padding: 30px 0;
  overflow: hidden;
}

.partner-heading {
  max-width: 640px;
  margin: 0 auto 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.partner-heading .section-title {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.12;
}

.partner-marquee {
  position: relative;
  overflow: hidden;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: partnerMarquee 42s linear infinite;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.partner-logo-card {
  width: 142px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stone-200);
  border-radius: 12px;
  background: white;
  padding: 12px 16px;
  box-shadow: 0 8px 22px rgba(41, 37, 36, 0.05);
}

.partner-logo-card img {
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.04);
  opacity: 0.66;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.partner-logo-card:hover img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: scale(1.03);
}

@keyframes partnerMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% + min(100vw, 1180px)));
  }
}

.jhc-location-section {
  background: linear-gradient(180deg, white 0%, #fafaf9 100%);
  padding: 54px 0;
}

.jhc-location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.jhc-location-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.jhc-location-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 26px;
  padding: 22px;
  border: 1px solid var(--stone-200);
  border-radius: 28px;
  background: white;
  box-shadow: 0 16px 42px rgba(41, 37, 36, 0.08);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.jhc-location-card:hover,
.jhc-location-card.branch-card-active {
  border-color: rgba(159, 27, 31, 0.5);
  box-shadow: 0 18px 48px rgba(159, 27, 31, 0.12);
  transform: translateY(-2px);
}

.jhc-location-thumb {
  width: 100%;
  height: 162px;
  border-radius: 18px;
  object-fit: cover;
  background: var(--stone-100);
}

.placeholder-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-400);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
}

.jhc-location-content {
  min-width: 0;
}

.jhc-location-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.jhc-location-head h4 {
  margin: 0;
  color: var(--stone-950);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.16;
}

.location-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  background: var(--maroon-700);
}

.location-status.coming-soon {
  background: var(--stone-600);
}

.jhc-location-content p {
  margin: 12px 0 12px;
  color: var(--stone-500);
  font-size: 16px;
  line-height: 1.55;
}

.jhc-location-services {
  border-top: 1px solid var(--stone-200);
  padding-top: 14px;
  margin-top: 12px;
  color: var(--stone-600);
  font-size: 14px;
  line-height: 1.55;
}

.jhc-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.location-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 12px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.location-btn svg {
  width: 19px;
  height: 19px;
}

.location-btn.primary {
  background: var(--maroon-700);
  color: white;
}

.location-btn.secondary {
  background: white;
  color: var(--stone-700);
  border-color: var(--stone-200);
  box-shadow: 0 8px 20px rgba(41, 37, 36, 0.08);
}

.location-btn.muted,
.location-btn.is-disabled {
  background: var(--stone-100);
  color: var(--stone-400);
  border-color: var(--stone-200);
  pointer-events: none;
}

.jhc-map-simulator {
  position: sticky;
  top: 98px;
  overflow: hidden;
  border-radius: 28px;
  background: white;
  border: 1px solid var(--stone-200);
  box-shadow: 0 20px 58px rgba(41, 37, 36, 0.13);
}

.map-simulator-canvas {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(120, 113, 108, 0.16) 1.5px, transparent 1.5px) 0 0 / 26px 26px,
    linear-gradient(135deg, rgba(244, 244, 245, 0.94), rgba(255, 255, 255, 0.98));
}

.map-simulator-label {
  position: absolute;
  z-index: 3;
  top: 30px;
  left: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--stone-200);
  box-shadow: 0 8px 22px rgba(41, 37, 36, 0.08);
  color: var(--stone-500);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.map-simulator-label svg {
  width: 20px;
  height: 20px;
  color: var(--maroon-700);
}

.map-road {
  position: absolute;
  border-radius: 999px;
  opacity: 0.48;
}

.road-one {
  width: 18px;
  height: 760px;
  left: 54%;
  top: -90px;
  transform: rotate(-10deg);
  background: #bfdbfe;
}

.road-two {
  width: 10px;
  height: 720px;
  left: 35%;
  top: -80px;
  transform: rotate(18deg);
  background: #fde68a;
}

.road-three {
  width: 5px;
  height: 820px;
  right: 14%;
  top: -140px;
  transform: rotate(78deg);
  background: repeating-linear-gradient(to bottom, #fecaca 0 18px, transparent 18px 32px);
}

.map-pin {
  position: absolute;
  z-index: 4;
  width: 58px;
  height: 58px;
  border: 8px solid white;
  border-radius: 999px 999px 999px 0;
  background: var(--stone-500);
  box-shadow: 0 12px 24px rgba(41, 37, 36, 0.22);
  transform: rotate(-45deg);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.map-pin::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.map-pin-active {
  background: var(--maroon-700);
  transform: rotate(-45deg) scale(1.16);
}

.map-pin-muted {
  opacity: 0.72;
}

.map-pin[data-branch="matraman"] {
  left: 45%;
  top: 34%;
}

.map-pin-jakarta {
  left: 57%;
  top: 43%;
}

.map-pin-tasik {
  left: 73%;
  top: 57%;
}

.map-pin-medan {
  left: 30%;
  top: 59%;
}

.map-pin-bogor {
  left: 62%;
  top: 66%;
}

.map-place-label,
.map-coordinate {
  position: absolute;
  z-index: 5;
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

.map-place-main {
  left: 42%;
  top: 47%;
  color: white;
  background: #1c1917;
}

.map-place-sub {
  left: 52%;
  top: 58%;
  color: white;
  background: rgba(120, 113, 108, 0.5);
}

.map-coordinate {
  right: 28px;
  bottom: 28px;
  color: var(--stone-500);
  text-align: right;
}

.map-detail-panel {
  background: var(--maroon-700);
  color: white;
  padding: clamp(26px, 3vw, 42px);
}

.map-detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.map-detail-kicker svg {
  width: 22px;
  height: 22px;
}

.map-detail-panel h4 {
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.15;
}

.map-detail-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.map-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 26px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.map-detail-footer a {
  color: white;
  font-weight: 800;
}

.map-detail-footer a.is-disabled {
  color: rgba(255, 255, 255, 0.56);
  pointer-events: none;
}

.footer-main-logo {
  width: min(100%, 220px);
  height: auto;
  display: inline-block;
  vertical-align: middle;
  border-radius: 10px;
  background: white;
  padding: 8px;
}

.footer-main-logo + .footer-main-logo {
  margin-left: 8px;
}

.footer-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 6px 0 10px;
}

.footer-logo-row img {
  height: 38px;
  max-width: 170px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  padding: 6px 8px;
}

.footer-logo-row-centered {
  justify-content: center;
  margin-top: 0;
}

.success-footer-brand {
  text-align: center;
  font-size: 11px;
  color: var(--stone-600);
}

.success-footer {
  background-color: var(--stone-950);
  padding: 24px 0;
  border-top: 1px solid #1c1917;
}

@media (max-width: 1180px) {
  .facility-showcase,
  .jhc-location-layout {
    grid-template-columns: 1fr;
  }

  .jhc-map-simulator {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .brand-logo-img {
    width: 172px;
  }

  .partner-section {
    padding: 42px 0;
  }

  .partner-heading {
    margin-bottom: 26px;
  }

  .partner-logo-card {
    width: 142px;
    height: 74px;
    border-radius: 12px;
    padding: 14px 18px;
  }

  .partner-logo-card img {
    max-height: 38px;
  }

  .hero-left::after {
    display: none;
  }

  .facility-visual-panel {
    min-height: 420px;
    border-radius: 18px;
  }

  .facility-showcase-arrow {
    width: 48px;
    height: 48px;
  }

  .facility-arrow-prev {
    left: 14px;
  }

  .facility-arrow-next {
    right: 14px;
  }

  .facility-thumb-row {
    display: none;
  }

  .why-heading {
    margin-bottom: 36px;
  }

  .why-card {
    min-height: auto;
  }

  .jhc-location-card {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 22px;
  }

  .jhc-location-thumb {
    height: 190px;
  }

  .jhc-location-head {
    flex-direction: column;
  }

  .jhc-location-actions {
    flex-direction: column;
  }

  .location-btn {
    width: 100%;
  }

  .jhc-map-simulator {
    display: none;
  }

  .map-simulator-canvas {
    min-height: 430px;
  }

  .map-simulator-label {
    left: 18px;
    right: 18px;
    justify-content: center;
  }

  .map-detail-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-logo-row img {
    height: 40px;
    max-width: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track {
    animation: none;
  }

  .partner-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Desktop polish for revised JHC sections */
.paripurna-badge {
  padding: 9px 16px;
}

.hero-paripurna-mark {
  width: clamp(100px, 13vw, 115px);
  height: auto;
  max-height: 62px;
}

@media (min-width: 1024px) {
  .has-fixed-navbar {
    padding-top: 80px;
  }
}

@media (min-width: 1024px) {
  .facilities-heading-row {
    margin-bottom: 20px;
  }

  .facilities-section .section-title {
    font-size: clamp(34px, 3vw, 42px);
  }

  .facility-section-desc {
    max-width: 560px;
    font-size: 15px;
    line-height: 1.62;
  }

  .facility-showcase {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 20px;
    margin-top: 0;
  }

  .facility-visual-panel {
    min-height: 330px;
    border-radius: 16px;
  }

  .facility-visual-copy {
    left: 34px;
    right: 34px;
    bottom: 34px;
    max-width: 520px;
  }

  .facility-visual-copy span {
    padding: 6px 13px;
    font-size: 10.5px;
  }

  .facility-visual-copy h4 {
    margin: 11px 0 7px;
    font-size: 30px;
    line-height: 1.08;
  }

  .facility-visual-copy p {
    font-size: 14px;
    line-height: 1.55;
  }

  .facility-showcase-arrow {
    width: 42px;
    height: 42px;
  }

  .facility-showcase-arrow svg {
    width: 20px;
    height: 20px;
  }

  .facility-detail-card {
    border-radius: 16px;
    padding: 22px;
  }

  .facility-detail-card h4 {
    margin-bottom: 10px;
    font-size: 21px;
  }

  .facility-detail-card p {
    margin-bottom: 15px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .facility-detail-card ul {
    gap: 10px;
  }

  .facility-detail-card li {
    gap: 9px;
    font-size: 13px;
  }

  .facility-detail-card li span {
    width: 24px;
    height: 24px;
  }

  .facility-thumb {
    padding: 6px;
    border-radius: 10px;
  }

  .facility-thumb img {
    border-radius: 7px;
    margin-bottom: 6px;
  }

  .facility-thumb span {
    font-size: 11px;
  }

  .why-heading {
    max-width: 840px;
    margin-bottom: 28px;
  }

  .why-heading h3 {
    font-size: 40px;
    line-height: 1.04;
  }

  .why-heading-rule {
    width: 60px;
    height: 5px;
    margin: 14px 0 14px;
  }

  .why-heading p {
    font-size: 15px;
    line-height: 1.56;
  }

  .why-grid {
    gap: 14px;
  }

  .why-card {
    min-height: 0;
    border-radius: 14px;
    padding: 20px;
  }

  .why-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .why-icon-badge svg {
    width: 22px;
    height: 22px;
  }

  .why-card-title {
    margin-bottom: 4px;
    font-size: 19px;
    line-height: 1.16;
  }

  .why-card-desc {
    font-size: 13px;
    line-height: 1.55;
  }

  .why-verified {
    padding-top: 10px;
    font-size: 10.5px;
  }

  .jhc-location-section {
    padding: 48px 0;
  }

  .jhc-location-section .section-tagline-wrapper {
    gap: 9px;
    margin-bottom: 26px;
  }

  .jhc-location-section .section-title {
    font-size: clamp(32px, 3vw, 42px);
    line-height: 1.12;
  }

  .jhc-location-section .section-desc {
    max-width: 620px;
    font-size: 14px;
  }

  .jhc-location-layout {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 16px;
  }

  .jhc-location-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
    align-content: start;
    gap: 14px;
    scrollbar-color: rgba(159, 27, 31, 0.55) rgba(226, 223, 213, 0.7);
    scrollbar-width: thin;
  }

  .jhc-location-list::-webkit-scrollbar {
    width: 8px;
  }

  .jhc-location-list::-webkit-scrollbar-track {
    background: rgba(226, 223, 213, 0.65);
    border-radius: 999px;
  }

  .jhc-location-list::-webkit-scrollbar-thumb {
    background: rgba(159, 27, 31, 0.55);
    border-radius: 999px;
  }

  .jhc-location-card {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 14px;
    padding: 13px;
    border-radius: 18px;
  }

  .jhc-location-thumb {
    height: 104px;
    border-radius: 12px;
  }

  .jhc-location-head h4 {
    font-size: 18px;
    line-height: 1.14;
  }

  .location-status {
    padding: 4px 9px;
    font-size: 9px;
  }

  .jhc-location-content p {
    margin: 7px 0;
    font-size: 12.75px;
    line-height: 1.42;
  }

  .jhc-location-services {
    padding-top: 8px;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.42;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .jhc-location-actions {
    gap: 8px;
    margin-top: 10px;
  }

  .location-btn {
    min-height: 36px;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 12.5px;
  }

  .location-btn svg {
    width: 15px;
    height: 15px;
  }

  .jhc-map-simulator {
    height: 560px;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
  }

  .map-simulator-canvas {
    min-height: 0;
    flex: 1 1 auto;
  }

  .map-detail-panel {
    flex: 0 0 auto;
    padding: 22px 26px;
  }

  .map-detail-kicker {
    font-size: 10px;
  }

  .map-detail-panel h4 {
    margin: 11px 0 8px;
    font-size: 22px;
  }

  .map-detail-panel p {
    font-size: 13px;
    line-height: 1.5;
  }

  .map-detail-footer {
    margin-top: 14px;
    padding-top: 12px;
    font-size: 12px;
  }
}

/* Final compact polish for Why JHC + Footer */
.services-section {
  background: #fff;
}

.why-section {
  background: linear-gradient(180deg, #fcf8f3 0%, #f4ede3 100%);
  border-top: 1px solid rgba(214, 211, 209, 0.72);
  border-bottom: 1px solid rgba(214, 211, 209, 0.72);
}

.partner-section {
  background: #fff;
  border-top: 1px solid rgba(231, 229, 228, 0.78);
  border-bottom: 1px solid rgba(231, 229, 228, 0.78);
}

.facilities-section {
  background: linear-gradient(180deg, #f8f3ec 0%, #efe7dc 100%);
  border-top: 1px solid rgba(214, 211, 209, 0.72);
  border-bottom: 1px solid rgba(214, 211, 209, 0.72);
}

.jhc-location-section {
  background: #fff;
  border-top: 1px solid rgba(231, 229, 228, 0.82);
}

.why-verified {
  gap: 7px;
  padding-top: 12px;
  font-size: 11px;
}

footer {
  padding: 28px 0 20px;
  font-size: 12px;
}

.footer-top-grid {
  gap: 20px;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .why-heading {
    margin-bottom: 28px;
  }

  .why-heading h3 {
    font-size: 40px;
    line-height: 1.04;
  }

  .why-heading-rule {
    width: 60px;
    height: 5px;
    margin: 14px 0;
  }

  .why-heading p {
    font-size: 15px;
    line-height: 1.56;
  }

  .why-grid {
    gap: 14px;
  }

  .why-card {
    min-height: 0;
    padding: 20px;
  }

  .why-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .why-icon-badge svg {
    width: 22px;
    height: 22px;
  }

  .why-card-title {
    margin-bottom: 4px;
    font-size: 19px;
  }

  .why-card-desc {
    font-size: 13px;
    line-height: 1.55;
  }

  .why-verified {
    padding-top: 10px;
    font-size: 10.5px;
  }

  .footer-logo-row img {
    height: 45px;
    max-width: 190px;
  }
}
