/* =========================================
   1. VARIABLES & RESET
========================================= */
:root {
  --maroon: #9D1F20;
  --maroon-deep: #6f1516;
  --black: #070707;
  --sand: #D3CCC6;
  --white: #F3F4FF;
  --white-60: rgba(243,244,255,0.6);
  --white-30: rgba(243,244,255,0.3);
  --white-12: rgba(243,244,255,0.12);
  --maroon-30: rgba(157,31,32,0.3);
  --ease: cubic-bezier(.16, .8, .28, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--maroon); color: var(--white); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

/* Layout Wrappers */
.wrap { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 48px; } 

/* Global Grain Effect */
.grain {
  pointer-events: none; position: fixed; inset: 0; z-index: 999;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll Animations */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================
   2. GLOBAL BUTTONS
========================================= */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--maroon); color: var(--white); padding: 16px 30px; border-radius: 999px;
  font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid var(--maroon); transition: transform .3s var(--ease), background .3s;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--maroon-deep); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 30px; border-radius: 999px;
  font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid var(--white-30); color: var(--white); transition: .3s;
}
.btn-ghost:hover { border-color: var(--white); background: var(--white-12); }

.btn-small {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; color: var(--white);
  border-bottom: 2px solid var(--maroon); padding-bottom: 3px;
}

/* =========================================
   3. HEADER & NAVIGATION
========================================= */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500; padding: 22px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
header.scrolled {
  padding: 14px 0; background: rgba(7,7,7,0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--white-12);
}
nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; }
.logo-img { display: block; height: 38px; width: auto; transition: height .4s var(--ease); }
header.scrolled .logo-img { height: 32px; }

.nav-links { display: flex; gap: 40px; align-items: center; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--white-60); position: relative; padding-bottom: 4px; transition: color .3s;
}
.nav-links a.current { color: var(--white); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--maroon); transition: width .3s var(--ease);
}
.nav-links a.current::after, .nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }

.nav-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--maroon); color: var(--white); border: 1px solid var(--maroon);
  padding: 11px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  transition: background .3s, transform .3s, color .3s;
}
.nav-cta:hover { background: transparent; color: var(--white); border-color: var(--white-30); transform: translateY(-1px); }

.burger { display: none; width: 26px; height: 20px; position: relative; }
.burger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--white); transition: .3s; }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }
.burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* =========================================
   4. HERO SECTIONS (HOME & INNER)
========================================= */
/* Hero Beranda */
.hero { position: relative; min-height: 130svh; display: flex; flex-direction: column; background: var(--black); overflow: hidden; }
.hero-media, .page-hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .page-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-media-overlay, .page-hero-media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,7,.45) 0%, rgba(7,7,7,.05) 26%, rgba(7,7,7,.08) 55%, rgba(7,7,7,.95) 96%),
              radial-gradient(ellipse 90% 60% at 78% 8%, rgba(157,31,32,0.2), transparent 60%);
}
.hero-content { position: relative; z-index: 2; flex: 1; display: flex; align-items: center; padding-top: 150px; padding-bottom: 60px; }
.hero-brandtext h1 { font-size: clamp(52px, 11vw, 152px); font-weight: 900; line-height: .88; letter-spacing: -.03em; text-transform: uppercase; text-shadow: 0 12px 40px rgba(0,0,0,.55); }
.hero-brandtext h1 .accent { color: var(--maroon); }

.hero-strip { position: relative; z-index: 2; background: var(--black); border-top: 1px solid var(--white-12); padding: 44px 0; }
.hero-strip-inner { display: flex; justify-content: space-between; align-items: center; gap: 48px; flex-wrap: wrap; }
.hero-strip-text { max-width: 560px; font-size: 15px; line-height: 1.75; color: var(--white-60); font-weight: 500; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 10px 0; margin-top: 20px; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--white-60); font-weight: 600; }
.feature-tags span { display: flex; align-items: center; }
.feature-tags span:not(:last-child)::after { content: '•'; color: var(--maroon); margin: 0 16px; font-weight: 900; }

