/* =============================================
   QALA AESTHETICS — Global Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Cinzel:wght@400;600&display=swap');

.service-content-wrapper p, ul li, ol li{
color:#000 !important;
}

/* ── DESIGN TOKENS ─────────────────────────── */
:root {
  /* Core Backgrounds */
  --bg-deep: #0F0A03;
  --bg-deep-rgb: 15, 10, 3;
  --bg-dark: #1A1612;
  --bg-dark-rgb: 26, 22, 18;
  --bg-mid: #f6e5d5;
  --bg-ivory: #FAF7F0;
  --bg-cream: #F5EFE0;
  --bg-blush-pink: #FDF8F8;
  --bg-pearl-white: #FFFFFF;
  --bg-pearl-white-rgb: 255, 255, 255;
  --bg-warm-white: var(--bg-blush-pink);

  /* Accents: Luxury Gold and Bronze */
  --gold-primary: #c5a367;
  --gold-primary-rgb: 197, 163, 103;
  --gold-light: #dfc491;
  --gold-dark: #a67c33;
  --gold-muted: #d4b08c;
  --rose-gold: #b76e79;
  --gradient-interactive: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));

  /* Typography Colors */
  --text-burgundy: #2a1b0a;
  --text-burgundy-rgb: 42, 27, 10;
  --text-charcoal: #1a1a1a;
  --text-ivory: #f7e5d5;
  --text-muted-gold: #851c2c;

  /* Logical Mappings */
  --text-dark: var(--text-burgundy);
  --text-mid: var(--text-charcoal);
  --text-gold: var(--gold-primary);

  /* Typography & Layout */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-editorial: 'Cormorant Garamond', serif;
  --font-ui: 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Cinzel', serif;
  --container-max: 1280px;
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.3s;
  --duration-mid: 0.6s;
  --duration-slow: 1.0s;

  /* Effects */
  --gold-glow: 0 0 30px rgba(var(--gold-primary-rgb), 0.3);
  --card-shadow: 0 20px 60px rgba(var(--bg-deep-rgb), 0.1);
  --shadow-premium: 0 20px 50px rgba(var(--bg-deep-rgb), 0.05), 0 5px 15px rgba(var(--bg-deep-rgb), 0.02);
  --border-hairline: 1px solid rgba(var(--gold-primary-rgb), 0.15);
}

/* ── RESET ─────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-warm-white);
  color: var(--text-ivory);
  overflow-x: hidden;
  line-height: 1.9;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ── TYPOGRAPHY ────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  /* Bolder for premium look */
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 24px;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 24px 0;
}

.gold-divider.centered {
  margin: 1px auto;
}

/* ── LAYOUT ────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

/* ── BUTTONS ───────────────────────────────── */
.btn-primary {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px 48px;
  background: var(--gradient-interactive);
  color: var(--bg-pearl-white);
  border: 1px solid rgba(183, 110, 121, 0.4);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-luxury);
  display: inline-block;
  box-shadow: 0 10px 30px rgba(183, 110, 121, 0.15);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 158, 0.8), var(--gold-primary));
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 42px;
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  cursor: pointer;
  transition: all 0.4s var(--ease-luxury);
  display: inline-block;
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: var(--text-dark);
}

.btn-outline.ivory {
  color: var(--text-ivory);
  border-color: var(--text-ivory);
}

.btn-outline.ivory:hover {
  background: var(--text-ivory);
  color: var(--bg-ivory);
}

/* ── SCROLL REVEAL ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================
   SECTION 01 — NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  /* Changed to fixed for better overlay effect */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 30px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease-luxury);
  background: linear-gradient(to bottom, rgba(var(--bg-deep-rgb), 0.6) 0%, transparent 100%);
  backdrop-filter: none;
  /* Removed blur for cleaner SS look */
}

.nav.scrolled {
  padding: 15px 80px;
  background: rgba(var(--bg-deep-rgb), 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Scrolled state moved above */

.nav-logo {
  display: block;
  height: 160px;
  /* Increased for premium presence */
  transition: all 0.4s var(--ease-luxury);
}

.nav-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.nav.scrolled .nav-logo {
  height: 110px;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bg-pearl-white);
  /* White for dark nav */
  position: relative;
  transition: all 0.4s var(--ease-luxury);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width 0.3s var(--ease-luxury);
}

.nav-links a:hover {
  color: var(--gold-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 11px !important;
  padding: 12px 28px !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-primary);
  transition: all 0.3s;
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-pearl-white);
  /* Pure white as in SS 2 */
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 0 60px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-luxury);
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Aligned left as in SS 2 */
  gap: 32px;
  width: 80%;
  max-width: 400px;
}

.nav-overlay-links a {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-burgundy);
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s var(--ease-luxury);
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-overlay.open .nav-overlay-links a {
  opacity: 1;
  transform: translateX(0);
}

/* Delay for stagger effect */
.nav-overlay-links a:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-overlay-links a:nth-child(2) {
  transition-delay: 0.2s;
}

.nav-overlay-links a:nth-child(3) {
  transition-delay: 0.3s;
}

.nav-overlay-links a:nth-child(4) {
  transition-delay: 0.4s;
}

.nav-overlay-links a:nth-child(5) {
  transition-delay: 0.5s;
}

.nav-overlay-links a:nth-child(6) {
  transition-delay: 0.6s;
}

.nav-idx {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-primary);
  margin-right: 20px;
  letter-spacing: 2px;
  opacity: 0.8;
}

.nav-overlay-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2001;
}

.nav-overlay-close::before,
.nav-overlay-close::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 1px;
  background: var(--gold-dark);
}

.nav-overlay-close::before {
  transform: rotate(45deg);
}

.nav-overlay-close::after {
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .nav {
    padding: 30px 24px;
    min-height: 100px;
  }

  .nav.scrolled {
    padding: 16px 24px;
    min-height: 70px;
  }

  .nav.scrolled .nav-logo {
    height: 48px;
  }

  .nav-logo {
    height: 75px;
    /* Highlighting logo on mobile */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .hamburger {
    display: flex;
    margin-left: auto;
    /* Push to right */
    position: relative;
    z-index: 1001;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* =============================================
   SECTION 02 — LUXURY HERO
   ============================================= */
.hero-luxury {
  min-height: 100vh;
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--bg-deep);
  padding: 60px 0 40px;
  /* Reduced top padding, kept some bottom */
  /* Deep base color */
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-image-desk.jpeg');
  /* Verified: Correct Hero Image */
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  /* Start slightly zoomed for Ken Burns */
  animation: kenBurns 30s ease-in-out infinite alternate;
}

@media (max-width: 768px) {
  .hero-bg-image {
    background-image: url('images/hero-image-moible.jpeg');
    animation: kenBurnsMobile 30s ease-in-out infinite alternate;
  }
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(var(--bg-deep-rgb), 0.8) 0%,
      rgba(var(--bg-deep-rgb), 0.4) 40%,
      rgba(var(--bg-deep-rgb), 0.1) 100%);
  z-index: 2;
}


.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  margin-top: 10rem;
}

@media (max-width: 768px) {
  .hero-gradient-overlay {
    background: linear-gradient(to bottom,
        rgba(var(--bg-deep-rgb), 0.7) 0%,
        rgba(var(--bg-deep-rgb), 0.3) 50%,
        rgba(var(--bg-deep-rgb), 0.8) 100%);
  }
  .hero-layout{margin-top: 1rem;}
}

.hero-content {
  flex: 1;
  max-width: 600px;
  color: var(--bg-pearl-white);
}

@media (max-width: 1024px) {
  .hero-layout {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
    /* Reduced from 120px */
    gap: 15px;
    /* Slightly reduced gap between content and form */
  }

  .hero-content {
    margin: 0 auto;
  }
}

.hero-pre-title {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gold-primary);
  margin-bottom: 15px;
  /* Reduced from 24px */
  text-transform: uppercase;
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  /* Reduced from 84px to fit form */
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 10px;
  /* Reduced from 24px */
  letter-spacing: -1.5px;
  color: var(--bg-pearl-white);
}

.hero-main-title .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero-description {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .hero-description {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    /* Reduced from 32px */
    font-size: 15px;
  }
}

/* Luxury Buttons */
.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    /* Reduced gap */
    margin-bottom: 10px;
    /* Added to reduce space before form */
  }
}

.btn-hero-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-primary);
  color: var(--bg-pearl-white);
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 350;
  letter-spacing: 2px;
  transition: all 0.4s var(--ease-luxury);
  border: 1px solid var(--gold-primary);
}

