/* =============================================
   MY HOMECARE — WELLNESS & SPA LANDING PAGE
   style.css
   ============================================= */

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Colors */
  --clr-primary:        #f44f4d;   /* coral red from logo 2 */
  --clr-primary-light:  #ffebeb;
  --clr-primary-dark:   #c93432;
  --clr-secondary:      #3D5A4B;   /* sage green */
  --clr-secondary-light:#6B8E7B;
  --clr-accent:         #fcbe46;   /* gold/orange from logo 2 */
  --clr-dark:           #1A1A18;
  --clr-dark-2:         #2C2C28;
  --clr-text:           #4A4A42;
  --clr-text-light:     #7A7A72;
  --clr-white:          #FFFFFF;
  --clr-bg:             #FDFAF6;
  --clr-bg-2:           #F7F0E8;
  --clr-border:         rgba(244,79,77,0.20);

  /* Typography */
  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-sans:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-py:  100px;
  --container:   1200px;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   32px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.14);
  --shadow-gold: 0 8px 40px rgba(244,79,77,0.28);

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:    0.2s;
  --dur-normal:  0.35s;
  --dur-slow:    0.6s;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: var(--ff-sans);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── Utility Classes ── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-py {
  padding-block: var(--section-py);
}

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

.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 16px;
}
.label-tag::before,
.label-tag::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--clr-primary);
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--clr-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--clr-primary);
}

.section-desc {
  font-size: 15px;
  color: var(--clr-text-light);
  max-width: 560px;
  line-height: 1.8;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-light));
  border-radius: 2px;
  margin-block: 24px;
}
.divider.center { margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--dur-normal) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: var(--clr-white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 50px rgba(200,149,107,0.45);
  background: linear-gradient(135deg, var(--clr-primary-light), var(--clr-primary));
}

.btn-outline {
  border: 1.5px solid var(--clr-primary);
  color: var(--clr-primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-white {
  background: var(--clr-white);
  color: var(--clr-primary-dark);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--clr-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--clr-white);
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

/* ── Scroll Reveal Animation ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: translateX(0); }

/* ── HEADER / NAVBAR ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--dur-normal) var(--ease);
}

.header.scrolled {
  background: rgba(253,250,246,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-text span:first-child {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-dark);
  letter-spacing: 0.02em;
}
.nav-logo .logo-text span:last-child {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text);
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clr-primary);
  transition: width var(--dur-normal) var(--ease);
}
.nav-links a:hover { color: var(--clr-primary); }
.nav-links a:hover::after { width: 100%; }

/* ── NAV ACTIONS & LANGUAGE SELECTOR ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-dropdown {
  position: relative;
  display: inline-block;
  user-select: none;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-pill);
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-dark);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.lang-btn:hover,
.lang-dropdown.open .lang-btn {
  background: var(--clr-white);
  border-color: var(--clr-primary);
  box-shadow: 0 4px 16px rgba(244,79,77,0.18);
  transform: translateY(-1px);
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lang-flag-svg {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
}

.lang-label {
  letter-spacing: 0.05em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--clr-dark);
}

.lang-chevron {
  font-size: 11px;
  color: var(--clr-text-light);
  transition: transform var(--dur-normal) var(--ease);
}

.lang-dropdown.open .lang-chevron {
  transform: rotate(180deg);
  color: var(--clr-primary);
}

/* Dropdown Menu */
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--clr-white);
  border: 1px solid rgba(244,79,77,0.22);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.96);
  transform-origin: top right;
  transition: all var(--dur-normal) var(--ease);
  z-index: 1100;
}

.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-menu-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-light);
  padding: 6px 12px 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 4px;
}

.lang-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.lang-item:hover {
  background: var(--clr-primary-light);
}

.lang-item.active {
  background: rgba(244,79,77,0.1);
}

.lang-item-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lang-item-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  line-height: 1.25;
}

.lang-item-name {
  font-size: 13.5px;
  color: var(--clr-dark);
  font-weight: 600;
}

.lang-item-sub {
  font-size: 11.5px;
  color: var(--clr-text-light);
}