/* Hero Inner Pages */
.page-hero { position: relative; min-height: 88svh; display: flex; flex-direction: column; background: var(--black); overflow: hidden; }
.page-hero-content { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: center; padding-top: 150px; padding-bottom: 60px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--white-30); margin-bottom: 26px; }
.breadcrumb a { color: var(--white-60); transition: color .25s; }
.breadcrumb a:hover { color: var(--white); }
.page-hero h1 { font-size: clamp(38px, 6.5vw, 84px); font-weight: 900; line-height: 1.02; letter-spacing: -.03em; text-transform: uppercase; max-width: 18ch; text-shadow: 0 12px 40px rgba(0,0,0,.5); }
.page-hero h1 em { font-style: normal; color: var(--maroon); }
.page-hero-sub { max-width: 480px; font-size: 16px; line-height: 1.7; color: var(--white-95); margin-top: 26px; font-weight: 600; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 34px; flex-shrink: 0; }

/* =========================================
   5. SHARED MODULES (MARQUEE, SECTIONS, CTA)
========================================= */
.marquee-strip { border-bottom: 1px solid var(--white-12); padding: 26px 0; overflow: hidden; background: var(--black); position: relative; z-index: 1; }
.marquee-track { display: flex; width: max-content; animation: scroll 32s linear infinite; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
.marquee-track span { font-size: clamp(20px,3vw,34px); font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; color: var(--white-30); padding: 0 26px; white-space: nowrap; }
.marquee-track span.on { color: var(--white); }
.marquee-track span::after { content: '✽'; color: var(--maroon); margin-left: 26px; font-size: 14px; }
@keyframes scroll { from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

section { position: relative; }
.section-pad { padding: 130px 0; }
.section-pad.tight { padding-top: 90px; padding-bottom: 90px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 64px; flex-wrap: wrap; }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--maroon); margin-bottom: 16px; }
.section-title { font-size: clamp(32px,4.4vw,54px); font-weight: 800; letter-spacing: -.02em; line-height: 1.05; text-transform: uppercase; max-width: 14ch; }
.section-desc { max-width: 360px; color: var(--white-60); font-size: 15px; line-height: 1.7; }

.editorial { padding: 90px 0; overflow: hidden; border-top: 1px solid var(--white-12); border-bottom: 1px solid var(--white-12); }
.editorial-inner { position: relative; text-align: center; }
.editorial-big { font-size: clamp(46px,11vw,170px); font-weight: 900; text-transform: uppercase; letter-spacing: -.04em; line-height: .85; color: transparent; -webkit-text-stroke: 1.5px var(--white-30); }
.editorial-script { position: relative; margin-top: -.42em; font-size: clamp(18px,3.6vw,42px); font-weight: 500; font-style: italic; color: var(--maroon); letter-spacing: .01em; }