.btn-hero-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--bg-pearl-white);
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s var(--ease-luxury);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--bg-pearl-white);
  transform: translateY(-5px);
}

.hero-whatsapp {
  margin-top: 4px;
  /* Increased margin to avoid overlap */
}

.hero-whatsapp a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  /* Increased opacity for better visibility */
  transition: color 0.3s;
}

.hero-whatsapp a:hover {
  color: #25D366;
  /* WhatsApp Green */
}

/* ── HERO FORM CARD ────────────────────── */
.hero-form-wrapper {
  flex: 0 0 420px;
  max-width: 100%;
}

.hero-form-card {
  background: rgba(var(--bg-dark-rgb), 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 4px;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.hero-form-title {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--gold-light);
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: 0.4px;
}

.hero-appointment-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-input-group {
  position: relative;
}

.hero-appointment-form input,
.hero-appointment-form select,
.hero-appointment-form textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  transition: all 0.3s ease;
}

.hero-appointment-form input::placeholder,
.hero-appointment-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero-appointment-form input:focus,
.hero-appointment-form select:focus,
.hero-appointment-form textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.1);
}

.hero-appointment-form select option {
  background: var(--bg-dark);
  color: #fff;
}

.phone-input-container {
  display: flex;
  gap: 0;
}

.country-code {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  border-radius: 4px 0 0 4px;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}

.phone-input-container input {
  border-radius: 0 4px 4px 0;
}

.btn-form-submit {
  background: var(--gold-primary);
  color: #fff;
  padding: 15px;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-top: 10px;
  transition: all 0.4s var(--ease-luxury);
  border: 1px solid var(--gold-primary);
  cursor: pointer;
}

.btn-form-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .hero-form-wrapper {
    flex: none;
    width: 100%;
    max-width: 380px;
    /* Reduced from 450px */
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-form-card {
    padding: 20px 20px;
    /* Reduced from 30px */
  }

  .hero-form-title {
    font-size: 15px;
    /* Reduced from 20px */
    margin-bottom: 10px;
  }

  .hero-appointment-form {
    gap: 7px;
    /* Reduced gap */
  }

  .hero-appointment-form input,
  .hero-appointment-form select,
  .hero-appointment-form textarea {
    padding: 8px 10px;
    /* Slimmer inputs */
    font-size: 11px;
  }

  .btn-form-submit {
    padding: 12px;
    font-size: 12px;
  }
}

/* Scroll Indicator */
.scroll-indicator-luxury {
  position: absolute;
  bottom: 40px;
  left: 80px;
  /* Aligned with container padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

@media (max-width: 768px) {
  .scroll-indicator-luxury {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    /* Moved lower */
    opacity: 0.6;
    /* More subtle on mobile */
  }

  .scroll-indicator-luxury .scroll-line {
    height: 40px;
    /* Shorter line on mobile */
  }
}

.scroll-indicator-luxury .scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-indicator-luxury .scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-pearl-white);
  animation: scrollLineAnim 2s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
}

.scroll-indicator-luxury .scroll-text {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-lr;
}

/* Animations */
@keyframes kenBurns {
  0% {
    transform: scale(1.1) translate(0, 0);
  }

  100% {
    transform: scale(1.2) translate(-2%, -2%);
  }
}

@keyframes kenBurnsMobile {
  0% {
    transform: scale(1.1) translate(0, 0);
  }

  100% {
    transform: scale(1.3) translate(-1%, -1%);
  }
}

@keyframes scrollLineAnim {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

/* =============================================
   SECTION 03 — MARQUEE + PHILOSOPHY
   ============================================= */
.marquee-strip {
  background: var(--gold-primary);
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-strip:hover .marquee-inner {
  animation-play-state: paused;
}

.marquee-item {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bg-deep);
  padding: 0 32px;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

/* =============================================
   SECTION 03 — ABOUT THE FOUNDER
   ============================================= */
.about-founder {
  background: var(--bg-ivory);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.about-founder .container {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 100px;
  align-items: flex-start;
}

/* Image Framing */
.about-photo-frame {
  position: relative;
  width: 100%;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  filter: contrast(1.05);
  box-shadow: 20px 20px 60px rgba(var(--bg-deep-rgb), 0.1);
  position: relative;
  z-index: 2;
}

.about-photo-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold-primary);
  border-radius: 4px;
  z-index: 1;
}

.photo-accent-tag {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--gold-primary);
  color: var(--bg-pearl-white);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  z-index: 3;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

/* Content & Typography */
.about-sub-headline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 20px;
  color: var(--text-muted-gold);
  margin-top: -4px;
  margin-bottom: 24px;
}

.bio-para {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.bio-para strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Specialties Card */
.about-expertise-card {
  background: rgba(225, 179, 130, 0.05);
  border: 1px solid rgba(var(--gold-primary-rgb), 0.15);
  padding: 40px;
  margin: 40px 0;
  border-radius: 4px;
}

.about-expertise-card h4 {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.spec-item {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Case Study Gallery — Premium Redesign */
.patient-gallery-container {
  position: relative;
  padding: 100px 0;
  margin-top: 50px;
}

.gallery-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/gallery-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.gallery-heading {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--text-burgundy);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.patient-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--bg-deep);
  border: 1px solid rgba(var(--gold-primary-rgb), 0.1);
  transition: all 0.6s var(--ease-luxury);
  cursor: pointer;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-luxury);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--text-burgundy-rgb), 0.8), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: all 0.5s var(--ease-luxury);
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(var(--text-burgundy-rgb), 0.15);
  border-color: rgba(var(--gold-primary-rgb), 0.4);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-cat {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 5px;
  transform: translateY(10px);
  transition: all 0.5s var(--ease-luxury) 0.1s;
}

.gallery-sessions {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--bg-pearl-white);
  transform: translateY(10px);
  transition: all 0.5s var(--ease-luxury) 0.2s;
}

.gallery-item:hover .gallery-cat,
.gallery-item:hover .gallery-sessions {
  transform: translateY(0);
}

/* Vision Block */
.about-vision-block {
  padding-left: 40px;
  border-left: 2px solid var(--gold-primary);
  margin-top: 60px;
}

.about-vision-block blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.vision-signature {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  display: block;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
  .about-founder .container {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .about-founder {
    padding: 80px 24px;
  }

  .about-founder .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-photo-frame {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-vision-block {
    padding-left: 24px;
  }

  .about-vision-block blockquote {
    font-size: 20px;
  }

  .specialties-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   SECTION 04 — SERVICES
   ============================================= */
.services {
  background: var(--bg-deep);
  margin: 30px 0 0;
}

.services .section-header {
  text-align: center;
  padding-bottom: 34px;
  background: var(--bg-mid);
}

.services .section-header h2 {
  font-size: 44px;
  color: var(--text-burgundy);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  border: var(--border-hairline);
  cursor: pointer;
  background: var(--bg-deep);
  transition: all 0.6s var(--ease-luxury);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: var(--gold-primary);
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-luxury);
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 252, 247, 0.8) 0%, rgba(255, 252, 247, 0.2) 60%, transparent 100%);
  transition: background 0.4s;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(255, 252, 247, 0.7) 0%, rgba(255, 252, 247, 0.1) 60%, transparent 100%);
}

.service-card-numeral {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-accent);
  font-size: 48px;
  opacity: 0.12;
  color: var(--gold-primary);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
}

.service-card-cat {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--text-muted-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: black;
  margin-bottom: 12px;
}

.service-card-list {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-muted-gold);
  margin-bottom: 16px;
}

.service-card-link {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-muted-gold);
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.service-card-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width 0.3s;
}

.service-card:hover .service-card-link::after {
  width: 100%;
}

.stats-row {
  background: var(--bg-mid);
  padding: 40px 80px;
  display: flex;
  justify-content: center;
  gap: 80px;
  text-align: center;
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 35px;
  color: var(--text-burgundy);
  line-height: 1;
}

.stat-item .stat-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-mid);
  text-transform: uppercase;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .services .section-header {
    padding: 0 24px 40px;
  }

  .services .section-header h2 {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 320px;
  }

  .stats-row {
    padding: 40px 24px;
    gap: 32px;
    flex-wrap: wrap;
  }

  .stat-item .stat-num {
    font-size: 40px;
  }
}

/* =============================================
   SECTION 05 — APP-LIKE TREATMENTS SLIDER
   ============================================= */
