/* ========================================
   AYUSH AROGYA AYURVEDIC CENTRE
   Main Stylesheet - pwstyle.css
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&family=Playfair+Display:wght@700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --cream:       #f5f0e8;
  --cream-light: #faf8f3;
  --green:       #3d6b4f;
  --green-mid:   #5a8c6e;
  --green-light: #a8c8b4;
  --green-pale:  #deeee6;
  --gold:        #c8973a;
  --gold-light:  #e8c878;
  --brown:       #5c3d1e;
  --text-dark:   #1a2a1e;
  --text-mid:    #3d5244;
  --text-light:  #6b7f6e;
  --white:       #ffffff;
  --shadow-sm:   0 2px 12px rgba(61,107,79,0.08);
  --shadow-md:   0 8px 32px rgba(61,107,79,0.14);
  --shadow-lg:   0 20px 60px rgba(61,107,79,0.18);
  --radius:      16px;
  --radius-sm:   8px;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Banner/Spa vars */
  --font-heading:    'Playfair Display', serif;
  --font-body:       'Lato', sans-serif;
  --spa-green-dark:  #1a2e1f;
  --spa-green:       #85b544;
  --spa-ivory:       #f5f0e8;
  --spa-border:      rgba(255, 255, 255, 0.3);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

a:hover {
    color: #ffffff;
}

/* ── Custom Cursor ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; /* MUST be none */
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  opacity: 0; /* hidden until JS moves it */
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; /* MUST be none */
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0; /* hidden until JS moves it */
}
/* JS should add class 'active' after first mousemove */
.cursor.active { opacity: 1; }
.cursor-ring.active { opacity: 1; }

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  z-index: 99999;
  width: 0%;
  transition: width 0.1s;
  pointer-events: none;
}

/* ── Page Transition ── */
.page-transition {
  position: fixed; inset: 0;
  background: var(--green);
  z-index: 999999; /* above everything */
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}
.page-transition.done { transform: scaleY(0); }

/* =========================================
   NAVBAR
========================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.navbar.scrolled {
  background: #0A0909;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  height: 90px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  height: 60px; width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a {
  display: block; padding: 8px 18px;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--gold);
  border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: #4a6741;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  left: 18px; right: 18px;
}
.nav-cta {
  background: #85b544 !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover {
  background: var(--brown) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md) !important;
}
.nav-cta::after { display: none !important; }

/* =========================================
   DROPDOWN — Level 2
========================================= */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: inline-flex !important;
  align-items: center; gap: 5px;
}

.nav-chevron {
  width: 13px; height: 13px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px); left: 0;
  min-width: 200px;
  background-color: #0A0909;
  border-top: 2px solid #4a6741;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  list-style: none;
  padding: 8px 0; margin: 0;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  border-radius: 0 0 8px 8px;
}
.nav-dropdown:hover > .nav-dropdown-menu { display: block; }

.nav-dropdown-menu li a {
  display: block !important;
  padding: 10px 20px !important;
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 400 !important;
  background: none !important;
  border-radius: 0 !important;
  transition: background 0.2s ease, padding-left 0.2s ease;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  background: rgba(74,103,65,0.3) !important;
  padding-left: 28px !important;
}
.nav-dropdown-menu li a::after { display: none !important; }

/* =========================================
   DROPDOWN — Level 3 flyout
========================================= */
.nav-dropdown--sub { position: relative; }
.nav-chevron--right { width: 12px; height: 12px; margin-left: auto; }