.cta-band { background: var(--maroon); color: var(--white); padding: 110px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 30%, rgba(7,7,7,0.35), transparent 55%); }
.cta-inner { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-inner h2 { font-size: clamp(30px,4.6vw,64px); font-weight: 900; letter-spacing: -.02em; text-transform: uppercase; max-width: 16ch; line-height: 1.02; }
.cta-inner .btn-ghost { border-color: rgba(243,244,255,.5); }
.cta-inner .btn-ghost:hover { background: rgba(7,7,7,.18); border-color: var(--white); }

/* =========================================
   6. COMPONENT & PAGE SPECIFIC MODULES
========================================= */
.price-grid, .service-grid, .edu-grid { display: grid; gap: 18px; }
.price-grid, .service-grid { grid-template-columns: repeat(4, 1fr); }
.edu-grid { grid-template-columns: repeat(3, 1fr); }

.price-card, .service-card, .edu-card {
  background: linear-gradient(160deg, #141414, #0a0a0a); border: 1px solid var(--white-12); border-radius: 20px;
  transition: transform .4s var(--ease), border-color .4s, background .4s;
  display: flex; flex-direction: column;
}
.price-card:hover, .service-card:hover, .edu-card:hover { transform: translateY(-8px); border-color: var(--maroon); background: linear-gradient(160deg, #1b1010, #0a0a0a); }
.price-card, .service-card { padding: 34px 26px; min-height: 280px; justify-content: space-between; }
.edu-card { padding: 34px 28px; }

.price-icon, .social-icon { width: 38px; height: 38px; }
.service-icon { width: 44px; height: 44px; }
.edu-icon { width: 40px; height: 40px; margin-bottom: 22px; }
.price-icon svg, .social-icon svg, .service-icon svg, .edu-icon svg { width: 100%; height: 100%; }

.price-name, .social-name { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; margin-top: 20px; }
.service-name { font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; margin-top: 20px; }
.edu-name { font-size: 19px; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 10px; }
.service-num { font-size: 12px; color: var(--white-30); font-weight: 700; letter-spacing: .1em; }

.price-list, .service-list { margin-top: 8px; font-size: 13px; color: var(--white-60); line-height: 1.8; }
.edu-desc { font-size: 14px; color: var(--white-60); line-height: 1.7; }
.price-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--white-12); }
.price-tag-label { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--white-30); }
.price-tag { font-size: 18px; font-weight: 900; }
.price-note { margin-top: 36px; font-size: 13px; color: var(--white-30); text-align: center; }

.price-card.alt { background: var(--maroon); border-color: var(--maroon); }
.price-card.alt:hover { transform: translateY(-8px); background: var(--maroon-deep); }
.price-card.alt .price-list, .price-card.alt .price-tag-label { color: rgba(243,244,255,.8); }
.price-card.alt .price-foot { border-top-color: rgba(243,244,255,.25); }

/* Materials */
.materials { background: var(--sand); color: var(--black); }
.mat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.mat-card { background: var(--black); color: var(--white); border-radius: 20px; padding: 30px 26px; }
.mat-icon { width: 34px; height: 34px; margin-bottom: 18px; }
.mat-icon svg { width: 100%; height: 100%; }
.mat-name { font-size: 18px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.mat-desc { font-size: 13.5px; color: var(--white-60); line-height: 1.7; }

/* Split Sections */
.clinical, .misi { background: var(--black); border-top: 1px solid var(--white-12); }
.profil, .locate, .about { background: var(--sand); color: var(--black); }

.clinical-grid, .locate-grid, .about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.profil-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.misi-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.locate-grid { align-items: start; }

.clinical-copy p { font-size: 16px; line-height: 1.75; color: var(--white-60); max-width: 46ch; margin-bottom: 26px; }
.profil-copy h2, .locate-copy h2 { font-size: clamp(30px,4vw,50px); font-weight: 800; letter-spacing: -.02em; text-transform: uppercase; margin-bottom: 24px; line-height: 1.05; }
.profil-copy p, .about-copy p { font-size: 17px; line-height: 1.75; color: rgba(7,7,7,.72); font-weight: 500; margin-bottom: 20px; max-width: 48ch; }
.profil-copy strong, .about-copy strong { color: var(--maroon); font-weight: 800; }
.misi-copy p { font-size: 16px; line-height: 1.75; color: var(--white-60); max-width: 46ch; margin-bottom: 30px; }

.clinical-list, .misi-list { display: flex; flex-direction: column; gap: 16px; }
.clinical-item { display: flex; gap: 14px; align-items: center; font-size: 15px; font-weight: 600; }
.clinical-item svg, .misi-item .ico { width: 20px; height: 20px; flex: none; }
.misi-item { display: flex; gap: 16px; align-items: flex-start; }
.misi-item .ico { width: 26px; height: 26px; margin-top: 2px; }
.misi-item .ico svg { width: 100%; height: 100%; }
.misi-item p { margin: 0; font-size: 15px; color: var(--white); font-weight: 600; line-height: 1.5; max-width: 40ch; }

.clinical-art, .panel-art { aspect-ratio: 1/1; border-radius: 20px; background: linear-gradient(155deg,#141414,#050505); display: flex; align-items: center; justify-content: center; border: 1px solid var(--white-12); }
.panel-art { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.clinical-art svg { width: 44%; height: 44%; }
.panel-art svg { width: 58%; height: 58%; }
.panel-art .art-cap { position: absolute; left: 24px; bottom: 22px; right: 24px; display: flex; justify-content: space-between; align-items: flex-end; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--white-30); font-weight: 700; }
.panel-art .art-cap b { color: var(--white-60); font-weight: 700; }

/* Lokasi & Map */
.addr-block { margin-bottom: 30px; }
.addr-label { font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(7,7,7,.5); margin-bottom: 10px; }
.addr-text { font-size: 19px; font-weight: 600; line-height: 1.5; max-width: 34ch; }
.copy-row { display: flex; align-items: center; gap: 14px; margin-top: 16px; }
.copy-btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; border: 1px solid var(--black); color: var(--black); transition: .3s; }
.copy-btn:hover { border-color: var(--maroon); color: var(--maroon); background: rgba(157,31,32,0.05); }
.copy-note { font-size: 13px; font-weight: 600; color: var(--maroon); opacity: 0; transition: opacity .3s; }
.copy-note.show { opacity: 1; }

.hours-card { background: var(--black); color: var(--white); border-radius: 20px; padding: 36px 32px; }
.hours-card h3 { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--white-30); margin-bottom: 24px; }
.hours-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--white-12); font-size: 15px; font-weight: 600; }
.hours-row:last-of-type { border-bottom: none; }
.hours-row span:last-child { color: var(--white-60); font-weight: 500; }
.hours-row.today span:first-child { color: var(--maroon); }
.hours-row.today span:first-child::before { content: '● '; }
.hours-note { margin-top: 22px; font-size: 12.5px; color: var(--white-30); line-height: 1.6; }