.app-treatments {
  background: var(--bg-ivory);
  padding: 120px 0 80px;
  overflow: hidden;
}

.app-treatments .section-header {
  text-align: center;
  padding: 0 80px 40px;
}

.app-treatments .section-header h2 {
  font-size: 42px;
  color: var(--text-dark);
}

.app-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 80px;
  gap: 24px;
  padding: 0 80px 40px;
  -webkit-overflow-scrolling: touch;
}

.app-slider::-webkit-scrollbar {
  display: none;
}

.app-card {
  flex: 0 0 calc((100% - 72px) / 4);
  scroll-snap-align: start;
  position: relative;
  height: 480px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: var(--border-hairline);
  transition: all 0.6s var(--ease-luxury);
  background: var(--bg-deep);
}

.app-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.app-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.app-card:hover img {
  transform: scale(1.05);
}

.app-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(227, 93, 151, 0.95) 0%, rgba(227, 93, 151, 0) 100%);
  pointer-events: none;
}

.app-card-title {
  position: absolute;
  bottom: 32px;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--bg-pearl-white);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  z-index: 2;
  margin: 0;
  padding: 0 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .app-slider {
    scroll-padding: 0 40px;
    padding: 0 40px 40px;
  }

  .app-card {
    flex: 0 0 calc((100% - 48px) / 3);
  }
}

@media (max-width: 768px) {
  .app-treatments {
    padding: 80px 0 60px;
  }

  .app-treatments .section-header {
    padding: 0 24px 32px;
  }

  .app-treatments .section-header h2 {
    font-size: 32px;
  }

  .app-slider {
    scroll-padding: 0 24px;
    padding: 0 24px 20px;
    gap: 16px;
    /* Added to ensure edge snappability */
  }

  .app-card {
    flex: 0 0 80vw;
    scroll-snap-align: center;
    height: 400px;
  }
}

/* =============================================
   SECTION 06 — BEFORE & AFTER
   ============================================= */
.before-after {
  background: var(--bg-ivory);
  padding: 120px 0;
}

.before-after .section-header {
  text-align: center;
  padding: 0 80px 40px;
}

.before-after .section-header h2 {
  font-size: 42px;
  color: var(--text-dark);
}

.before-after .section-header .disclaimer {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted-gold);
  margin-top: 8px;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 0 80px;
}

.filter-tab {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.4);
  color: var(--text-mid);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--gold-primary);
  color: var(--bg-deep);
  border-color: var(--gold-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 80px;
}

.ba-card {
  background: #fffcf7;
  border: 1px solid rgb(255 132 0 / 53%);
  overflow: hidden;
  border-radius: 4px;
  transition: opacity 0.4s, transform 0.4s;
}

/* =============================================
   SECTION 06 — REAL PATIENT RESULTS
   ============================================= */
.results-section {
  position: relative;
  padding: 30px 0;
  overflow: hidden;
  background-color: #ffe8b39a;
}

.results-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('images/transformations-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.30;
  /* Softened further */
  z-index: 1;
  animation: kenBurns 40s linear infinite alternate;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  /* Prevents hard edges and bleed */
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.results-section .container {
  position: relative;
  z-index: 2;
}

.results-section .section-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 80px;
}

.results-section .disclaimer {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted-gold);
  margin-top: 8px;
}

/* Featured BA Slider */
.featured-ba {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 0;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(var(--gold-primary-rgb), 0.2);
  border-radius: 30px;
  padding: 0;
  margin: 0 auto 100px;
  max-width: 1100px;
  box-shadow: 0 40px 100px rgba(var(--text-burgundy-rgb), 0.08);
  overflow: hidden;
}

.featured-ba-content {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
}

.treatment-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.treatment-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.treatment-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 25px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(var(--gold-primary-rgb), 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  width: fit-content;
}

.trust-badge i {
  color: var(--gold-primary);
}

/* BA Slider Base Styles (Reused & Enhanced) */
.ba-slider {
  position: relative;
  height: 550px;
  overflow: hidden;
  cursor: ew-resize;
}