.lang-item-check {
  font-size: 16px;
  color: var(--clr-primary);
  opacity: 0;
  transform: scale(0.6);
  transition: all var(--dur-fast) var(--ease);
}

.lang-item.active .lang-item-check {
  opacity: 1;
  transform: scale(1);
}

/* Mobile Language Selection inside Drawer */
.mobile-lang-wrapper {
  width: 100%;
  max-width: 320px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.mobile-lang-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mobile-lang-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 9px 12px;
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-pill);
  font-family: var(--ff-sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--clr-dark);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
  border-color: var(--clr-primary);
  background: var(--clr-primary-light);
  color: var(--clr-primary-dark);
}

.mobile-lang-flag {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-lang-name {
  font-size: 12px;
  font-weight: 600;
}

.nav-cta { margin-left: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--clr-dark);
  transition: all var(--dur-normal) var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Google Translate Suppression */
body {
  top: 0px !important;
  position: static !important;
}
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
  visibility: hidden !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}
#google_translate_element {
  display: none !important;
}
.skiptranslate:not(.lang-dropdown):not(.mobile-lang-wrapper):not(.lang-menu):not(.lang-item):not(.lang-btn) {
  display: none !important;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253,250,246,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-normal) var(--ease);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: var(--clr-dark);
  font-weight: 400;
  transition: color var(--dur-fast);
}
.mobile-menu a:hover { color: var(--clr-primary); }
.mobile-menu .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  color: var(--clr-text);
  cursor: pointer;
  background: none;
  border: none;
}

/* ── HERO SECTION ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.hero-content {
  padding: 120px 64px 80px 0;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-accent);
  border: 1px solid var(--clr-border);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-primary-dark);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--clr-dark);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--clr-primary);
  display: block;
}

.hero-desc {
  font-size: 16px;
  color: var(--clr-text-light);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 620px;
  margin: 0 0 32px;
  padding: 0;
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.55;
}

.hero-benefits i {
  color: var(--clr-primary);
  font-size: 15px;
  line-height: 1.55;
  flex: 0 0 auto;
}

.hero-benefits strong {
  color: var(--clr-dark);
  font-weight: 700;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--clr-border);
}
.hero-stat-item {}
.hero-stat-item .stat-num {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--clr-dark);
  line-height: 1;
  display: block;
}
.hero-stat-item .stat-label {
  font-size: 12px;
  color: var(--clr-text-light);
  letter-spacing: 0.05em;
  display: block;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200,149,107,0.15) 0%,
    transparent 50%
  );
  z-index: 1;
}
.hero-img-badge {
  position: absolute;
  bottom: 48px;
  left: 24px;
  background: var(--clr-white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-img-badge .badge-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hero-img-badge .badge-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-dark);
}
.hero-img-badge .badge-text span {
  font-size: 12px;
  color: var(--clr-text-light);
}

.hero-floating-tag {
  position: absolute;
  top: 120px;
  right: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 3;
  text-align: center;
}
.hero-floating-tag .rating {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-dark);
}
.hero-floating-tag .stars { color: #F4B942; font-size: 14px; }
.hero-floating-tag .label { font-size: 11px; color: var(--clr-text-light); }

/* ── MARQUEE STRIP ── */
.marquee-section {
  background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.marquee-item span { font-size: 16px; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT SECTION ── */
.about {
  background: var(--clr-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  margin-bottom: 40px;
}
.about-visual {
  position: relative;
  width: 100%;
}
.about-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 12 / 16;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-secondary {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 170px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--clr-white);
  z-index: 2;
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-cert-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  background: var(--clr-white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 2;
  border: 1px solid var(--clr-border);
}
.about-cert-badge .cert-num {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--clr-primary);
  line-height: 1;
}
.about-cert-badge .cert-label {
  font-size: 11px;
  color: var(--clr-text-light);
  margin-top: 4px;
}

/* ── ABOUT FEATURES (Below image & text) ── */
.about-features-container {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.about-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.about-slider-title {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-slider-arrows {
  display: flex;
  gap: 8px;
}
.about-slider-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  color: var(--clr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.about-slider-btn:hover {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
  transform: translateY(-1px);
}
.about-slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}
.about-features-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding: 4px 2px;
}
.about-features-track::-webkit-scrollbar {
  display: none;
}
.about-feature-card {
  flex: 1 0 calc(25% - 12px);
  min-width: 220px;
  scroll-snap-align: start;
  background: var(--clr-bg);
  border: 1px solid rgba(244,79,77,0.16);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all var(--dur-normal) var(--ease);
}
.about-feature-card:hover {
  border-color: var(--clr-primary);
  background: var(--clr-white);
  box-shadow: 0 8px 24px rgba(244,79,77,0.12);
  transform: translateY(-2px);
}
.feat-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feat-card-num {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-primary);
  background: var(--clr-primary-light);
  min-width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.feat-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin: 0;
  line-height: 1.3;
}
.feat-card-desc {
  font-size: 0.83rem;
  color: var(--clr-text-light);
  line-height: 1.55;
  margin: 0;
}
.feat-card-desc p {
  margin-bottom: 0.35rem;
}
.feat-card-desc p:last-child {
  margin-bottom: 0;
}
.feat-card-desc ul, .feat-card-desc ol {
  margin: 0 0 0.35rem 1.2rem;
  padding: 0;
}

/* ── ABOUT RICH TEXT (Support long text) ── */
.about-content {
  display: flex;
  flex-direction: column;
}
.about-rich-text {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--clr-text);
  max-width: 100%;
}
.about-rich-text p {
  margin-bottom: 1.15rem;
}
.about-rich-text p:last-child {
  margin-bottom: 0;
}
.about-rich-text h3,
.about-rich-text h4,
.about-rich-text h5 {
  font-family: var(--ff-serif);
  color: var(--clr-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
  font-weight: 600;
}
.about-rich-text ul,
.about-rich-text ol {
  margin: 0.75rem 0 1.25rem 1.25rem;
  padding-left: 0.5rem;
}
.about-rich-text li {
  margin-bottom: 0.45rem;
  line-height: 1.65;
}
.about-rich-text blockquote {
  border-left: 3px solid var(--clr-primary);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.25rem 0;
  font-style: italic;
  color: var(--clr-dark);
  background: var(--clr-bg-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── SERVICES SECTION ── */
.services {
  background: var(--clr-bg-2);
}
.services-header { margin-bottom: 56px; }

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

.service-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: all var(--dur-normal) var(--ease);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-primary-light));
}
.service-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), transparent 34%),
    linear-gradient(135deg, rgba(200,149,107,0.16), rgba(61,90,75,0.16));
  z-index: 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  position: relative;
  z-index: 1;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,26,24,0.7));
  z-index: 2;
}
.service-card-img .card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.92);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-primary-dark);
  z-index: 3;
}