.map-section { background: var(--black); }
.map-frame { position: relative; border: 1px solid var(--white-12); border-radius: 24px; overflow: hidden; box-shadow: 0 0 0 1px var(--maroon-30); }
.map-frame iframe { width: 100%; height: 520px; border: 0; display: block; filter: invert(92%) hue-rotate(180deg) contrast(0.88) brightness(0.95) saturate(0.6); }
.map-caption { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 22px; }
.map-caption p { font-size: 13.5px; color: var(--white-60); }
.map-caption a { font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; border-bottom: 2px solid var(--maroon); padding-bottom: 3px; transition: color .3s; }
.map-caption a:hover { color: var(--white); }

/* Social Media */
.social { background: var(--black); border-top: 1px solid var(--white-12); }
.social-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.social-card { position: relative; background: linear-gradient(160deg, #141414, #0a0a0a); border: 1px solid var(--white-12); border-radius: 20px; padding: 32px 26px; min-height: 230px; display: flex; flex-direction: column; justify-content: space-between; transition: transform .4s var(--ease), border-color .4s, background .4s; }
.social-card:hover { transform: translateY(-8px); border-color: var(--maroon); background: linear-gradient(160deg,#1b1010,#0a0a0a); }
.social-arrow { position: absolute; top: 28px; right: 26px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--white-30); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: .3s; }
.social-card:hover .social-arrow { border-color: var(--maroon); background: var(--maroon); }
.social-handle { margin-top: 8px; font-size: 13.5px; color: var(--white-60); }

/* Point Map */
.pointmap { background: var(--black); }
.pm-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: center; }
.pm-diagram { position: relative; }
.pm-diagram svg { width: 100%; height: auto; overflow: visible; }
.pm-dot { fill: var(--maroon); transition: r .25s var(--ease); cursor: pointer; }
.pm-dot-ring { fill: none; stroke: var(--maroon); stroke-width: 1.4; opacity: 0; transition: opacity .25s; }
.pm-line { stroke: var(--white-30); stroke-width: 1; transition: stroke .25s; }
.pm-label { fill: var(--white-60); font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .02em; transition: fill .25s; }
.pm-point.active .pm-dot { r: 8; }
.pm-point.active .pm-dot-ring { opacity: 1; }
.pm-point.active .pm-line { stroke: var(--maroon); }
.pm-point.active .pm-label { fill: var(--white); }
.pm-point:focus { outline: none; }
.pm-point:focus .pm-label { fill: var(--white); }

.pm-panel { border-left: 1px solid var(--white-12); padding-left: 56px; }
.pm-panel-index { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--maroon); font-weight: 700; margin-bottom: 18px; }
.pm-panel-title { font-size: clamp(28px,3.4vw,44px); font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; margin-bottom: 18px; min-height: 1.1em; }
.pm-panel-desc { font-size: 16px; line-height: 1.75; color: var(--white-60); max-width: 44ch; min-height: 60px; }
.pm-panel-hint { margin-top: 30px; font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--white-30); font-weight: 600; }
.pm-panel-link { display: inline-flex; margin-top: 28px; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; font-size: 13px; color: var(--white); border-bottom: 2px solid var(--maroon); padding-bottom: 4px; transition: color .3s; }
.pm-panel-link:hover { color: var(--maroon); }