.featured-slider {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after {
  clip-path: inset(0 50% 0 0);
}

.ba-label {
  position: absolute;
  bottom: 20px;
  background: rgba(var(--bg-deep-rgb), 0.6);
  backdrop-filter: blur(4px);
  color: var(--bg-pearl-white);
  padding: 6px 16px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 20px;
  z-index: 6;
}

.ba-label.left {
  left: 20px;
}

.ba-label.right {
  right: 20px;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 15px rgba(166, 124, 51, 0.4);
}

.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  /* Diamond shape */
  width: 44px;
  height: 44px;
  background: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(166, 124, 51, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.ba-handle-circle i {
  transform: rotate(-45deg);
  /* Counter-rotate icon */
  color: var(--bg-pearl-white);
  font-size: 14px;
}

justify-content: center;
font-size: 14px;
color: var(--white);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

/* Patient Gallery Masonry */
.patient-gallery-container {
  padding: 0 80px;
}

.gallery-heading {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 32px;
  text-align: center;
}

.patient-gallery {
  column-count: 3;
  column-gap: 24px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-deep);
  box-shadow: var(--card-shadow);
  transition: all 0.5s var(--ease-luxury);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.8s var(--ease-luxury);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(183, 110, 121, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-cat {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--bg-pearl-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-sessions {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.patient-results-swiper {
  overflow: hidden;
  padding: 8px 0 46px;
}

.patient-results-swiper .swiper-slide {
  height: auto;
}

.result-image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.patient-results-swiper .gallery-item {
  aspect-ratio: 1;
  height: auto;
  margin-bottom: 0;
  background: rgba(255, 252, 247, 0.86);
  border: 1px solid rgba(var(--gold-primary-rgb), 0.16);
}

.patient-results-swiper .gallery-item img {
  padding: 10px;
  object-fit: contain;
}

.patient-results-pagination {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

/* Premium CTA Poster Card */
.premium-cta-poster {
  max-width: 1550px;
  margin: 50px auto;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  background: #1a1510;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition-delay: 0s !important;
}

.poster-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 21, 16, 0.95) 40%, rgba(26, 21, 16, 0.5) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.poster-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 100px;
  gap: 60px;
}

.poster-left {
  flex: 1;
  text-align: left;
}

.poster-left h2 {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--bg-pearl-white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.poster-left p {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  line-height: 1.6;
}

.poster-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.btn-poster {
  background: var(--gradient-interactive);
  color: var(--bg-pearl-white);
  padding: 22px 48px;
  border-radius: 12px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s var(--ease-luxury);
  box-shadow: 0 10px 30px rgba(166, 124, 51, 0.3);
  text-decoration: none;
}

.btn-poster:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(166, 124, 51, 0.5);
}

.poster-phone {
  font-family: var(--font-ui);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
}

.poster-phone span {
  color: var(--bg-pearl-white);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .premium-cta-poster {
    margin: 60px 24px;
    border-radius: 24px;
  }

  .poster-content {
    flex-direction: column;
    text-align: center;
    padding: 60px 40px;
    gap: 40px;
  }

  .poster-left {
    text-align: center;
  }

  .poster-left h2 {
    font-size: 36px;
  }

  .poster-left p {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }
}

/* Mobile Transformations */
@media (max-width: 1024px) {
  .featured-ba {
    margin: 0 40px 60px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .patient-gallery-container {
    padding: 0 40px;
  }

  .patient-gallery {
    column-count: 2;
  }

  .result-image-pair {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .results-section {
    padding: 80px 0;
  }

  .results-section .section-header {
    padding: 0 24px 32px;
  }

  .featured-ba {
    margin: 0 24px 48px;
    padding: 24px;
  }

  .treatment-title {
    font-size: 26px;
  }

  .ba-slider {
    height: 320px;
  }

  .patient-gallery-container {
    padding: 0 0 40px 24px;
    /* Left padding for edge scroll */
  }

  .gallery-heading {
    text-align: left;
    padding-right: 24px;
    padding-top: 15px;
  }

  /* Transform Masonry to Horizontal Swipe for Mobile */
  .patient-gallery {
    display: flex;
    column-count: auto;
    /* Reset column count */
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-right: 24px;
    -webkit-overflow-scrolling: touch;
  }

  .patient-gallery::-webkit-scrollbar {
    display: none;
  }

  .gallery-item {
    flex: 0 0 75vw;
    scroll-snap-align: center;
    margin-bottom: 0;
    height: 350px;
  }

  .gallery-item img {
    height: 100%;
    object-fit: cover;
  }

  .patient-results-swiper {
    padding: 0 24px 36px 0;
  }

  .result-image-pair {
    gap: 10px;
  }

  .patient-results-swiper .gallery-item {
    flex: initial;
    aspect-ratio: 1;
    height: auto;
    scroll-snap-align: unset;
  }

  .patient-results-swiper .gallery-item img {
    object-fit: contain;
  }

  .gallery-overlay {
    opacity: 1;
    /* Always visible on mobile for better accessibility */
    background: linear-gradient(to top, rgba(183, 110, 121, 0.7) 0%, transparent 40%);
  }

  .ba-cta {
    margin-top: 40px;
    padding: 40px 24px;
  }
}

/* SECTION 07 — CLINICAL AUTHORITY (REMOVED) */

/* =============================================
   SECTION 08 — TESTIMONIALS
   ============================================= */
.testimonials {
  position: relative;
  padding: 30px 0;
  background: #d5c2a5e3;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.35;

}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.review-card {
  background: var(--bg-cream);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 50px 40px;
  border-radius: 32px;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.1);
  box-shadow: 0 20px 40px rgba(var(--text-burgundy-rgb), 0.03);
  position: relative;
  transition: all 0.4s var(--ease-luxury);
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.review-card:hover {
  transform: translateY(-10px);
  background: var(--bg-cream);
  box-shadow: 0 30px 60px rgba(var(--text-burgundy-rgb), 0.08);
}

.card-quote-icon {
  position: absolute;
  top: 20px;
  right: 40px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold-primary);
  opacity: 0.1;
  line-height: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.stars-gold {
  color: var(--gold-primary);
  font-size: 14px;
  letter-spacing: 4px;
}

.verified-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 125, 50, 0.05);
  color: #2e7d32;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.review-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 40px;
  flex-grow: 1;
}

.review-footer {
  border-top: 1px solid rgba(var(--text-burgundy-rgb), 0.05);
  padding-top: 25px;
}

.patient-info {
  display: flex;
  flex-direction: column;
}

.patient-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.patient-loc {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-muted-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.reviews-cta {
  margin-top: 60px;
  text-align: center;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--bg-pearl-white);
  border: 1px solid rgba(var(--text-burgundy-rgb), 0.1);
  border-radius: 100px;
  color: var(--text-dark);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-google:hover {
  background: var(--bg-deep);
  color: var(--bg-pearl-white);
  border-color: var(--bg-deep);
}

@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 24px;
  }

  .review-card {
    padding: 40px 30px;
  }
}

.testimonials {
  background: ;
  padding: 30px 0;
}

.testimonial-slider-container {
  overflow: visible;
  padding: 20px 0;
}

.testimonial-scroller {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--bg-cream);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(227, 93, 151, 0.08);
  /* Soft Rose Gold shadow */
  border: 1px solid rgba(227, 93, 151, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-luxury);
}

.review-card:hover {
  transform: translateY(-8px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(46, 204, 113, 0.1);
  color: #27AE60;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 32px;
  flex-grow: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 24px;
}

.patient-avatar {
  width: 44px;
  height: 44px;
  background: var(--rose-gold);
  color: var(--bg-pearl-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.patient-meta {
  display: flex;
  flex-direction: column;
}

.patient-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.patient-location {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted-gold);
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
  .doctor-profile-block {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
    margin: 0 40px;
  }

  .doctor-photo-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .testimonial-scroller {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
  }
}

@media (max-width: 768px) {

  .testimonials {
    padding: 80px 0;
  }


  .testimonial-scroller {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 24px 20px;
    scrollbar-width: none;
    /* Firefox */
  }

  .testimonial-scroller::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
  }

  .review-card {
    flex: 0 0 85vw;
    scroll-snap-align: center;
  }
}

.stars-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}

.star {
  color: var(--gold-primary);
  font-size: 20px;
}

.rating-badge {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.testimonials .section-header h2 {
  font-size: 42px;
  color: var(--text-dark);
}

.testimonials-swiper {
  padding: 0 80px 60px !important;
  position: relative;
}

.testimonial-card {
  background: var(--bg-ivory);
  border: var(--border-hairline);
  padding: 40px;
  transition: all 0.5s var(--ease-luxury);
  height: auto;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-premium);
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--gold-light);
  opacity: 0.4;
  line-height: 0;
  margin-bottom: 24px;
  display: block;
}

.testimonial-text {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 32px;
  letter-spacing: 0.1px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: var(--bg-deep);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.testimonial-treatment {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-stars span {
  font-size: 12px;
  color: var(--gold-primary);
}

.reviews-cta {
  text-align: center;
  padding-top: 20px;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  padding: 14px 28px;
  transition: all 0.3s;
}

.btn-google:hover {
  background: var(--gold-primary);
  color: var(--bg-deep);
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials .section-header {
    padding: 0 24px 40px;
  }

  .testimonials-swiper {
    padding: 0 24px 40px !important;
  }
}

/* =============================================
   SECTION 09 — WHY CHOOSE QALA
   ============================================= */
.why-qala {
  position: relative;
  padding: 30px 0;
  background: #e1c5a07d;
  overflow: hidden;
}

.why-qala-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--gold-primary) 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  opacity: 0.35;
}

.why-intro-p {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
}

.why-grid-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.1);
  position: relative;
  transition: all 0.5s var(--ease-luxury);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.pillar-card:hover {
  transform: scale(1.05);
}

.pillar-card h4 {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3f2007;
  margin-bottom: 16px;
  line-height: 1.4;
}

.pillar-card p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #493a20;
}

/* Conclusion Block */
.why-conclusion-block {
  margin-top: 100px;
  text-align: center;
  padding: 60px 40px;
  background: rgba(225, 179, 130, 0.03);
  border: 1px solid rgba(var(--gold-primary-rgb), 0.1);
  border-radius: 8px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.mission-icon {
  font-size: 24px;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

.mission-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  line-height: 1.4;
  color: var(--text-ivory);
  letter-spacing: -0.5px;
}

@media (max-width: 1200px) {
  .why-grid-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-qala {
    padding: 80px 24px;
  }

  .why-intro-p {
    font-size: 16px;
  }

  .why-grid-pillars {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
  }

  .mission-text {
    font-size: 24px;
  }

  .why-conclusion-block {
    margin-top: 60px;
    padding: 40px 24px;
  }
}

/* =============================================
   SECTION 10 — BLOG
   ============================================= */
.blog {
  background: #f4e0cccc;
  padding: 30px 15px;
}

.blog .section-header {
  margin-bottom: 48px;
}

.blog .section-header h2 {
  font-size: 42px;
  color: var(--text-dark);
}

.blog .section-header p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-muted-gold);
  margin-top: 12px;
  max-width: 600px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.blog-card {
  background: var(--bg-cream);
  border: 1px solid rgba(153, 113, 3, 0.918);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s var(--ease-luxury);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(var(--bg-deep-rgb), 0.12);
  border-color: var(--gold-primary);
}

.blog-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold-primary);
  color: var(--bg-pearl-white);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
}

.blog-body {
  padding: 24px;
}

.blog-read-time {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-excerpt {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted-gold);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-date {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-muted-gold);
}

.blog-readmore {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--gold-primary);
  letter-spacing: 1px;
}

.newsletter-strip {
  background: var(--bg-cream);
  padding: 60px;
  text-align: center;
}

.newsletter-icon {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--gold-primary);
}

.newsletter-strip h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.newsletter-strip p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted-gold);
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid var(--gold-dark);
  border-right: none;
  padding: 14px 20px;
  font-family: var(--font-ui);
  font-size: 13px;
  background: transparent;
  color: var(--text-dark);
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--text-muted-gold);
}

.newsletter-success {
  display: none;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .blog {
    padding: 60px 24px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-strip {
    padding: 40px 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-right: 1px solid var(--gold-dark);
    border-bottom: none;
  }
}

/* =============================================
   SECTION 11 — BOOKING
   ============================================= */
/* =============================================
   SECTION 11 — BOOKING (Quiet Luxury Reform)
   ============================================= */
.booking {
  background: var(--text-ivory);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.booking-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--bg-blush-pink);
  z-index: 1;
}

.booking .container {
  position: relative;
  z-index: 2;
  background: #f7ece2;
  border-radius: 20px;
  padding: 20px;

}

.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

/* Left Column: Visuals & Concierge */
.booking-visuals {
  position: relative;
}