.service-card-body {
  padding: 24px;
}
.service-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.service-card-title {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--clr-dark);
  margin-bottom: 8px;
}
.service-card-desc {
  font-size: 13.5px;
  color: var(--clr-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--clr-border);
}
.service-card-meta .duration {
  font-size: 12.5px;
  color: var(--clr-text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.service-card-meta .price {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-primary);
}

/* ── TREATMENT DETAIL ── */
.treatments {
  background: var(--clr-bg);
}
.treatments-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 0;
}
.tab-btn {
  padding: 12px 24px;
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--clr-text-light);
  background: transparent;
  border: 1px solid transparent;
  border-bottom: none;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--clr-primary); }
.tab-btn.active {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-border);
  border-bottom-color: var(--clr-white);
  font-weight: 600;
}

.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.treatment-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.treatment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-info {}
.treatment-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: var(--clr-accent);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  border: 1px solid var(--clr-border);
}
.treatment-price-tag .currency { font-size: 13px; color: var(--clr-primary); font-weight: 600; }
.treatment-price-tag .amount {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--clr-primary);
  font-weight: 600;
}
.treatment-price-tag .per { font-size: 12px; color: var(--clr-text-light); }

.treatment-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--clr-text);
}
.benefit-item .benefit-check {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--clr-secondary), var(--clr-secondary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  flex-shrink: 0;
}

.treatment-meta-row {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}
.treatment-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--clr-text-light);
}
.treatment-meta-item strong { color: var(--clr-dark); font-weight: 600; }