/* Statistics */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: var(--black); color: var(--white); padding: 32px 26px; border-radius: 18px; transition: transform .3s var(--ease); }
.stat-card:hover { transform: translateY(-4px); }
.stat-card.alt { background: var(--maroon); }
.stat-num { font-size: clamp(30px,3.4vw,44px); font-weight: 900; letter-spacing: -.02em; }
.stat-label { margin-top: 8px; font-size: 12.5px; color: var(--white-60); line-height: 1.5; font-weight: 600; }
.stat-card.alt .stat-label { color: rgba(243,244,255,.78); }
.services-foot { margin-top: 44px; display: flex; justify-content: center; }

/* FAQ Section */
.faq-section { background: var(--black); border-top: 1px solid var(--white-12); }
.faq-group { margin-bottom: 64px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title { font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--maroon); margin-bottom: 22px; display: flex; align-items: center; gap: 14px; }
.faq-group-title::after { content: ''; flex: 1; height: 1px; background: var(--white-12); }
.faq-item { border: 1px solid var(--white-12); border-radius: 16px; margin-bottom: 12px; overflow: hidden; background: linear-gradient(160deg, #121212, #0a0a0a); transition: border-color .3s; }
.faq-item.open { border-color: var(--maroon); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; text-align: left; color: var(--white); cursor: pointer; padding: 24px 26px; font-size: 16px; font-weight: 700; letter-spacing: -.005em; }
.faq-q-icon { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--white-30); display: flex; align-items: center; justify-content: center; position: relative; transition: .3s; }
.faq-item.open .faq-q-icon { border-color: var(--maroon); background: var(--maroon); }
.faq-q-icon::before, .faq-q-icon::after { content: ''; position: absolute; background: var(--white); transition: .3s; }
.faq-q-icon::before { width: 10px; height: 1.5px; }
.faq-q-icon::after { width: 1.5px; height: 10px; }
.faq-item.open .faq-q-icon::after { transform: scaleY(0); }
.faq-a-wrap { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a { padding: 0 26px 24px; font-size: 14.5px; line-height: 1.75; color: var(--white-60); max-width: 64ch; }
.faq-cta { margin-top: 70px; padding: 40px; border-radius: 20px; background: var(--sand); color: var(--black); display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.faq-cta h3 { font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; max-width: 20ch; }
.faq-cta p { font-size: 14px; color: rgba(7,7,7,.65); margin-top: 6px; max-width: 36ch; font-weight: 500; }
.faq-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--black); color: var(--white); padding: 15px 28px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; transition: transform .3s var(--ease), background .3s; }
.faq-cta-btn:hover { transform: translateY(-2px); background: var(--maroon); }

/* =========================================
   7. FOOTER
========================================= */
footer { background: var(--black); padding: 90px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 80px; border-bottom: 1px solid var(--white-12); }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-img { height: 48px; }
.footer-brand p { color: var(--white-60); font-size: 14px; line-height: 1.7; max-width: 32ch; }
.footer-col h4 { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--white-30); font-weight: 700; margin-bottom: 20px; }
.footer-col a, .footer-col address { display: block; font-size: 14.5px; color: var(--white-60); margin-bottom: 12px; font-style: normal; transition: color .25s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 12.5px; color: var(--white-30); }
.footer-wordmark { font-size: clamp(44px,10vw,150px); font-weight: 900; letter-spacing: -.03em; text-transform: uppercase; color: var(--white); opacity: .06; text-align: center; margin: 60px 0 0; line-height: .95; user-select: none; }