.booking-image-frame {
  position: relative;
  border-radius: 200px 200px 0 0;
  /* Elegant Arch */
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  aspect-ratio: 4/5;
  background: #f0f0f0;
  /* Fallback */
}

.booking-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease-luxury);
}

.booking-image-frame:hover img {
  transform: scale(1.05);
}

.concierge-card {
  position: absolute;
  bottom: -40px;
  right: -40px;
  background: #1A1A1A;
  padding: 40px;
  color: var(--bg-pearl-white);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  border-left: 4px solid var(--gold-primary);
  z-index: 5;
}

.concierge-title {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
  display: block;
}

.concierge-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.concierge-item {
  display: flex;
  gap: 15px;
}

.concierge-icon {
  color: var(--gold-primary);
  font-size: 16px;
  margin-top: 4px;
}

.concierge-text h4 {
  font-family: var(--font-ui);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.concierge-text p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--bg-pearl-white);
  line-height: 1.6;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-primary);
  color: white;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 28px;
  margin-top: 24px;
  transition: all 0.3s var(--ease-luxury);
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Right Column: Form */
.booking-form-wrap {
  padding-left: 20px;
}

.booking-form-header {
  margin-bottom: 50px;
}

.booking-form-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 15px;
  color: var(--text-dark);
}

.booking-form-header p {
  color: var(--text-charcoal);
  opacity: 0.7;
  font-size: 17px;
  line-height: 1.6;
}

.luxury-form .form-group {
  position: relative;
  margin-bottom: 35px;
}

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-charcoal);
  outline: none;
  transition: all 0.3s var(--ease-luxury);
  border-radius: 0;
}

.luxury-form .form-label {
  position: absolute;
  top: 15px;
  left: 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  transition: all 0.3s var(--ease-luxury);
}

.luxury-form input:focus~.form-label,
.luxury-form input:not(:placeholder-shown)~.form-label,
.luxury-form select:focus~.form-label,
.luxury-form select:valid~.form-label,
.luxury-form textarea:focus~.form-label,
.luxury-form textarea:not(:placeholder-shown)~.form-label {
  top: -10px;
  font-size: 10px;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
  border-bottom-color: var(--gold-primary);
}

.luxury-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.luxury-form .btn-submit {
  width: 100%;
  margin-top: 20px;
  border-radius: 0;
}

.form-footer-note {
  margin-top: 25px;
  text-align: center;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 2px;
  font-family: var(--font-ui);
  font-weight: 600;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success-icon {
  font-size: 54px;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.form-success p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-charcoal);
  opacity: 0.8;
  line-height: 1.8;
}

/* Map Rework */
.map-section {
  padding: 100px 0;
  background: var(--text-ivory);
}

.map-container-outer {
  position: relative;
  padding: 20px;
}

.map-frame-accent {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid var(--gold-primary);
  z-index: 1;
}

.map-frame-accent.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.map-frame-accent.bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.map-container {
  height: 500px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  filter: grayscale(1) contrast(1.1) brightness(0.9);
  transition: all 0.6s var(--ease-luxury);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container:hover {
  filter: grayscale(0.2) contrast(1) brightness(1);
  transform: translateY(-5px);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1024px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 120px;
  }

  .booking-visuals {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .booking {
    padding: 80px 0;
  }

  .booking-bg-accent {
    display: none;
  }

  .booking-grid {
    gap: 60px;
  }

  .booking-image-frame {
    border-radius: 150px 150px 0 0;
  }

  .concierge-card {
    position: relative;
    bottom: 0;
    right: 0;
    max-width: 100%;
    margin-top: -60px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 30px;
  }

  .luxury-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .map-section {
    padding-bottom: 80px;
  }

  .map-container {
    height: 300px;
  }
}

/* =============================================
   SECTION 12 — FOOTER
   ============================================= */
.footer {
  background: #1A1612;
  border-top: 1px solid rgba(var(--gold-primary-rgb), 0.15);
  position: relative;
  overflow: hidden;
}

.footer-shimmer {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  animation: shimmerLine 3s linear infinite;
  background-size: 200% 100%;
}

@keyframes shimmerLine {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.footer-top {
  padding: 80px 80px 0;
  text-align: center;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 32px;
}

.footer-logo img {
  height: 120px;
  width: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 60px 80px 40px;
}

.footer-col-title {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-about-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gold-primary);
  line-height: 1.8;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(248 213 0);
  font-size: 14px;
  transition: 0.3s;
  text-decoration: none;
  background: rgb(0 0 0 / 82%);
}

.social-icon:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--bg-deep);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gold-primary);
  line-height: 2.2;
  transition: all 0.3s;
  padding-left: 0;
  border-bottom: 1px solid transparent;
  width: fit-content;
  opacity: 0.9;
}

.footer-links a:hover {
  color: var(--gold-primary);
  border-bottom-color: rgba(225, 179, 130, 0.3);
}

.footer-address {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gold-primary);
  line-height: 1.8;
  margin-bottom: 16px;
  opacity: 0.8;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gold-primary);
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-contact-item a {
  color: inherit;
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: var(--gold-primary);
}

.footer-contact-icon {
  color: var(--gold-primary);
  font-size: 12px;
}

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.2);
  padding: 24px 80px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer p {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gold-primary);
  opacity: 0.4;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #14110E;
  padding: 32px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold-primary);
  opacity: 0.5;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255, 252, 247, 0.3);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--gold-primary);
}

.footer-credit {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255, 252, 247, 0.3);
}

/* Adaptive Floating Action Bar */
.action-bar {
  position: fixed;
  z-index: 1000;
  display: flex;
  transition: all 0.4s var(--ease-luxury);
}

/* Desktop Styles (> 768px) */
@media (min-width: 769px) {
  .action-bar {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    background: rgba(var(--bg-deep-rgb), 0.85);
    border-left: 1.5px solid white;
    border-top: 1.5px solid rgba(255, 255, 255, 0.642);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.607);
    border-radius: 12px 0 0 12px;
    padding: 10px 4px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  }

  .action-item {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    position: relative;
    margin-bottom: 5px;
    /* background-color: #27AE60; */
    border-radius: 5px;
  }

  .action-bar .action-item:nth-child(1) {
    background-color: #27AE60;
    /* WhatsApp Green */
  }

  .action-bar .action-item:nth-child(2) {
    background: linear-gradient(45deg, #E1306C, #F09433);
    /* Instagram Pink */
  }

  .action-bar .action-item:nth-child(3) {
    background: linear-gradient(45deg, #1DA1F2, #1DA1F2);
    /* Twitter Blue */
  }

  .action-item:hover {
    color: var(--bg-pearl-white);
    background: var(--gold-primary);
    border-radius: 8px;
  }

  .action-item svg {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.3s var(--ease-luxury);
  }

  .action-item:hover svg {
    opacity: 1;
  }
}

/* Mobile Styles (< 768px) */
@media (max-width: 768px) {
  body {
    padding-bottom: 0;
    /* Reset previous padding */
  }

  .action-bar {
    right: 0;
    bottom: 20px;
    top: auto;
    transform: none;
    flex-direction: column;
    background: rgba(var(--bg-deep-rgb), 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-left: 1.5px solid white;
    border-top: 1.5px solid rgba(255, 255, 255, 0.642);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.607);
    border-radius: 12px 0 0 12px;
    padding: 10px 4px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  }

  .action-item {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    margin-bottom: 5px;
    border-radius: 5px;
  }

  .action-bar .action-item:nth-child(1) {
    background-color: #27AE60;
  }

  .action-bar .action-item:nth-child(2) {
    background: linear-gradient(45deg, #E1306C, #F09433);
  }

  .action-bar .action-item:nth-child(3) {
    background: #0088cc;
  }

  .action-item svg {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
}


/* Back to top */
.back-to-top {
  position: fixed;
  top: 94%;
  left: 0px;
  width: 40px;
  height: 40px;
  background: rgba(var(--bg-deep-rgb), 0.85);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--gold-primary);
  color: var(--bg-deep);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-logo {
  animation: logoPulse 2s var(--ease-luxury) infinite;
}

.preloader-logo img {
  height: 180px;
  width: auto;
  filter: drop-shadow(0 0 25px rgba(225, 179, 130, 0.25));
}

@keyframes logoPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}

.preloader-line {
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  margin-top: 24px;
  animation: expandLine 1.2s ease 0.3s forwards;
}

@keyframes expandLine {
  from {
    width: 0;
  }

  to {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 60px 24px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding: 40px 24px;
    gap: 32px;
  }

  .footer-disclaimer {
    padding: 16px 24px;
  }

  .footer-bottom {
    padding: 24px;
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Swiper custom pagination */
.swiper-pagination-bullet {
  background: var(--gold-primary) !important;
  opacity: 0.4;
  width: 6px;
  height: 6px;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 3px;
}

/* =============================================
   SECTION 03 — ABOUT PREMIUM
   ============================================= */
.about-premium {
  padding: 50px 0;
  background-color: #fdfaf5;
  /* Subtle cream background */
  position: relative;
  overflow: hidden;
}

/* Background Overlay Image */
.about-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/about-bg.jpg');
  /* User to add image here */
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  /* Very subtle low opacity as requested */
  z-index: 1;
  pointer-events: none;
}

.about-premium .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  /* Image column is now significantly larger */
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  /* Increased max-width */
  margin: 0 auto;
}

.about-arch-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 0.85;
  /* Slightly taller for more presence */
  border-radius: 300px 300px 0 0;
  /* Larger arch */
  overflow: visible;
  /* Changed to visible to allow badge to breathe */
  background: transparent;
  /* Much deeper and smoother mask for complete blending */
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.about-founder-img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.about-arch-frame:hover .about-founder-img {
  transform: scale(1.05);
}

/* Personalized Care Badge */
.personalized-badge {
  position: absolute;
  bottom: 10%;
  /* Relative positioning for better scaling */
  right: -10px;
  width: 160px;
  height: 160px;
  background: var(--bg-pearl-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  z-index: 10;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.1);
}

.badge-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.badge-icon {
  width: 32px;
  height: 32px;
  color: var(--gold-primary);
}

.badge-text {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-burgundy);
  line-height: 1.4;
}

/* Content Styles */
.about-text-content {
  padding-left: 20px;
}

.about-pre-title {
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  color: var(--text-burgundy);
  margin-bottom: 32px;
}

.about-heading .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-primary);
}