/* ── PRICE LIST ── */
.pricelist {
  background: var(--clr-dark);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}
.pricelist::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,107,0.15), transparent 70%);
  pointer-events: none;
}
.pricelist::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,90,75,0.2), transparent 70%);
  pointer-events: none;
}
.pricelist .section-title { color: var(--clr-white); }
.pricelist .section-desc  { color: rgba(255,255,255,0.6); }

.pricelist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.price-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--dur-normal) var(--ease);
  position: relative;
  overflow: hidden;
}
.price-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  border-color: rgba(200,149,107,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.price-card.featured {
  border-color: var(--clr-primary);
  background: linear-gradient(135deg, rgba(200,149,107,0.12), rgba(200,149,107,0.05));
}
.price-card.featured::before {
  content: 'Paling Populer';
  position: absolute;
  background: var(--clr-primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  right: 18px;
  top: 18px;
  transform: none;
  transform-origin: center;
  white-space: nowrap;
  z-index: 2;
}

.price-card-category {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-primary-light);
  margin-bottom: 20px;
  font-weight: 600;
}
.price-card-name {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--clr-white);
  margin-bottom: 8px;
}
.price-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 28px;
}
.price-card-price {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--clr-primary-light);
  margin-bottom: 4px;
}
.price-card-price small {
  font-size: 0.5em;
  font-family: var(--ff-sans);
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}
.price-card-duration {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.price-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.price-list-items {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
}
.price-list-item .item-name { color: rgba(255,255,255,0.7); }
.price-list-item .item-price { color: var(--clr-primary-light); font-weight: 600; }

/* ── GALLERY ── */
.gallery {
  background: var(--clr-bg-2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(26,26,24,0.6));
  opacity: 0;
  transition: opacity var(--dur-normal) var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-white);
}

.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; }

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--clr-bg);
}
.testimonials-header { margin-bottom: 56px; }

.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s var(--ease);
}
.testimonial-card {
  min-width: calc(33.33% - 16px);
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  flex-shrink: 0;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--ff-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--clr-accent);
  position: absolute;
  top: 16px;
  right: 24px;
}
.testimonial-stars {
  color: #F4B942;
  font-size: 15px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 14.5px;
  color: var(--clr-text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--clr-accent);
  flex-shrink: 0;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--clr-dark);
}
.testimonial-service {
  font-size: 12px;
  color: var(--clr-primary);
}

.slider-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--clr-primary);
  font-size: 16px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.slider-btn:hover {
  background: var(--clr-primary);
  color: white;
}
.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  border: 1.5px solid var(--clr-primary);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.slider-dot.active {
  background: var(--clr-primary);
  width: 24px;
  border-radius: var(--radius-pill);
}

/* ── FAQ ── */
.faq {
  background: var(--clr-bg-2);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--dur-fast) var(--ease);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--clr-primary); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}
.faq-question-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-dark);
  line-height: 1.4;
}
.faq-item.open .faq-question-text { color: var(--clr-primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clr-accent);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--clr-primary);
  flex-shrink: 0;
  transition: transform var(--dur-normal) var(--ease),
              background var(--dur-normal) var(--ease);
}
.faq-item.open .faq-icon {
  background: var(--clr-primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--clr-text-light);
  line-height: 1.8;
}

.faq-cta-box {
  background: linear-gradient(135deg, var(--clr-secondary), var(--clr-secondary-light));
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: white;
  text-align: center;
  position: sticky;
  top: 100px;
}
.faq-cta-box .cta-icon { font-size: 48px; margin-bottom: 20px; }
.faq-cta-box h3 {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.faq-cta-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── CONTACT / LOCATION ── */
.contact {
  background: var(--clr-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info { }

.contact-item {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--clr-border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 6px;
}
.contact-item-value {
  font-size: 14.5px;
  color: var(--clr-dark);
  font-weight: 500;
  line-height: 1.5;
}
.contact-item-sub {
  font-size: 13px;
  color: var(--clr-text-light);
  margin-top: 3px;
}

.operating-hours {
  background: var(--clr-primary); /* Coral/Red background */
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.operating-hours h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-white);
  margin-bottom: 16px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(255, 255, 255, 0.85); }
.hours-row .time { color: var(--clr-white); font-weight: 600; }
.hours-row .time.closed { color: var(--clr-white); opacity: 0.9; }

.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-accent);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--dur-fast) var(--ease);
}
.social-link:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  transform: translateY(-3px);
}