/* =========================================
   HOVER REVEAL (HALAMAN LAYANAN)
========================================= */
.price-card {
  position: relative;
  overflow: hidden; /* Memastikan foto yang membesar tidak keluar dari lengkungan kartu */
}

/* Memastikan teks dan tombol tetap berada di atas foto */
.price-card > div {
  position: relative;
  z-index: 2; 
}

/* Transisi halus untuk Ikon (menghilang saat di-hover) */
.price-card .price-icon {
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.price-card:hover .price-icon {
  opacity: 0;
  transform: translateY(-15px);
}

/* Wadah foto background (Awalnya tersembunyi/opacity 0) */
.price-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

/* Gradient gelap agar teks putih tetap terbaca jelas di atas foto */
.price-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,7,7,0.1) 0%, rgba(7,7,7,0.95) 90%);
}

.price-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Efek saat kartu di-hover: foto muncul dan sedikit nge-zoom */
.price-card:hover .price-card-bg {
  opacity: 0.5; /* Tingkat transparansi foto, ubah angka ini jika dirasa terlalu gelap/terang */
  transform: scale(1.08);
}

/* =========================================
   LOOKBOOK & LIGHTBOX (HOME)
========================================= */
.lookbook { background: var(--black); border-top: 1px solid var(--white-12); }
.lookbook-grid {
  column-count: 3;
  column-gap: 18px;
  margin-top: 40px;
}
.lookbook-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in; /* Kursor berubah jadi kaca pembesar */
}
.lookbook-item img {
  width: 100%;
  display: block;
  transition: transform .5s var(--ease), filter .5s;
  filter: brightness(0.9);
}
.lookbook-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Lightbox (Pop-up) Styling */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(7, 7, 7, 0.95);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
.lightbox.active {
  opacity: 1; pointer-events: auto;
}
.lightbox-img {
  max-width: 90%; max-height: 85vh; border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: scale(0.95); transition: transform .4s var(--ease);
}
.lightbox.active .lightbox-img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute; top: 30px; right: 40px;
  color: var(--white); font-size: 40px; font-weight: 300;
  cursor: pointer; transition: color .3s; line-height: 1;
}
.lightbox-close:hover { color: var(--maroon); }

/* Responsif untuk Lookbook */
@media (max-width: 1080px) { .lookbook-grid { column-count: 2; } }
@media (max-width: 760px) { 
  .lookbook-grid { column-count: 1; } 
  .lightbox-close { top: 20px; right: 24px; font-size: 36px; }
}

/* =========================================
   INSTAGRAM EMBED SECTION
========================================= */
.ig-section { background: var(--black); border-top: 1px solid var(--white-12); }

.ig-head-right { display: flex; flex-direction: column; align-items: flex-end; gap: 22px; max-width: 380px; }
.ig-head-right .section-desc { max-width: 340px; text-align: right; }

.ig-follow-btn { display: inline-flex; align-items: center; gap: 9px; }
.ig-follow-btn svg { flex: none; }

.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.ig-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--white-12);
  background: linear-gradient(160deg, #141414, #0a0a0a);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.ig-card:hover {
  transform: translateY(-8px);
  border-color: var(--maroon);
  box-shadow: 0 20px 50px rgba(157,31,32,0.18);
}

.ig-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(7,7,7,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--white-12);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  pointer-events: none;
}
.ig-card-tag svg { color: var(--maroon); }