.about-accent-line {
  width: 60px;
  height: 1px;
  background: var(--gold-primary);
  margin-bottom: 40px;
}

.about-description {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(var(--text-burgundy-rgb), 0.8);
  margin-bottom: 48px;
  max-width: 500px;
}

.about-signature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
}

.signature-name {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-style: italic;
  color: var(--text-burgundy);
}

.signature-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.btn-about-luxury {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--gradient-interactive);
  color: var(--bg-pearl-white);
  padding: 20px 40px;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  transition: all 0.4s var(--ease-luxury);
  box-shadow: 0 10px 30px rgba(var(--gold-primary-rgb), 0.3);
}

.btn-about-luxury:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(var(--gold-primary-rgb), 0.4);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 80px;
    text-align: center;
  }

  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-text-content {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-accent-line {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .about-premium {
    padding: 80px 0;
  }

  .about-arch-frame {
    border-radius: 150px 150px 15px 15px;
  }

  .personalized-badge {
    width: 120px;
    height: 120px;
    bottom: -20px;
    right: -10px;
  }

  .badge-text {
    font-size: 8px;
  }
}

/* =============================================
   SECTION 05 — PREMIUM TREATMENTS
   ============================================= */
.treatments {
  padding: 15px 0;
  background: #fdd49047;
  position: relative;
  /* Fixed: Added to anchor absolute children */
  overflow: hidden;
  /* Ensure background doesn't leak */
}

.treatments .section-header {
  margin-bottom: 15px;
}

.treatments .section-header h2 {
  font-weight: 800;
  /* Bolded as requested */
}

.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.ornament-divider span {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
}

.ornament-divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  transform: rotate(45deg);
}

.treatments-swiper {
  padding-bottom: 60px !important;
}

.treatment-card {
  background: rgba(255, 255, 255, 0.45);
  /* Glassmorphism base */
  backdrop-filter: blur(20px);
  /* Premium blur effect */
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  /* More rounded for luxury feel */
  overflow: hidden;
  transition: all 0.6s var(--ease-luxury);
  border: 1px solid rgba(var(--gold-primary-rgb), 0.15);
  /* Refined gold border */
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(var(--text-burgundy-rgb), 0.03);
  /* Soft base shadow */
}

.treatment-card:hover {
  transform: translateY(-15px) scale(1.02);
  /* More pronounced lift */
  background: rgba(255, 255, 255, 0.7);
  /* Brightens on hover */
  box-shadow: 0 40px 80px rgba(166, 124, 51, 0.12);
  /* Warm gold-tinted shadow */
  border-color: rgba(var(--gold-primary-rgb), 0.4);
}

.treatment-img-arch {
  width: 100%;
  aspect-ratio: 1;
  padding: 10px;
  /* Reduced padding */
  overflow: hidden;
}

.treatment-img-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  /* Standard soft rectangle instead of arch */
  transition: transform 0.8s var(--ease-luxury);
}

.treatment-card:hover .treatment-img-arch img {
  transform: scale(1.08);
}

.treatment-content {
  padding: 40px 30px;
  /* Increased top/bottom padding for size */
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to bottom, transparent, rgba(253, 248, 248, 0.3));
  /* Subtle inner gradient */
}

.treatment-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  /* Slightly smaller for elegance */
  color: var(--text-burgundy);
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.treatment-content p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(var(--text-burgundy-rgb), 0.7);
  /* Muted burgundy for premium feel */
  margin-bottom: 30px;
}

.treatment-link {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}

.treatment-link span {
  transition: transform 0.3s;
}

.treatment-link:hover {
  color: var(--gold-dark);
}

.treatment-link:hover span {
  transform: translateX(5px);
}

/* Background Overlay for Treatments */
.treatments::before {
  content: '';
  position: absolute;
  /* Fixed: Restored positioning */
  inset: 0;
  background-image: url('images/treatments-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.treatments .container {
  position: relative;
  z-index: 2;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

/* ══════════════════════════════════════════
   13. MEGA MENU & ACCORDION (Desktop & Mobile)
   ══════════════════════════════════════════ */

/* --- Desktop Mega Menu --- */
.nav-dropdown {
  /* removed position relative to allow mega menu to center to screen */
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-mega-menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  width: max-content;
  max-width: 90vw;
  background: rgba(255, 248, 243, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 163, 103, 0.2);
  border-radius: 8px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-luxury);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 100;
}

/* Invisible hover bridge so cursor doesn't lose hover */
.nav-mega-menu::before {
  content: '';
  position: absolute;
  top: -140px;
  left: 0;
  right: 0;
  height: 140px;
}

.nav-dropdown:hover .nav-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(20px);
  pointer-events: auto;
}

.mega-column h4 {
  font-family: var(--font-display);
  color: var(--gold-dark);
  font-size: 20px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(197, 163, 103, 0.2);
  padding-bottom: 10px;
}

.mega-column h4 a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s var(--ease-luxury);
}

.mega-column h4 a:hover {
  opacity: 0.7;
}

/* Fix for hover overlap */
.nav-links>a {
  position: relative;
  z-index: 105;
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 8px;
}

/* Custom scrollbar for mega menu lists */
.mega-column ul::-webkit-scrollbar {
  width: 4px;
}

.mega-column ul::-webkit-scrollbar-track {
  background: rgba(197, 163, 103, 0.1);
  border-radius: 4px;
}

.mega-column ul::-webkit-scrollbar-thumb {
  background: rgba(197, 163, 103, 0.4);
  border-radius: 4px;
}

.mega-column ul::-webkit-scrollbar-thumb:hover {
  background: rgba(197, 163, 103, 0.8);
}

.mega-column ul li a {
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text-charcoal);
  transition: color 0.3s;
}

.mega-column ul li a::after {
  display: none;
  /* No underline effect in mega menu */
}

.mega-column ul li a:hover {
  color: var(--gold-primary);
}

/* --- Mobile Overlay Mega Accordion --- */
.nav-overlay-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s var(--ease-luxury);
  width: 100%;
}

.nav-overlay.open .nav-overlay-item {
  opacity: 1;
  transform: translateX(0);
}

.mobile-accordion {
  width: 100%;
  overflow: hidden;
}

.mobile-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-burgundy);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.mobile-accordion-trigger .material-symbols-outlined {
  transition: transform 0.4s var(--ease-luxury);
  font-size: clamp(24px, 5vw, 36px);
}

.mobile-accordion.open .mobile-accordion-trigger .material-symbols-outlined {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s var(--ease-luxury);
}

.mobile-category {
  margin-top: 16px;
  padding-left: 20px;
  border-left: 1px solid rgba(197, 163, 103, 0.2);
}