/* Brand-specific hover colors */
.social-link.social-ig:hover  { background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; }
.social-link.social-tiktok:hover { background: #010101; border-color: #010101; }
.social-link.social-fb:hover   { background: #1877F2; border-color: #1877F2; }
.social-link.social-tw:hover   { background: #000000; border-color: #000000; }

/* Ensure SVG is centered and inherits color */
.social-link svg {
  display: block;
  pointer-events: none;
  color: inherit;
}
.social-link:hover svg { color: #fff; }

/* ── CONTACT MAP & AREA CARDS ── */
.contact-map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.map-section-header {
  margin-bottom: 2px;
}

.area-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 10px;
  width: 100%;
}

.area-card-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.area-card-btn:hover {
  transform: translateY(-2px);
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-md);
}

.area-card-btn.active {
  background: linear-gradient(135deg, #ffffff, var(--clr-primary-light));
  border-color: var(--clr-primary);
  box-shadow: 0 4px 16px rgba(244, 79, 77, 0.18);
}

.area-card-btn.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--clr-primary);
}

.area-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  width: 100%;
}

.area-card-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.area-card-btn.active .area-card-icon {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.area-card-title {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.area-card-btn.active .area-card-title {
  color: var(--clr-primary-dark);
}

.area-card-address {
  font-size: 11.5px;
  color: var(--clr-text-light);
  line-height: 1.4;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
  width: 100%;
}

.area-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  width: 100%;
}

.area-card-coord {
  color: var(--clr-primary-dark);
  background: rgba(244, 79, 77, 0.08);
  padding: 2px 7px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10.5px;
}

.area-card-phone {
  color: #128C7E;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.area-card-tag {
  color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.map-frame-box {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.map-frame-box iframe {
  width: 100%;
  height: 380px;
  min-height: 320px;
  border: none;
  display: block;
}

.map-info-bar {
  padding: 12px 18px;
  background: #ffffff;
  border-top: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.map-info-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--clr-dark);
}

.map-info-desc {
  font-size: 12px;
  color: var(--clr-text-light);
}

.btn-gmaps {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  background: var(--clr-primary-light);
  color: var(--clr-primary-dark);
  border: 1px solid var(--clr-border);
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-gmaps:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-1px);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--clr-accent); /* Gold/Yellow background */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.05);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.04);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--clr-dark);
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  font-size: 15px;
  color: var(--clr-text);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 36px;
  line-height: 1.7;
  position: relative;
}
.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ── */
.footer {
  background: var(--clr-dark-2);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .footer-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.footer-brand .footer-logo span {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--clr-white);
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-primary-light);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast) var(--ease);
}
.footer-links a:hover { color: var(--clr-primary-light); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--clr-primary-light); }

/* ── FLOATING WA BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  transition: all var(--dur-normal) var(--ease);
  animation: pulse-wa 2.5s infinite;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(37,211,102,0.65);
  animation: none;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 8px 50px rgba(37,211,102,0.75), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 104px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 1.5px solid var(--clr-primary);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.back-to-top.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--clr-primary);
  color: white;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 900px;
  max-height: 80vh;
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 140px 0 60px; grid-row: 1; }
  .hero-visual { height: 480px; grid-row: 2; }
  .hero-img-badge { left: 16px; bottom: 24px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 32px; }
  .about-visual { max-width: 500px; margin: 0 auto; width: 100%; }
  .about-feature-card { flex: 0 0 calc(50% - 8px); min-width: 200px; }

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

  .tab-panel.active { grid-template-columns: 1fr; gap: 32px; }

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

  .gallery-grid { grid-template-rows: repeat(3, 200px); }
  .gallery-item:nth-child(1) { grid-column: span 6; grid-row: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 6; }
  .gallery-item:nth-child(3) { grid-column: span 6; }
  .gallery-item:nth-child(4) { grid-column: span 6; }
  .gallery-item:nth-child(5) { grid-column: span 6; }

  .testimonial-card { min-width: calc(50% - 12px); }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-cta-box { position: static; }

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

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

@media (max-width: 768px) {
  :root { --section-py: 72px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-stats { gap: 24px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }

  .about-features-container { padding: 18px 16px; }
  .about-feature-card { flex: 0 0 85%; min-width: 220px; }

  .services-grid { grid-template-columns: 1fr; }
  .pricelist-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .gallery-item { aspect-ratio: 1; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: span 1; }

  .testimonial-card { min-width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-cert-badge { left: 0; }
  .about-img-secondary { right: 0; }

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

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .about-feature-card { flex: 0 0 90%; min-width: 200px; }
  .treatment-meta-row { flex-wrap: wrap; gap: 12px; }
  .hero-stats { flex-wrap: wrap; }
}

/* ── Frontend Polish / Layout Hardening ── */
.nav-links {
  gap: 22px;
}