/* Skeleton shimmer while the Instagram script loads the real embed */
.ig-embed-wrapper {
  position: relative;
  width: 100%;
  min-height: 480px;
  background:
    linear-gradient(110deg, #141414 8%, #1c1010 18%, #141414 33%);
  background-size: 200% 100%;
  animation: ig-shimmer 1.6s linear infinite;
}
.ig-embed-wrapper:has(iframe) { animation: none; background: #fff; min-height: 0; }
@keyframes ig-shimmer {
  to { background-position-x: -200%; }
}

/* Instagram injects an iframe once embed.js loads — let it fill the card */
.ig-embed-wrapper iframe { width: 100% !important; border-radius: 0 !important; }
.ig-embed-wrapper blockquote.instagram-media { min-width: 0 !important; }

/* Responsive */
@media (max-width: 1080px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-head-right { align-items: flex-start; }
  .ig-head-right .section-desc { text-align: left; }
}
@media (max-width: 760px) {
  .ig-grid { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; }
}

/* =========================================
   TESTIMONI (GOOGLE REVIEWS)
========================================= */
.testimonial { background: var(--sand); color: var(--black); }
.testimonial .section-eyebrow { color: var(--maroon); }
.testimonial .section-title { color: var(--black); -webkit-text-stroke: 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.4s var(--ease);
}
.testi-card:hover { transform: translateY(-6px); }

.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; color: #fbbc05; /* Warna kuning khas rating Google */ }
.testi-stars svg { width: 18px; height: 18px; fill: currentColor; }

.testi-text {
  font-size: 14.5px; line-height: 1.7; color: rgba(7,7,7,0.75);
  margin-bottom: 24px; flex: 1; font-weight: 500;
}

.testi-user { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sand); color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; flex-shrink: 0; overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-info h4 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 4px; }
.testi-info p { font-size: 11.5px; color: rgba(7,7,7,0.5); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.testi-info p svg { width: 14px; height: 14px; }

/* =========================================
   FLOATING WHATSAPP BUBBLE
========================================= */
.float-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366; /* Warna hijau khas WhatsApp */
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 900;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.float-wa:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}
.float-wa svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* =========================================
   8. RESPONSIVE BREAKPOINTS
========================================= */
@media (max-width: 1080px) {
  .wrap, .wrap-narrow { padding: 0 28px; }
  .price-grid, .service-grid, .social-grid, .edu-grid { grid-template-columns: repeat(2, 1fr); }
  .mat-grid, .clinical-grid, .locate-grid, .profil-grid, .about-grid, .pm-grid { grid-template-columns: 1fr; }
  .misi-grid { display: flex; flex-direction: column-reverse; gap: 40px; }
  .pm-panel { border-left: none; padding-left: 0; padding-top: 28px; border-top: 1px solid var(--white-12); }
  .clinical-art { max-width: 320px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  /* Navigation Mobile Refactored */
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; z-index: 601; }
  
  /* [BARU] Header hitam solid dan Logo ke tengah saat menu burger aktif */
  header:has(.burger.open) {
    background: var(--black) !important;
    border-bottom-color: var(--white-12) !important;
  }
  header:has(.burger.open) .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  header:has(.burger.open) .burger {
    margin-left: auto; /* Menjaga burger tetap di kanan saat logo ke tengah */
  }

  /* Dropdown Menu Mobile */
  .nav-links.mobile-open {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0;
    background: var(--black); /* Hitam solid menyatu dengan header */
    padding: 40px 28px 120px; /* Ruang ekstra di bawah untuk CTA */
    gap: 32px; 
    border-bottom: 1px solid var(--white-12);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); 
  }
  
  /* CTA Mobile rata tengah sempurna */
  .nav-cta.mobile-open {
    margin-top: 24px;
    display: inline-flex; 
    justify-content: center;
    position: absolute; 
    top: calc(100% + 270px); /* Disesuaikan otomatis dengan tinggi menu */
    left: 50%; 
    transform: translateX(-50%);
    z-index: 600; 
    min-width: 220px;
  }

  /* Hero & Component Adjustments */
  .hero { min-height: 110svh; }
  .page-hero { min-height: 78svh; }
  .hero-strip-inner { flex-direction: column; align-items: flex-start; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .price-grid, .service-grid, .social-grid, .edu-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-inner, .faq-cta { flex-direction: column; align-items: flex-start; }
  .about-grid { gap: 40px; }
  .stat-grid { gap: 12px; }
  .map-frame iframe { height: 360px; }

  .testi-grid { grid-template-columns: 1fr; } /* [BARU] */
  
  /* [BARU] Ukuran WA Bubble di HP agak dikecilkan sedikit */
  .float-wa { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .float-wa svg { width: 26px; height: 26px; }
}