.mobile-cat-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold-dark);
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 0;
  text-align: left;
}

.mobile-cat-trigger .material-symbols-outlined {
  font-size: 20px;
  transition: transform 0.4s var(--ease-luxury);
}

.mobile-category.open .mobile-cat-trigger .material-symbols-outlined {
  transform: rotate(180deg);
}

.mobile-cat-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-luxury);
}

.mobile-cat-content ul {
  list-style: none;
  padding: 10px 0 10px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-cat-content ul li a {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: var(--text-charcoal) !important;
  opacity: 1 !important;
  transform: none !important;
  display: block;
}


/* DR. SHIVANI  PAGE*/

.doctor-page {
  position: relative;
  overflow: hidden;
  background: #fdfaf5;
  color: var(--text-burgundy);
}

.doctor-hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 90px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(253, 250, 245, 0.95), rgba(255, 232, 179, 0.42));
}

.doctor-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(images/about-bg.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  pointer-events: none;
}

.doctor-hero .container,
.doctor-story .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.doctor-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
}

.doctor-portrait-wrap {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.doctor-portrait-frame {
  position: relative;
  aspect-ratio: 0.82;
  overflow: hidden;
  border-radius: 260px 260px 8px 8px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(var(--gold-primary-rgb), 0.2);
  box-shadow: 0 35px 90px rgba(var(--text-burgundy-rgb), 0.12);
}

.doctor-portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.doctor-portrait-glow {
  position: absolute;
  inset: auto -24px -24px 44px;
  height: 120px;
  background: rgba(var(--gold-primary-rgb), 0.18);
  filter: blur(35px);
  z-index: -1;
}

.doctor-credential-badge {
  position: absolute;
  right: -22px;
  bottom: 34px;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: rgba(255, 252, 247, 0.94);
  border: 1px solid rgba(var(--gold-primary-rgb), 0.2);
  box-shadow: 0 20px 55px rgba(var(--text-burgundy-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-family: var(--font-ui);
  font-size: 10px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--text-burgundy);
  text-transform: uppercase;
}

.doctor-kicker {
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.doctor-title {
  font-family: var(--font-display);
  font-size: clamp(50px, 7vw, 86px);
  line-height: 0.98;
  color: var(--text-burgundy);
  margin-bottom: 28px;
  letter-spacing: 0;
}

.doctor-title span {
  display: block;
  color: var(--gold-primary);
  font-style: italic;
  font-weight: 400;
}

.doctor-intro {
  max-width: 620px;
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.85;
  color: rgba(var(--text-burgundy-rgb), 0.82);
  margin-bottom: 34px;
}

.doctor-hero-copy {
  min-width: 0;
}

.doctor-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
  margin-bottom: 38px;
}

.doctor-fact {
  min-height: 108px;
  padding: 18px 16px;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.15);
  background: rgba(255, 252, 247, 0.66);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 20px 50px rgba(var(--bg-deep-rgb), 0.04);
}

.doctor-fact strong {
  font-family: var(--font-display);
  font-size: 25px;
  color: var(--text-burgundy);
  line-height: 1;
}

.doctor-fact span {
  font-family: var(--font-ui);
  font-size: 10px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.doctor-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.doctor-story {
  position: relative;
  padding: 110px 0 120px;
  background: #fffaf2;
}

.doctor-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/transformations-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.doctor-story-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
}

.doctor-story-aside {
  position: sticky;
  top: 120px;
  padding-top: 10px;
}

.doctor-story-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 18px;
  display: block;
}

.doctor-story-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  color: var(--text-burgundy);
  margin-bottom: 26px;
}

.doctor-story-line {
  width: 70px;
  height: 1px;
  background: var(--gold-primary);
}

.doctor-copy {
  max-width: 760px;
}

.doctor-copy p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.9;
  color: rgba(var(--text-burgundy-rgb), 0.78);
  margin-bottom: 28px;
}

.doctor-expertise {
  margin-top: 40px;
  padding: 34px;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.18);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 30px 80px rgba(var(--text-burgundy-rgb), 0.06);
}

.doctor-expertise h2 {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--text-burgundy);
  margin-bottom: 22px;
}

.doctor-expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.doctor-expertise-item {
  padding: 16px 18px;
  border-left: 2px solid var(--gold-primary);
  background: rgba(253, 250, 245, 0.86);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1.5;
  color: var(--text-burgundy);
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .doctor-hero {
    padding-top: 135px;
  }

  .doctor-hero-grid,
  .doctor-story-layout {
    grid-template-columns: 1fr;
  }

  .doctor-hero-copy,
  .doctor-story-aside {
    text-align: center;
  }

  .doctor-intro,
  .doctor-facts,
  .doctor-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .doctor-actions {
    justify-content: center;
  }

  .doctor-story-aside {
    position: static;
  }

  .doctor-story-line {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {

  .doctor-hero,
  .doctor-story {
    padding-left: 0;
    padding-right: 0;
  }

  .doctor-hero .container,
  .doctor-story .container {
    padding: 0 24px;
  }

  .doctor-hero {
    padding-top: 118px;
    padding-bottom: 70px;
  }

  .doctor-hero-grid {
    gap: 34px;
  }

  .doctor-hero-copy {
    order: -1;
    width: 100%;
    max-width: 342px;
    overflow: hidden;
    margin: 0 auto;
  }

  .doctor-portrait-wrap {
    max-width: min(330px, 86vw);
  }

  .doctor-credential-badge {
    width: 112px;
    height: 112px;
    right: 0;
    bottom: 14px;
    padding: 18px;
    font-size: 8px;
    letter-spacing: 1.3px;
  }

  .doctor-title {
    font-size: clamp(38px, 11.8vw, 48px);
    line-height: 1.05;
  }

  .doctor-intro,
  .doctor-copy p {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.78;
    overflow-wrap: break-word;
  }

  .doctor-intro {
    max-width: 318px;
  }

  .doctor-facts {
    width: 100%;
    max-width: 318px;
  }

  .doctor-facts {
    grid-template-columns: 1fr;
  }

  .doctor-fact {
    min-height: 86px;
  }

  .doctor-expertise {
    padding: 26px 20px;
  }

  .doctor-expertise-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT PAGE */
.contact-page {
  position: relative;
  overflow: hidden;
  background: #fffaf2;
  color: var(--text-burgundy);
}

.contact-hero {
  position: relative;
  padding: 150px 0 95px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(253, 250, 245, 0.96), rgba(245, 235, 218, 0.9));
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/about-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  pointer-events: none;
}

.contact-hero .container,
.contact-details .container,
.contact-booking .container,
.contact-map-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  gap: 76px;
  align-items: center;
}

.contact-hero-copy {
  min-width: 0;
}

.contact-title {
  max-width: 740px;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1.03;
  color: var(--text-burgundy);
  margin-bottom: 26px;
  letter-spacing: 0;
}

.contact-title span {
  display: block;
  color: var(--gold-primary);
  font-style: italic;
  font-weight: 400;
}

.contact-intro {
  max-width: 650px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.85;
  color: rgba(var(--text-burgundy-rgb), 0.78);
  margin-bottom: 34px;
}

.contact-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.contact-quick-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
}

.contact-quick-row div {
  min-height: 92px;
  padding: 18px 16px;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.16);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 50px rgba(var(--bg-deep-rgb), 0.04);
}

.contact-quick-row strong,
.contact-quick-row span {
  display: block;
}

.contact-quick-row strong {
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.1;
  color: var(--text-burgundy);
  margin-bottom: 8px;
}

.contact-quick-row span {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--gold-primary);
}

.contact-hero-visual {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.contact-hero-image {
  position: relative;
  aspect-ratio: 0.82;
  overflow: hidden;
  border-radius: 260px 260px 8px 8px;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.22);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 35px 90px rgba(var(--text-burgundy-rgb), 0.12);
}

.contact-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-visit-panel {
  position: absolute;
  left: -44px;
  bottom: 36px;
  width: min(340px, 88%);
  padding: 28px;
  background: #1a1612;
  border-left: 4px solid var(--gold-primary);
  box-shadow: 20px 24px 60px rgba(var(--bg-deep-rgb), 0.18);
  color: var(--bg-pearl-white);
}

.contact-visit-panel span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.contact-visit-panel strong {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--bg-pearl-white);
  margin-bottom: 16px;
}