.nav-dropdown-menu--sub {
  display: none;
  position: absolute;
  top: 0; left: 100%;
  min-width: 200px;
  background-color: #0A0909;
  border-top: 2px solid #4a6741;
  list-style: none;
  padding: 8px 0; margin: 0;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.nav-dropdown--sub:hover > .nav-dropdown-menu--sub { display: block; }

/* =========================================
   HAMBURGER
========================================= */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--green); border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   MOBILE NAV
========================================= */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: #0A0909;
    padding: 20px 5% 30px;
    border-top: 1px solid rgba(74,103,65,0.3);
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { width: 100%; border-radius: 8px; }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    border-left: 2px solid #4a6741;
    background: rgba(255,255,255,0.04);
    padding: 4px 0;
    margin: 4px 0 4px 12px;
  }
  .nav-dropdown-menu.open { display: block; }
  .nav-dropdown:hover > .nav-dropdown-menu { display: none; }
  .nav-dropdown:hover > .nav-dropdown-menu.open { display: block; }

  .nav-dropdown-menu--sub {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid rgba(74,103,65,0.4);
    background: rgba(255,255,255,0.02);
    margin-left: 12px;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  transition: left var(--transition);
}
.btn:hover::before { left: 0; }
.btn-primary {
  background: var(--green); color: var(--white);
  box-shadow: 0 4px 20px rgba(61,107,79,0.3);
}
.btn-primary:hover {
  background: var(--brown);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(61,107,79,0.35);
}
.btn-outline {
  border-color: var(--white); color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn-gold {
  background: var(--gold); color: var(--white);
  box-shadow: 0 4px 20px rgba(200,151,58,0.3);
}
.btn-gold:hover { background: var(--brown); transform: translateY(-3px); }

/* ── Section Utilities ── */
section { padding: 100px 5%; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-title em { color: var(--green); font-style: italic; }
.section-subtitle {
  font-size: 1rem; color: var(--text-light);
  line-height: 1.8; max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }

/* =========================================
   HERO BANNER SLIDER
========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 5% 80px;
  font-family: 'Jost', sans-serif;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,12,0.45) 0%, rgba(10,20,12,0.60) 60%, rgba(10,20,12,0.55) 100%);
}
.hero-corner-tl {
  position: absolute; top: 24px; left: 24px;
  width: 44px; height: 44px;
  border-top: 1px solid var(--spa-border);
  border-left: 1px solid var(--spa-border);
  pointer-events: none; z-index: 3;
}
.hero-corner-br {
  position: absolute; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  border-bottom: 1px solid var(--spa-border);
  border-right: 1px solid var(--spa-border);
  pointer-events: none; z-index: 3;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.hero-eyebrow-line {
  width: 36px; height: 1px;
  background: rgba(255,255,255,0.6); flex-shrink: 0;
}
.hero-eyebrow span {
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); font-weight: 400;
}
.hero-slide-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 300; line-height: 1.1; color: #ffffff;
  margin: 0 0 22px; letter-spacing: -0.3px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-rule {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.4);
  margin: 0 auto 26px;
}
.hero-slide-caption {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem; line-height: 1.95;
  color: rgba(255,255,255,0.80); font-weight: 300;
  letter-spacing: 0.3px; max-width: 520px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; margin-bottom: 48px; flex-wrap: wrap;
}
.btn-spa-primary {
  display: inline-block; padding: 14px 38px;
  background: var(--spa-green); color: var(--spa-ivory);
  text-decoration: none; font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase;
  font-weight: 400; border: 1px solid var(--spa-green);
  transition: background 0.25s, border-color 0.25s;
}
.btn-spa-primary:hover { background: var(--spa-green-dark); border-color: var(--spa-green-dark); }
.btn-spa-ghost {
  font-family: 'Jost', sans-serif; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
}
.btn-spa-ghost-arrow {
  display: inline-block; width: 28px; height: 1px;
  background: rgba(255,255,255,0.7); position: relative;
  transition: width 0.25s;
}
.btn-spa-ghost:hover .btn-spa-ghost-arrow { width: 42px; }
.btn-spa-ghost-arrow::after {
  content: ''; position: absolute; right: 0; top: -3.5px;
  width: 7px; height: 7px;
  border-right: 1px solid rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
}
.hero-stats {
  display: inline-flex; align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 28px;
}
.hero-stat { padding: 0 28px; text-align: center; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { padding-right: 0; }
.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem; font-weight: 300; color: #ffffff;
  line-height: 1; display: block; margin-bottom: 6px;
}
.hero-stat .label {
  font-family: 'Jost', sans-serif; font-size: 9px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 300; display: block;
}
.hero-stat-sep {
  width: 1px; background: rgba(255,255,255,0.2);
  align-self: stretch; margin: 2px 0; flex-shrink: 0;
}
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}
.hero-arrow:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.6); }
.hero-arrow svg { width: 18px; height: 18px; stroke: #ffffff; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.hero-arrow-prev { left: 28px; }
.hero-arrow-next { right: 28px; }
.hero-dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 5;
  display: flex; gap: 8px; align-items: center;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none;
  cursor: pointer; padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.hero-dot.active { background: #ffffff; transform: scale(1.4); }
.hero-text-fade { animation: heroTextFade 0.5s ease; }
@keyframes heroTextFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MARQUEE SECTION ── */
.marquee-strip {
  background: #2d3c22;
  padding: 24px 0; overflow: hidden;
  border-top: 1px solid rgba(197,148,67,0.1);
  border-bottom: 1px solid rgba(197,148,67,0.1);
  display: flex; position: relative; z-index: 5;
}
.marquee-content {
  display: flex; white-space: nowrap;
  width: max-content;
  animation: scroll-marquee 40s linear infinite;
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.2em; color: #ffd34f;
  text-transform: uppercase; padding: 0 40px;
  display: flex; align-items: center; gap: 15px;
}
@keyframes scroll-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   PAGE HERO (subpages)
========================================= */
.page-hero {
  position: relative; min-height: 45vh;
  display: flex; align-items: center;
  padding: 140px 5% 80px; overflow: hidden;
  background-color: #0d2218;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 64%; /* tukar nilai ni */
  background-repeat: no-repeat;
  z-index: 0;
}
/* FIX: was blocking content — removed pointer-events issue by keeping z-index order correct */
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-edge {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, transparent 0%, #d4af37 25%, #d4af37 75%, transparent 100%);
  z-index: 2;
}
.hero-corner {
  position: absolute; top: 28px; left: 20px;
  z-index: 2; opacity: 0.35;
}
.page-hero-content {
  position: relative; z-index: 3; /* above .hero-bg::after overlay */
  max-width: 580px;
}
.page-hero .section-title {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4.8rem) !important;
  line-height: 1.06; letter-spacing: -0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.7);
}
.page-hero .section-title em {
  color: #c8e6a0;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.8);
}
.hero-divider {
  width: 48px; height: 2px;
  background: linear-gradient(to right, #d4af37, transparent);
  margin: 16px 0 18px; border-radius: 1px;
}
.page-hero p {
  color: rgba(255,255,255,0.92);
  font-size: 1.2rem !important; line-height: 1.85;
  margin: 0 0 28px; font-weight: 300;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  list-style: none; margin-top: 16px;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
}
.hero-breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
.hero-breadcrumb a:hover { color: var(--gold); }
.hero-breadcrumb span { opacity: 0.5; }
.hero-breadcrumb .active { color: var(--gold); opacity: 1; }

/* =========================================
   ABOUT PAGE HERO — Left Aligned
========================================= */
.hero-about {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  text-align: left !important;
}
.hero-about .hero-bg {
  background:
    radial-gradient(ellipse 55% 70% at 85% 110%, rgba(180,130,40,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 95% 10%, rgba(100,170,80,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at -10% 50%, rgba(30,90,50,0.55) 0%, transparent 70%),
    linear-gradient(148deg, #1b3d28 0%, #0d2218 45%, #111c14 100%) !important;
}
.hero-about .page-hero-content {
  max-width: 680px;
  margin-left: 0 !important; margin-right: auto !important;
  text-align: left !important;
}
.hero-about .hero-divider {
  width: 80px;
  background: linear-gradient(to right, #d4af37, transparent);
  margin: 18px 0 22px 0 !important;
}
.hero-about p {
  border-left: 3px solid rgba(212,175,55,0.4);
  padding-left: 25px; margin-left: 0 !important;
  font-style: italic;
  color: rgba(245,240,232,0.85) !important;
  line-height: 1.85;
}
.hero-about .hero-cta-row {
  justify-content: flex-start !important;
  gap: 20px; margin-top: 30px;
}

/* =========================================
   ABOUT SECTION (homepage preview)
========================================= */
#about-preview {
  background: var(--white);
  padding: 120px 10%;
  display: flex; gap: 60px; align-items: center;
  position: relative; min-height: 800px;
}
.about-img-grid {
  flex: 0.9;
  display: block;
  height: 600px; position: relative;
  transform: translateX(-30px);
}
.about-img-grid img {
  position: absolute; border-radius: 8px;
  box-shadow: 20px 30px 60px rgba(0,0,0,0.12);
  transition: transform 0.8s cubic-bezier(0.2,1,0.3,1);
  object-fit: cover;
}
.about-img-grid img:nth-child(1) { width: 75%; height: 80%; top: 0; left: 0; z-index: 1; }
.about-img-grid img:nth-child(2) { width: 45%; height: 40%; top: 10%; right: 0; z-index: 2; border: 10px solid var(--white); }
.about-img-grid img:nth-child(3) { width: 50%; height: 45%; bottom: 0; right: -20px; z-index: 3; border: 12px solid var(--white); }
.about-badge {
  position: absolute; top: 55%; left: 45%;
  transform: translate(-50%, -50%); z-index: 10;
  background: var(--gold); color: var(--white);
  width: 150px; height: 150px; border-radius: 50%;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  box-shadow: 0 15px 35px rgba(197,148,67,0.4);
  border: 6px solid var(--white); text-align: center;
}
.about-badge .num { font-size: 2.2rem; font-weight: bold; }
.about-badge .txt { font-size: 0.9rem; text-transform: uppercase; line-height: 1.2; }
.reveal-right { flex: 1.1; }
.about-features { display: flex; flex-direction: column; }
.about-feature {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
}
.about-feature-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px; background: #fdf4e7;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.about-feature-icon svg { transition: stroke 0.3s ease; }
.about-feature:hover .about-feature-icon { background: var(--gold); transform: rotate(-8deg) scale(1.12); }
.about-feature:hover .about-feature-icon svg { stroke: #ffffff; }
.about-feature-text h4 {
  font-size: 1.1rem; font-weight: 600;
  text-transform: uppercase; margin: 0; color: #2d2d2d;
  transition: color 0.3s ease;
}
.about-feature-text p { font-size: 0.82rem; color: #999; margin: 3px 0 0; }
.about-feature:hover .about-feature-text h4 { color: var(--gold); }

/* =========================================
   OUR STORY
========================================= */
.our-story {
  background: var(--bg-card);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 100px 5% 100px 10%;
}
.story-text { font-size: 1.15rem; color: var(--text-body); line-height: 1.9; margin-bottom: 20px; }
.image-wrapper { position: relative; }
.image-wrapper img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.stat-box {
  position: absolute; bottom: -30px; right: -30px;
  background: var(--primary-color); color: #fff;
  padding: 30px 35px; border-radius: 8px;
  box-shadow: 0 10px 20px rgba(28,97,56,0.2);
}
.stat-number { font-size: 3.2rem; font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 6px; opacity: 0.8; }

/* =========================================
   VALUES / PHILOSOPHY
========================================= */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.value-card {
  padding: 40px 32px; border-radius: 8px;
  background: var(--bg-card);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border-top: 5px solid var(--primary-color);
  transition: transform 0.3s, box-shadow 0.3s, border-top-color 0.3s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 15px 30px rgba(0,0,0,0.06); border-top-color: var(--gold); }
.value-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--text-heading); margin-bottom: 10px; }
.value-card p { font-size: 1.02rem; color: var(--text-body); line-height: 1.8; }
@keyframes icon-bounce {
  0%   { transform: translateY(0) scale(1); }
  25%  { transform: translateY(-10px) scale(1.15); }
  50%  { transform: translateY(-4px) scale(1.06); }
  70%  { transform: translateY(-7px) scale(1.10); }
  90%  { transform: translateY(-1px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}
.icon-wrap {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(28,97,56,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background 0.25s;
}
.icon-wrap svg { width: 30px; height: 30px; stroke: var(--primary-color); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.value-card:hover .icon-wrap { background: var(--primary-color); }
.value-card:hover .icon-wrap svg { stroke: #fff; animation: icon-bounce 0.55s cubic-bezier(.36,.07,.19,.97) both; }

/* =========================================
   TEAM GRID
========================================= */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 56px; }
.team-card {
  text-align: center; padding: 44px 28px;
  background: var(--bg-card); border-radius: 8px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border-color);
}
.team-card:hover { background: #fff; transform: translateY(-6px); box-shadow: 0 15px 30px rgba(0,0,0,0.06); }
.team-card h4 { font-size: 1.45rem; font-weight: 700; color: var(--text-heading); }
.team-card .role { font-size: 0.82rem; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin: 8px 0 14px; }
.team-card p { font-size: 1rem; color: var(--text-body); line-height: 1.7; }
.team-avatar-icon {
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--primary-color);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 5px 15px rgba(28,97,56,0.2);
  transition: background 0.25s;
}
.team-avatar-icon svg { width: 52px; height: 52px; stroke: #fff; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.team-card:hover .team-avatar-icon { background: var(--gold); }
.team-card:hover .team-avatar-icon svg { animation: icon-bounce 0.55s cubic-bezier(.36,.07,.19,.97) both; }

/* =========================================
   TREATMENTS SECTION
========================================= */
#treatments { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%); }
.treatments-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.treatment-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition); position: relative;
}
.treatment-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.treatment-card:hover .treatment-img img { transform: scale(1.08); }
.treatment-img { position: relative; height: 220px; overflow: hidden; }
.treatment-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.treatment-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--white); color: var(--green);
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
}
.treatment-body { padding: 24px; }
.treatment-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.treatment-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; }
.treatment-body a {
  font-size: 0.8rem; font-weight: 600; color: var(--green);
  text-decoration: none; letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.treatment-body a:hover { gap: 12px; }
.treatment-card.featured { grid-column: span 3; display: grid; grid-template-columns: 1fr 1.5fr; }
.treatment-card.featured .treatment-img { height: auto; }

/* =========================================
   WHY CHOOSE US
========================================= */
#why { background: var(--green); color: var(--white); position: relative; overflow: hidden; }
#why::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
}
#why .section-tag { color: var(--gold); border-color: var(--gold); }
#why .section-title { color: var(--white); }
#why .section-subtitle { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 60px; position: relative; z-index: 1; }
.why-item {
  text-align: center; padding: 36px 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); transition: all var(--transition);
  position: relative; overflow: hidden;
}
.why-item::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; top: 100%; background: rgba(255,255,255,0.06); transition: top var(--transition); }
.why-item:hover::before { top: 0; }
.why-item:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-6px); }
.why-icon {
  width: 70px; height: 70px; margin: 0 auto 20px;
  background: rgba(255,255,255,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.why-icon svg { transition: stroke 0.3s ease; }
.why-item:hover .why-icon { background: var(--gold); }
.why-item:hover .why-icon svg { stroke: #ffffff; }
.why-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-item p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ==============================================
   BLOG LAYOUT
============================================== */
.aa-blog-wrap {
    padding: 100px 5%;
}

.aa-blog-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.aa-blog-flex {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.aa-blog-main {
    flex: 1;
    min-width: 0; /* prevent flex item from overflowing on long content/images */
}

.aa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* ==============================================
   CARD
============================================== */
.aa-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-color, #e4e1db);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    text-decoration: none !important;
    color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.aa-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 32px rgba(28,97,56,0.13);
    border-color: var(--primary-color, #1c6138);
    text-decoration: none !important;
    color: inherit;
}

/* CARD IMAGE */
.aa-card-img {
    position: relative;
    height: 210px;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-color, #1c6138);
    flex-shrink: 0;
}
.aa-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s ease;
}
.aa-card:hover .aa-card-img img {
    transform: scale(1.06);
}

/* DATE BADGE */
.aa-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary-color, #1c6138);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 14px;
    z-index: 2;
}

/* CARD BODY */
.aa-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

/* TAG PILL — PROMOTIONS / TREATMENTS / ANNOUNCEMENTS */
.aa-tag {
    display: inline-block;
    background: rgba(28, 97, 56, 0.08);
    color: var(--primary-color, #1c6138);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 3px;
    line-height: 1;
    width: fit-content;
}

/* CARD TITLE */
.aa-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 600;
    color: var(--text-heading, #1a1a1a);
    line-height: 1.35;
    margin: 0;
    transition: color 0.3s;
}
.aa-card:hover .aa-card-title {
    color: var(--primary-color, #1c6138);
}

/* EXCERPT */
.aa-card-excerpt {
    font-size: 14px;
    color: var(--text-body, #555);
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==============================================
   SIDEBAR
============================================== */
.aa-sidebar {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.aa-widget {
    display: flex;
    flex-direction: column;
}

/* WIDGET TITLE */
.aa-widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading, #1a1a1a);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 18px;
    padding-bottom: 11px;
    border-bottom: 2px solid var(--border-color, #e4e1db);
    position: relative;
    line-height: 1;
}
.aa-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 38px;
    height: 3px;
    background: var(--primary-color, #1c6138);
}

/* LATEST POSTS */
.aa-latest-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.aa-latest-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-color, #e4e1db);
    border-radius: 8px;
    padding: 10px;
    transition: border-color 0.25s, transform 0.25s;
}
.aa-latest-item:hover {
    border-color: var(--primary-color, #1c6138);
    transform: translateX(4px);
}
.aa-latest-item img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    display: block;
}
.aa-latest-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-heading, #1a1a1a);
    text-decoration: none !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s;
}
.aa-latest-link:hover {
    color: var(--primary-color, #1c6138);
    text-decoration: none !important;
}

/* CATEGORIES & ARCHIVES LIST */
.aa-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border-color, #e4e1db);
    border-radius: 8px;
    overflow: hidden;
}
.aa-sidebar-list li {
    border-bottom: 1px solid var(--border-color, #e4e1db);
}
.aa-sidebar-list li:last-child {
    border-bottom: none;
}
.aa-sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none !important;
    transition: background 0.25s;
}
.aa-sidebar-link:hover {
    background: var(--primary-color, #1c6138);
    text-decoration: none !important;
}
.aa-sidebar-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body, #555);
    transition: color 0.25s;
}
.aa-sidebar-link:hover .aa-sidebar-label {
    color: #fff;
}
.aa-sidebar-count {
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    background: rgba(28, 97, 56, 0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color, #1c6138);
    transition: background 0.25s, color 0.25s;
    flex-shrink: 0;
}
.aa-sidebar-link:hover .aa-sidebar-count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* ==============================================
   PAGINATION — dalam sidebar bawah Archives
============================================== */
.aa-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}
.aa-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    background: var(--bg-card, #ffffff);
    color: var(--text-body, #777);
    border: 1px solid var(--border-color, #e4e1db);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none !important;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    white-space: nowrap;
    box-sizing: border-box;
}
.aa-page-btn:hover {
    background: var(--primary-color, #1c6138);
    color: #fff;
    border-color: var(--primary-color, #1c6138);
    text-decoration: none !important;
}
/* Gold active — sama seperti screenshot */
.aa-page-btn.aa-active {
    background: var(--gold, #c9a227);
    color: var(--text-heading, #1a1a1a);
    border-color: var(--gold, #c9a227);
    font-weight: 800;
}
.aa-page-btn.aa-disabled {
    opacity: 0.35;
    pointer-events: none;
    cursor: default;
}

/* ==============================================
   ARTICLE DETAIL
============================================== */
.aa-detail {
    background: var(--bg-card, #ffffff);
    padding: clamp(20px, 5%, 50px);
    border-radius: 8px;
    border: 1px solid var(--border-color, #e4e1db);
    box-shadow: 0 6px 28px rgba(0,0,0,0.04);
}
.aa-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.aa-accent-line {
    width: 38px;
    height: 3px;
    background: var(--gold, #c9a227);
    flex-shrink: 0;
}
.aa-breadcrumb-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color, #1c6138);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.aa-detail-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--text-heading, #1a1a1a);
    line-height: 1.2;
    margin: 0 0 28px;
}
.aa-detail-img {
    margin-bottom: 34px;
}
.aa-detail-img img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.aa-detail-body {
    font-size: 16px;
    color: var(--text-body, #555);
    line-height: 1.85;
    margin-bottom: 30px;
}
.aa-detail-body p { margin-bottom: 14px; }
.aa-detail-body strong { color: var(--text-heading, #1a1a1a); font-weight: 700; }
.aa-detail-body ul { margin-bottom: 16px; padding-left: 20px; }
.aa-detail-body li { margin-bottom: 8px; }
.aa-back-btn {
    display: inline-block;
    padding: 13px 34px;
    background: var(--primary-color, #1c6138);
    color: #fff;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background 0.3s, transform 0.3s;
    margin-top: 14px;
}
.aa-back-btn:hover {
    background: var(--primary-color-dark, #154d2b);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none !important;
}

/* ==============================================
   RESPONSIVE
============================================== */
@media (max-width: 1024px) {
    .aa-blog-flex    { flex-direction: column; gap: 48px; }
    .aa-blog-main    { order: 1; width: 100%; }
    .aa-sidebar      { order: 2; width: 100%; }
    .aa-pagination   { justify-content: flex-start; }
}
@media (max-width: 768px) {
    .aa-blog-wrap    { padding: 40px 0 70px; }
    .aa-detail-title { font-size: 26px; }
}
@media (max-width: 600px) {
    .aa-grid         { grid-template-columns: 1fr; }
}



/* =============================================
   TREATMENTS GRID VIEW
============================================= */
#view-grid {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
  padding: 100px 5%;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.treatment-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.treatment-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.treatment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.treatment-card:hover .treatment-card-img img {
  transform: scale(1.08);
}

.treatment-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(197, 148, 67, 0.95);
  color: #ffffff;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.treatment-card-footer {
  padding: 30px;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.treatment-card-footer h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #2d2d2d;
  line-height: 1.3;
  font-style: italic;
}

.btn-more-details {
  display: inline-block;
  padding: 14px 32px;
  background: #85b544;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  margin-top: auto;
  width: fit-content;
}

.btn-more-details:hover {
  background: #2c4a35;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 103, 65, 0.3);
}
#view-detail {
  display: none; /* hidden by default */
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
  min-height: 60vh;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero image at top of detail */
.detail-hero {
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.detail-hero img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* Content area */
.detail-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 5% 80px;
}

.detail-tag {
  display: inline-block;
  background: rgba(197, 148, 67, 0.15);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.detail-body h2 {
  font-size: 2.8rem;
  color: #2d2d2d;
  line-height: 1.2;
  margin-bottom: 30px;
}

.detail-body p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 25px;
}

/* Bottom action row: Back + Book */
.detail-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-back:hover {
  background: var(--green);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background: #b8813a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 148, 67, 0.3);
}

/* ===== TREATMENT SINGLE PAGE ===== */

.treatment-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.treatment-single-hero {
  border-radius: 10px;
  overflow: hidden;
}

.treatment-single-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.treatment-single-body {
  display: flex;
  flex-direction: column;
}

/* Title — uppercase kecik atas line */
.treatment-single-body h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a6e5a;
  margin: 0 0 0.75rem 0;   /* rapat dengan line */
  font-family: 'Georgia', serif;
}

/* LINE — rapat bawah title, rapat atas desc */
.treatment-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, #000000, transparent);
  margin: 0 0 0.75rem 0;   /* buang gap besar */
}

/* Short description */
.treatment-single-body > p {
  font-size: 18px;
  color: #3d4a3d;
  line-height: 1.85;
  margin: 0 0 1.25rem 0;
  font-family: 'Georgia', serif;
}

/* Long description (servicelong) */
.treatment-single-body .service-long {
  font-size: 18px;
  color: #5a6050;
  line-height: 1.85;
  font-family: 'Georgia', serif;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid #c8c2b6;
}

@media (max-width: 768px) {
  .treatment-single {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.25rem;
  }

  .treatment-single-body h2 {
    font-size: 26px;
    letter-spacing: 0.08em;
  }

  .treatment-single-body > p,
  .treatment-single-body .service-long {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .treatment-single {
    padding: 1.5rem 1rem;
  }

  .treatment-single-body h2 {
    font-size: 20px;
    letter-spacing: 0.06em;
  }

  .treatment-single-body > p,
  .treatment-single-body .service-long {
    font-size: 15px;
    line-height: 1.75;
  }
}


/* =========================================
   CTA BANNER
========================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--brown) 0%, var(--green) 100%);
  text-align: center; color: var(--white); padding: 90px 5%;
  position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; top: -50%; left: -25%; width: 600px; height: 600px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.cta-banner::after  { content: ''; position: absolute; bottom: -40%; right: -15%; width: 500px; height: 500px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.cta-banner .section-title { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 36px; font-size: 1rem; line-height: 1.8; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }

/* =========================================
   CONTACT SECTION
========================================= */
#contact { background: var(--cream-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; margin-top: 60px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.contact-info-card { display: flex; gap: 16px; align-items: flex-start; background: var(--white); padding: 22px; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); transition: all var(--transition); }
.contact-info-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.contact-icon { width: 46px; height: 46px; flex-shrink: 0; background: var(--green-pale); border-radius: 12px; padding: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all 0.3s ease; }
.contact-info-card:hover .contact-icon { background: #85b545; transform: scale(1.2); }
.contact-info-card h4 { font-size: 0.8rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.95rem; color: var(--text-dark); line-height: 1.5; }
.contact-form { background: var(--white); padding: 44px; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.contact-form p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--green-pale); border-radius: var(--radius-sm); font-family: 'Jost', sans-serif; font-size: 0.9rem; color: var(--text-dark); background: var(--cream-light); transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(61,107,79,0.1); background: var(--white); }
.form-group textarea { height: 130px; resize: vertical; }
.form-success { display: none; background: var(--green-pale); color: var(--green); padding: 16px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; text-align: center; margin-top: 16px; }

/* ── MAP ── */
.map-embed { margin-top: 60px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); height: 350px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }



/* =========================================
   FOOTER
========================================= */
footer { background: var(--text-dark); color: var(--white); }
.footer-top { padding: 70px 5% 50px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .nav-logo-text span:first-child { color: var(--green-light); }
.footer-brand .nav-logo-text span:last-child { color: rgba(255,255,255,0.4); }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin: 16px 0 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.95rem; text-decoration: none; transition: all var(--transition); }
.footer-social:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-col h4 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { padding: 22px 5%; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed; bottom: 36px; right: 36px;
  width: 48px; height: 48px;
  background: var(--green); color: var(--white);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transform: translateY(20px);
  transition: all var(--transition); z-index: 500;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-to-top:hover { background: var(--brown); transform: translateY(-4px) !important; }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
  .hero-content { display: flex; flex-direction: column; align-items: center; padding: 0 5% 40px; max-width: 600px; margin: 0 auto; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }

  #about-preview { flex-direction: column; padding: 80px 5%; gap: 60px; min-height: auto; }
  .about-img-grid { width: 100%; max-width: 500px; height: 450px; }

  .treatments-grid { grid-template-columns: repeat(2,1fr); }
  .treatment-card.featured { grid-column: span 2; grid-template-columns: 1fr; }
  .treatment-card.featured .treatment-img { height: 240px; }

  .why-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .our-story { grid-template-columns: 1fr; gap: 0; padding: 64px 5%; }
}

@media (max-width: 768px) {
  section { padding: 70px 5%; }
  .hero { padding: 120px 5% 60px; }
  .hero-corner-tl, .hero-corner-br { width: 30px; height: 30px; }
  .hero-slide-heading { font-size: 2.4rem; }
  .hero-slide-caption { font-size: 0.85rem; }
  .hero-stat { padding: 0 16px; }
  .hero-stat .num { font-size: 1.7rem; }
  .hero-arrow { width: 40px; height: 40px; }
  .hero-arrow-prev { left: 14px; }
  .hero-arrow-next { right: 14px; }

  .page-hero { min-height: auto; padding: 110px 5% 56px; }
  .page-hero .section-title { font-size: 2.6rem !important; }

  .hero-about .section-title { font-size: 3.2rem !important; }
  .hero-about p { padding-left: 15px; }

  .image-wrapper { padding-bottom: 60px; }
  .stat-box { bottom: 0; right: 0; padding: 16px 22px; }
  .our-story .reveal-left { order: 1; }
  .our-story .reveal-right { order: 2; margin-top: 64px; }

  .treatments-grid { grid-template-columns: 1fr; }
  .treatment-card.featured { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .testimonial-slide { padding: 0 20px; }
  .testimonial-card { padding: 32px 28px; }
  .values-grid { grid-template-columns: 1fr; margin-top: 32px; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 50px 5%; }
  .hero { padding: 100px 4% 50px; }
  .hero-slide-heading { font-size: 2rem; }
  .hero-slide-caption { font-size: 0.8rem; }
  .hero-actions { flex-direction: column; gap: 16px; }
  .hero-stat { padding: 0 12px; }
  .hero-stat .num { font-size: 1.5rem; }
  .hero-stat .label { font-size: 8px; }

  .page-hero { padding: 96px 5% 48px; }
  .page-hero .section-title { font-size: 2rem !important; }
  .section-title { font-size: clamp(1.8rem, 6vw, 3.2rem) !important; }

  #about-preview { padding: 60px 20px; gap: 60px; }
  .about-img-grid { height: 320px; margin: 0 auto; }
  .about-img-grid img:nth-child(1) { width: 80%; height: 85%; }
  .about-img-grid img:nth-child(2) { width: 50%; height: 45%; top: 5%; }
  .about-img-grid img:nth-child(3) { width: 55%; height: 50%; right: -10px; }
  .about-badge { width: 100px; height: 100px; border-width: 4px; left: 50%; }
  .about-badge .num { font-size: 1.5rem; }
  .about-badge .txt { font-size: 0.65rem; }
  .about-feature { flex-direction: column; text-align: center; gap: 12px; }

  .value-card { padding: 24px 18px; }
  .team-card { padding: 28px 18px; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
}

@media (max-width: 320px) {
  .about-img-grid { height: 250px; }
  .about-badge { display: none; }
}