.services-grid,
.pricelist-grid,
.footer-grid {
  align-items: stretch;
}

.service-card,
.price-card,
.testimonial-card {
  height: 100%;
}

.service-card,
.price-card {
  display: flex;
  flex-direction: column;
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-card-body .btn {
  margin-top: auto;
  justify-content: center;
}

.service-card-img {
  min-height: 190px;
}

.price-card {
  min-height: 390px;
}

.price-card.featured {
  padding-top: 58px;
}

.price-card-name,
.service-card-title,
.section-title {
  overflow-wrap: anywhere;
}

.price-card-desc {
  min-height: 44px;
}

.price-card-duration {
  min-height: 18px;
}

.price-card .btn {
  margin-top: auto;
  min-height: 48px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.testimonial-author {
  margin-top: auto;
}

.gallery-overlay-text {
  max-width: 90%;
}

.contact-item-value,
.footer-links li,
.footer-links a {
  overflow-wrap: anywhere;
}

.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.72);
  color: var(--clr-white);
}

.cta-banner .btn-outline:hover {
  border-color: var(--clr-white);
  background: rgba(255,255,255,0.14);
}

@media (max-width: 1180px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    padding-top: 128px;
  }

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

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

  .price-card-desc,
  .price-card-duration {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .hero-stat-item {
    min-width: 120px;
  }

  .service-card-img {
    min-height: 210px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 11;
  }

  .slider-controls {
    margin-top: 22px;
  }

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

  .area-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

  .map-frame-box iframe {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 18px;
  }

  .hero-content {
    padding-top: 116px;
  }

  .hero-btns,
  .cta-banner-btns {
    width: 100%;
  }

  .hero-btns .btn,
  .cta-banner-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .price-card,
  .service-card-body,
  .testimonial-card {
    padding: 24px 20px;
  }
}

#layanan.pricelist {
  background: var(--clr-bg);
  color: var(--clr-text);
}

#layanan.pricelist::before,
#layanan.pricelist::after {
  display: none;
}

#layanan.pricelist .section-title {
  color: var(--clr-dark);
}

#layanan.pricelist .section-desc {
  color: var(--clr-text-light);
}

#layanan .price-card {
  background: var(--clr-white);
  border-color: var(--clr-border);
  box-shadow: var(--shadow-sm);
}

#layanan .price-card:hover {
  background: var(--clr-white);
  border-color: rgba(244,79,77,0.35);
  box-shadow: var(--shadow-lg);
}

#layanan .price-card.featured {
  background: linear-gradient(135deg, #ffffff, var(--clr-primary-light));
}

#layanan .price-card-category {
  color: var(--clr-primary);
}

#layanan .price-card-name {
  color: var(--clr-dark);
}

#layanan .price-card-desc {
  color: var(--clr-text-light);
}

#layanan .price-card-price {
  color: var(--clr-primary);
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--ff-sans);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}

#layanan .price-card-price small {
  color: var(--clr-text-light);
  font-size: 0.72em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#layanan .price-card-duration {
  color: var(--clr-text-light);
}

#layanan .price-list-items {
  border-top-color: var(--clr-border);
}

#layanan .price-list-item .item-name {
  color: var(--clr-text);
}