.contact-visit-panel a {
  display: inline-flex;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.contact-details {
  padding: 95px 0;
  background: #f7ece2;
}

.contact-details .section-header,
.contact-map-section .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.contact-details .section-header h2,
.contact-map-section .section-header h2 {
  font-size: 44px;
  color: var(--text-burgundy);
  margin-bottom: 16px;
}

.contact-map-section .section-header p {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(var(--text-burgundy-rgb), 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.contact-method-card {
  min-height: 270px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 25px 65px rgba(var(--bg-deep-rgb), 0.05);
  color: var(--text-burgundy);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(var(--gold-primary-rgb), 0.12);
  color: var(--gold-dark);
}

.contact-method-icon svg {
  width: 23px;
  height: 23px;
}

.contact-method-card h3 {
  font-family: var(--font-display);
  font-size: 25px;
  color: var(--text-burgundy);
  margin-bottom: 14px;
}

.contact-method-card a,
.contact-method-card p,
.contact-method-card span {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(var(--text-burgundy-rgb), 0.76);
}

.contact-method-card a {
  transition: color 0.3s var(--ease-luxury);
}

.contact-method-card a:hover {
  color: var(--gold-dark);
}

.contact-booking {
  padding: 100px 0;
  background: #fffaf2;
}

.contact-booking-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 54px;
  align-items: stretch;
  padding: 48px;
  border-radius: 8px;
  border: 1px solid rgba(var(--gold-primary-rgb), 0.18);
  background: #f7ece2;
  box-shadow: 0 30px 90px rgba(var(--bg-deep-rgb), 0.07);
}

.contact-support-panel {
  padding: 40px;
  border-radius: 8px;
  background: #1a1612;
  color: var(--bg-pearl-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-support-kicker {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.contact-support-panel h2 {
  font-size: 42px;
  line-height: 1.14;
  color: var(--bg-pearl-white);
  margin-bottom: 18px;
}

.contact-support-panel p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 30px;
}

.contact-support-list {
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
}

.contact-support-list div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-support-list strong,
.contact-support-list span {
  display: block;
}

.contact-support-list strong {
  margin-bottom: 6px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.contact-support-list span {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--bg-pearl-white);
}

.contact-support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 20px;
  background: var(--gold-primary);
  color: var(--bg-pearl-white);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-luxury);
}

.contact-support-link:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.contact-form-panel {
  padding: 16px 0;
  min-width: 0;
}

.contact-form-panel .booking-form-header {
  margin-bottom: 42px;
}

.contact-form-panel .booking-form-header h2 {
  color: var(--text-burgundy);
}

.contact-form-panel .booking-form-header p {
  max-width: 640px;
}

.contact-map-section {
  background: #f7ece2;
}

.contact-map-section .map-container-outer {
  padding-top: 10px;
}

@media (max-width: 1100px) {

  .contact-hero-grid,
  .contact-booking-shell {
    grid-template-columns: 1fr;
  }

  .contact-hero-copy {
    text-align: center;
  }

  .contact-title,
  .contact-intro,
  .contact-quick-row {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero-actions {
    justify-content: center;
  }

  .contact-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-support-panel {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 118px 0 72px;
  }

  .contact-hero .container,
  .contact-details .container,
  .contact-booking .container,
  .contact-map-section .container {
    padding: 0 24px;
  }

  .contact-hero-grid {
    gap: 42px;
  }

  .contact-title {
    font-size: 44px;
    line-height: 1.08;
  }

  .contact-intro {
    font-size: 16px;
    line-height: 1.78;
  }

  .contact-quick-row {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .contact-hero-visual {
    max-width: min(340px, 88vw);
  }

  .contact-visit-panel {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: -48px 18px 0;
    padding: 24px;
  }

  .contact-details,
  .contact-booking {
    padding: 76px 0;
  }

  .contact-details .section-header h2,
  .contact-map-section .section-header h2,
  .contact-support-panel h2 {
    font-size: 34px;
  }

  .contact-booking-shell {
    gap: 32px;
    padding: 24px;
  }

  .contact-support-panel {
    padding: 30px 24px;
  }
}

@media (max-width: 560px) {
  .contact-method-grid {
    grid-template-columns: 1fr;
  }

  .contact-method-card {
    min-height: auto;
  }

  .contact-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-hero-actions .btn-primary,
  .contact-hero-actions .btn-whatsapp {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .contact-booking-shell {
    padding: 18px;
  }
}

/* ==========================================================================
   Consolidated Page-Specific Styles
   ========================================================================== */

/* Sub-Services Grid */
.sub-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.sub-service-card {
  display: block;
  background: var(--bg-cream);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(15, 10, 3, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.sub-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(15, 10, 3, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
}

.sub-service-img-wrapper {
  height: 260px;
  overflow: hidden;
}

.sub-service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.sub-service-card:hover .sub-service-img-wrapper img {
  transform: scale(1.08);
}

.sub-service-content {
  padding: 35px 30px;
  text-align: center;
}

.sub-service-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.sub-service-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: #727272;
  margin-bottom: 28px;
  line-height: 1.6;
}

.sub-service-btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  padding: 12px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.sub-service-card:hover .sub-service-btn {
  background: var(--gold-primary);
  color: var(--bg-deep);
}

/* Luxury Aesthetics & Transitions */
.luxury-gradient {
  background: linear-gradient(135deg, #c5a367 0%, #ffdea7 50%, #c5a367 100%);
}

.arched-image {
  clip-path: ellipse(100% 100% at 50% 100%);
  border-radius: 50% 50% 0 0;
}

.fade-edge-divider {
  height: 1px;
  background: radial-gradient(circle, #c5a367 0%, transparent 100%);
}

.glass-panel {
  backdrop-filter: blur(16px);
  background: rgba(255, 248, 243, 0.85);
}

.radial-gradient-divider {
  background: radial-gradient(circle, var(--tw-gradient-from) 0%, var(--tw-gradient-via) 50%, var(--tw-gradient-to) 100%);
}

.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.luxury-transition {
  transition: all 800ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.image-sepia-filter {
  filter: sepia(10%);
}

.bg-grain {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

/* Utilities */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.editorial-drop-cap::first-letter {
  font-size: 3em;
  line-height: 0.8;
  float: left;
  margin-right: 0.1em;
  color: #c5a367;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* Result Cards */
.result-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 10, 3, 0.08);
  background: #fff;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.result-card img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.result-card:hover img {
  transform: scale(1.05);
}

/* Animations */
@keyframes ken-burns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.animate-ken-burns {
  animation: ken-burns 30s ease-in-out infinite alternate;
}

@keyframes scroll-bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.animate-scroll {
  animation: scroll-bounce 2s infinite;
}

/* ==========================================================================
   Service Detail Template Styles (e.g., Chemical Peels)
   ========================================================================== */

.service-detail-template {
  padding-top: 140px;
  background-color: var(--bg-warm-white);
  padding-bottom: 80px;
}

.service-detail-container {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Sidebar Styling */
.service-sidebar {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  position: sticky;
  top: 200px;
  background: var(--bg-cream);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.service-sidebar-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding-bottom: 12px;
}

.service-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-sidebar-list a {
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--text-mid);
  transition: color 0.3s ease;
}

.service-sidebar-list a:hover {
  color: var(--gold-primary);
}

/* Main Content Wrapper */
.service-content-wrapper {
  flex: 3;
  min-width: 300px;
  margin-top: 5rem;
}

.service-category {
  display: block;
  margin-bottom: 16px;
}

.service-main-heading {
  font-size: 48px;
  margin-bottom: 32px;
}

.service-hero-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(15, 10, 3, 0.05);
}

/* Text Content Flow */
.service-text-content {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.8;
}

.service-text-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.service-text-content p {
  margin-bottom: 24px;
}

.service-divider {
  border: none;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  margin: 40px 0;
}

/* Lists */
.service-bullet-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-numbered-list {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Service Types Listing */
.service-types-wrapper {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-type-item h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.service-italic-note {
  margin-bottom: 24px;
  font-style: italic;
}

/* Booking CTA Section */
.booking-cta-section {
  background-color: var(--bg-cream);
  padding: 80px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.booking-cta-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.booking-cta-heading {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.booking-cta-text {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.6;
}

.booking-cta-btn {
  padding: 16px 40px;
  font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-detail-container {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .service-sidebar {
    position: relative;
    top: 0;
    max-width: 100%;
  }

  .service-main-heading {
    font-size: 36px;
  }

  .service-detail-template {
    padding-top: 36px;
    background-color: var(--bg-warm-white);
    padding-bottom: 80px;
  }
}