#layanan .price-list-item .item-price {
  color: var(--clr-primary);
}

.hero-subtitle {
  max-width: 580px;
  margin: 0 0 24px;
  color: var(--clr-dark) !important;
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-subtitle,
.hero-subtitle *,
.hero-subtitle p,
.hero-subtitle span,
.hero-subtitle strong,
.hero-subtitle em,
.hero-subtitle b,
.hero-subtitle i,
.hero-subtitle a {
  color: var(--clr-dark) !important;
}

/* ── Global Rich Text Support ── */
.rich-content,
.hero-subtitle,
.section-desc,
.price-card-desc,
.service-card-desc,
.testimonial-text,
.about-rich-text {
  word-break: break-word;
}

.rich-content p,
.hero-subtitle p,
.section-desc p,
.price-card-desc p,
.service-card-desc p,
.testimonial-text p,
.about-rich-text p {
  margin-bottom: 0.65rem;
}

.rich-content p:last-child,
.hero-subtitle p:last-child,
.section-desc p:last-child,
.price-card-desc p:last-child,
.service-card-desc p:last-child,
.testimonial-text p:last-child,
.about-rich-text p:last-child {
  margin-bottom: 0;
}

.rich-content strong, .rich-content b,
.hero-subtitle strong, .hero-subtitle b,
.section-desc strong, .section-desc b,
.price-card-desc strong, .price-card-desc b,
.service-card-desc strong, .service-card-desc b,
.testimonial-text strong, .testimonial-text b,
.about-rich-text strong, .about-rich-text b {
  font-weight: 700;
  color: var(--clr-dark);
}

.rich-content em, .rich-content i,
.hero-subtitle em, .hero-subtitle i,
.section-desc em, .section-desc i,
.price-card-desc em, .price-card-desc i,
.service-card-desc em, .service-card-desc i,
.testimonial-text em, .testimonial-text i,
.about-rich-text em, .about-rich-text i {
  font-style: italic;
}

.rich-content u,
.hero-subtitle u,
.section-desc u,
.price-card-desc u,
.service-card-desc u,
.testimonial-text u,
.about-rich-text u {
  text-decoration: underline;
}

.rich-content s, .rich-content strike,
.hero-subtitle s, .hero-subtitle strike,
.section-desc s, .section-desc strike,
.price-card-desc s, .price-card-desc strike,
.service-card-desc s, .service-card-desc strike,
.testimonial-text s, .testimonial-text strike,
.about-rich-text s, .about-rich-text strike {
  text-decoration: line-through;
}

.rich-content ul,
.hero-subtitle ul,
.section-desc ul,
.price-card-desc ul,
.service-card-desc ul,
.testimonial-text ul,
.about-rich-text ul {
  list-style: disc;
  margin: 0.4rem 0 0.6rem 1.25rem;
  padding-left: 0.5rem;
}

.rich-content ol,
.hero-subtitle ol,
.section-desc ol,
.price-card-desc ol,
.service-card-desc ol,
.testimonial-text ol,
.about-rich-text ol {
  list-style: decimal;
  margin: 0.4rem 0 0.6rem 1.25rem;
  padding-left: 0.5rem;
}

.rich-content li,
.hero-subtitle li,
.section-desc li,
.price-card-desc li,
.service-card-desc li,
.testimonial-text li,
.about-rich-text li {
  margin-bottom: 0.25rem;
  line-height: 1.55;
}

.rich-content a,
.hero-subtitle a,
.section-desc a,
.price-card-desc a,
.service-card-desc a,
.testimonial-text a,
.about-rich-text a {
  color: var(--clr-primary);
  text-decoration: underline;
  transition: color var(--dur-fast);
}

.rich-content a:hover,
.hero-subtitle a:hover,
.section-desc a:hover,
.price-card-desc a:hover,
.service-card-desc a:hover,
.testimonial-text a:hover,
.about-rich-text a:hover {
  color: var(--clr-primary-dark);
}

.price-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  background: var(--clr-bg-2);
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--clr-white);
  font-size: 18px;
  transition: all var(--dur-fast) var(--ease);
}

.footer-social-links a:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.footer-social-links img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
