/* ==========================================================================
   TRIKAAYA ADVANCE DERMATOLOGY & AESTHETIC CLINIC
   Styling System (Premium Editorial Visual Clone of skuccii.com)
   Theme Accent: #ad834a (Warm Gold/Bronze) replacing #b698c5 (Purple)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand Luxury Palette */
  --accent-gold: #ad834a;             /* Primary Accent (Golden Bronze) */
  --accent-gold-hover: #8e6530;       /* Darker Gold on Hover */
  --accent-gold-light: rgba(173, 131, 74, 0.08); /* Transparent Gold for backgrounds */
  --accent-gold-border: rgba(173, 131, 74, 0.25);
  
  --bg-light-base: #fdfcfb;           /* Off-White Cream base background */
  --bg-light-sec: #faf7f2;            /* Secondary Warm Cream background */
  --bg-dark-base: #141412;            /* Luxurious Midnight Charcoal */
  --bg-dark-sec: #1c1c19;             /* Secondary dark background */
  
  --text-dark-primary: #1c1c19;       /* Deep Charcoal for rich reading */
  --text-dark-secondary: #525048;     /* Warm grey text */
  --text-light-primary: #f5f3ef;      /* Off-White text on dark backgrounds */
  --text-light-secondary: #c7c4be;    /* Warm beige text on dark backgrounds */
  
  --bg-glass-light: rgba(253, 252, 251, 0.85);
  --bg-glass-dark: rgba(20, 20, 18, 0.85);
  --border-light: rgba(28, 28, 25, 0.08);
  --border-dark: rgba(245, 243, 239, 0.08);
  
  /* Fonts */
  --font-headings: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout Spacing & Shadows */
  --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.06);
  --shadow-header: 0 10px 30px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.02);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-color: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* Light Mode (Default) */
body {
  background-color: var(--bg-light-base);
  color: var(--text-dark-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  transition: var(--transition-color);
}

/* Dark Theme Support (via trigger) */
body[data-theme="dark"] {
  background-color: var(--bg-dark-base);
  color: var(--text-light-primary);
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

p {
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.9;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.divider {
  height: 1px;
  background-color: var(--border-light);
  margin: 2rem 0;
  width: 100%;
}
body[data-theme="dark"] .divider {
  background-color: var(--border-dark);
}

.hidden {
  display: none !important;
}

/* --------------------------------------------------------------------------
   2. LUXURY PRELOADER
   -------------------------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #141412;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.loader-logo {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  color: var(--text-light-primary);
  letter-spacing: 8px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: loadText 1.2s forwards 0.3s;
}

.loader-ring {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 243, 239, 0.1);
  border-top: 1.5px solid var(--accent-gold);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes loadText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   3. STICKY HEADER & NAV MENU
   -------------------------------------------------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 1.8rem 0;
}

.main-header.scrolled {
  background-color: var(--bg-glass-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-header);
  padding: 0.8rem 0;
}

body[data-theme="dark"] .main-header.scrolled {
  background-color: var(--bg-glass-dark);
  border-bottom: 1px solid var(--border-dark);
}

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

/* Brand logo styling */
.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-headings);
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark-primary);
  transition: var(--transition-color);
}
body[data-theme="dark"] .brand-name {
  color: var(--text-light-primary);
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  margin-top: 0.15rem;
}

/* Main Navigation */
.desktop-nav {
  display: flex;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark-primary);
  opacity: 0.85;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-color);
}
body[data-theme="dark"] .nav-link {
  color: var(--text-light-primary);
}

.nav-link:hover {
  opacity: 1;
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

/* Utility buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.theme-toggle-btn {
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text-dark-primary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
body[data-theme="dark"] .theme-toggle-btn {
  border-color: var(--border-dark);
  color: var(--text-light-primary);
}

.theme-toggle-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

[data-theme="light"] .sun-icon { display: none; }
[data-theme="dark"] .moon-icon { display: none; }

/* Custom Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #fff;
  border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-gold);
  box-shadow: 0 8px 24px rgba(173, 131, 74, 0.15);
}

body[data-theme="dark"] .btn-primary:hover {
  color: var(--accent-gold);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark-primary);
  border: 1px solid var(--text-dark-primary);
}
body[data-theme="dark"] .btn-outline {
  color: var(--text-light-primary);
  border-color: var(--text-light-primary);
}

.btn-outline:hover {
  background-color: var(--text-dark-primary);
  color: var(--bg-light-base);
}
body[data-theme="dark"] .btn-outline:hover {
  background-color: var(--text-light-primary);
  color: var(--bg-dark-base);
}

.btn-sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.7rem;
}

.btn-xs {
  padding: 0.45rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.full-width {
  width: 100%;
}

/* Mobile Hamburger Menu */
.mobile-hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  justify-content: center;
}

.mobile-hamburger .bar {
  width: 100%;
  height: 1.5px;
  background-color: var(--text-dark-primary);
  transition: var(--transition-smooth);
}
body[data-theme="dark"] .mobile-hamburger .bar {
  background-color: var(--text-light-primary);
}

.mobile-hamburger.active .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.mobile-hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.mobile-hamburger.active .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   4. MOBILE NAV OVERLAY
   -------------------------------------------------------------------------- */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background-color: var(--bg-light-base);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
body[data-theme="dark"] .mobile-nav-overlay {
  background-color: var(--bg-dark-base);
}

.mobile-nav-overlay.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-headings);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--text-dark-primary);
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}
body[data-theme="dark"] .mobile-nav-link {
  color: var(--text-light-primary);
}

.mobile-nav-link:hover {
  color: var(--accent-gold);
}

.mobile-nav-footer {
  margin-top: 1rem;
}

.mobile-nav-address {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.mobile-phone-link {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   5. HOME HERO SLIDER & SECTION
   -------------------------------------------------------------------------- */
.home-hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://skuccii.com/wp-content/uploads/2024/02/newban-scaled.webp") no-repeat center center;
  background-size: cover;
  text-align: center;
  padding: 8rem 0 4rem 0;
}

.home-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 18, 0.4); /* Dark veil over background image for legibility */
  z-index: 1;
}

.home-hero-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.primary-heading {
  margin-bottom: 2rem;
}

.primary-heading h3 {
  font-family: var(--font-headings);
  font-size: 3rem;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 300;
}

.home-hero-section img {
  max-width: 320px;
  height: auto;
  margin: 1rem auto 2rem auto;
  filter: brightness(0) invert(1); /* Ensure logo is white on dark background overlay */
}

.signature-heading h3 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.home-hero-section p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  line-height: 1.8;
  margin: 0 auto 2.5rem auto;
}

.home-hero-section .elementor-button {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.9rem 2.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  cursor: pointer;
  display: inline-block;
}

.home-hero-section .elementor-button:hover {
  background-color: #fff;
  color: #141412;
}

/* --------------------------------------------------------------------------
   6. CELEBS SWIPER & CLINIC DESCRIPTION
   -------------------------------------------------------------------------- */
.home-care-slider {
  padding: 6.5rem 0;
  background-color: var(--bg-light-sec);
  transition: var(--transition-color);
}
body[data-theme="dark"] .home-care-slider {
  background-color: var(--bg-dark-sec);
}

.home-care-slider h3 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.home-care-slider p {
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
  color: var(--text-dark-secondary);
  line-height: 1.85;
}
body[data-theme="dark"] .home-care-slider p {
  color: var(--text-light-secondary);
}

/* Celebrities section slider styles */
.celebs-section {
  width: 100%;
  margin-bottom: 5rem;
}

.celebs-section .swiper {
  width: 100%;
  padding-bottom: 3.5rem;
}

.celebs-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Elegant placeholder box stylization for SVGs */
.celeb-placeholder-box {
  width: 100%;
  height: 480px;
  background-color: rgba(28, 28, 25, 0.02);
  border: 1px solid rgba(173, 131, 74, 0.15);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
  padding: 2rem;
}
body[data-theme="dark"] .celeb-placeholder-box {
  background-color: rgba(245, 243, 239, 0.02);
}

.celeb-placeholder-box:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-premium);
}

.celeb-placeholder-box svg {
  width: 90px;
  height: 90px;
  color: var(--accent-gold);
  margin-bottom: 1.8rem;
  opacity: 0.85;
}

.celeb-placeholder-box h5 {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.celeb-placeholder-box p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 0;
}

/* Featured On section logos swiper styling */
.featured-section {
  background-color: var(--bg-light-base);
  padding: 4.5rem 0 3.5rem 0;
  transition: var(--transition-color);
}
body[data-theme="dark"] .featured-section {
  background-color: var(--bg-dark-base);
}

.featured-section .swiper {
  padding-bottom: 2.5rem;
}

.featured-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.media-logo-placeholder {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-dark-primary);
  opacity: 0.45;
  transition: var(--transition-smooth);
}
body[data-theme="dark"] .media-logo-placeholder {
  color: var(--text-light-primary);
}

.media-logo-placeholder:hover {
  opacity: 0.95;
  color: var(--accent-gold);
}

.media-logo-placeholder svg {
  width: 32px;
  height: 32px;
}

.media-logo-placeholder span {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Swiper slider navigations style */
.swiper-pagination-bullet {
  width: 6px !important;
  height: 6px !important;
  background: var(--text-dark-secondary) !important;
  opacity: 0.25 !important;
  transition: var(--transition-smooth);
}
body[data-theme="dark"] .swiper-pagination-bullet {
  background: var(--text-light-secondary) !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent-gold) !important;
  opacity: 1 !important;
  width: 18px !important;
  border-radius: 3px !important;
}

/* --------------------------------------------------------------------------
   7. SERVICES GRID LAYOUT (FACE / SKIN / HAIR)
   -------------------------------------------------------------------------- */
.service-home {
  padding: 7rem 0;
  background-color: var(--bg-light-base);
  transition: var(--transition-color);
}
body[data-theme="dark"] .service-home {
  background-color: var(--bg-dark-base);
}

.service-slider {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.ser-box {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 480px;
  box-shadow: var(--shadow-card);
}

.ser-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) brightness(0.9);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.ser-box h3.overly {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.2rem 1.8rem;
  background: linear-gradient(to top, rgba(20, 20, 18, 0.85) 0%, rgba(20, 20, 18, 0) 100%);
  color: #fff;
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin: 0;
  transition: var(--transition-smooth);
  transform: translateY(0);
}

.ser-box:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(0.95);
}

.ser-box:hover h3.overly {
  color: var(--accent-gold);
  padding-bottom: 2.6rem;
}

/* --------------------------------------------------------------------------
   8. MEET DR. TRISHA PATEL (FOUNDER SECTION)
   -------------------------------------------------------------------------- */
.home-expert-section {
  padding: 7rem 0;
  background-color: var(--bg-light-sec);
  transition: var(--transition-color);
}
body[data-theme="dark"] .home-expert-section {
  background-color: var(--bg-dark-sec);
}

.expert-container-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}

.expert-image-wrapper {
  position: relative;
  border-radius: 4px 4px 180px 4px; /* Unique editorial asymmetrical mask */
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--accent-gold-border);
}

.expert-image-wrapper img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}

.expert-bio-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.expert-bio-wrapper .primary-heading h3 {
  font-size: 2.6rem;
  color: var(--text-dark-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}
body[data-theme="dark"] .expert-bio-wrapper .primary-heading h3 {
  color: var(--text-light-primary);
}

.doctor-subheading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.expert-bio-wrapper p {
  color: var(--text-dark-secondary);
  font-size: 0.98rem;
  line-height: 1.85;
}
body[data-theme="dark"] .expert-bio-wrapper p {
  color: var(--text-light-secondary);
}

/* Premium modal trigger styling inside doctor section */
.expert-model button {
  background-color: transparent;
  color: var(--text-dark-primary);
  border: 1px solid var(--text-dark-primary);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}
body[data-theme="dark"] .expert-model button {
  color: var(--text-light-primary);
  border-color: var(--text-light-primary);
}

.expert-model button:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #fff;
}

/* --------------------------------------------------------------------------
   9. INTERACTIVE AI SKIN MAPPING WIDGET
   -------------------------------------------------------------------------- */
.diagnostics-section {
  padding: 7rem 0;
  background-color: var(--bg-light-base);
  transition: var(--transition-color);
}
body[data-theme="dark"] .diagnostics-section {
  background-color: var(--bg-dark-base);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem auto;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.8rem;
  color: var(--text-dark-primary);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
body[data-theme="dark"] .section-title {
  color: var(--text-light-primary);
}

.section-description {
  color: var(--text-dark-secondary);
  font-size: 1rem;
  line-height: 1.75;
}
body[data-theme="dark"] .section-description {
  color: var(--text-light-secondary);
}

.skin-mapping-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}

.skin-scanner-container {
  display: flex;
  justify-content: center;
}

.scanner-card {
  background-color: var(--bg-light-sec);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-light);
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
}
body[data-theme="dark"] .scanner-card {
  background-color: var(--bg-dark-sec);
  border-color: var(--border-dark);
}

.scanner-frame {
  position: relative;
  background-color: var(--bg-light-base);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border-light);
}
body[data-theme="dark"] .scanner-frame {
  background-color: var(--bg-dark-base);
  border-color: var(--border-dark);
}

.face-wireframe {
  width: 100%;
  height: 340px;
  display: block;
}

.face-wireframe path, .face-wireframe line {
  transition: var(--transition-smooth);
}

/* Diagnostic Hotspots */
.hotspot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  border: 2px solid #fff;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: var(--transition-smooth);
  box-shadow: 0 0 12px rgba(173, 131, 74, 0.7);
  z-index: 10;
}

.hotspot::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid var(--accent-gold);
  border-radius: 50%;
  animation: pulseHotspot 2s infinite;
}

.hotspot.active {
  background-color: var(--text-dark-primary);
  border-color: var(--accent-gold);
  transform: translate(-50%, -50%) scale(1.3);
}
body[data-theme="dark"] .hotspot.active {
  background-color: #fff;
}

@keyframes pulseHotspot {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Scanner sweep simulation animation line */
.scanner-sweep {
  animation: sweepAnim 4s ease-in-out infinite alternate;
}

@keyframes sweepAnim {
  0% { y1: 50; y2: 50; opacity: 0.1; }
  50% { opacity: 0.9; }
  100% { y1: 350; y2: 350; opacity: 0.1; }
}

.scanner-hint {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark-secondary);
  opacity: 0.8;
}
body[data-theme="dark"] .scanner-hint {
  color: var(--text-light-secondary);
}

/* Diagnostic details visual panel card style */
.skin-analysis-details {
  display: flex;
  flex-direction: column;
}

.analysis-panel-card {
  background-color: var(--bg-light-sec);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 3rem;
  box-shadow: var(--shadow-card);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
body[data-theme="dark"] .analysis-panel-card {
  background-color: var(--bg-dark-sec);
  border-color: var(--border-dark);
}

.metric-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.6rem;
}

.metric-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.metric-bar-group {
  margin-bottom: 2rem;
}

.metric-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.metric-bar-container {
  height: 4px;
  background-color: rgba(28, 28, 25, 0.06);
  border-radius: 2px;
  overflow: hidden;
}
body[data-theme="dark"] .metric-bar-container {
  background-color: rgba(245, 243, 239, 0.06);
}

.metric-fill-bar {
  height: 100%;
  background-color: var(--accent-gold);
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.analysis-text {
  font-size: 0.95rem;
  color: var(--text-dark-secondary);
  line-height: 1.8;
  margin-bottom: 2.2rem;
}
body[data-theme="dark"] .analysis-text {
  color: var(--text-light-secondary);
}

.clinical-recommendation-box {
  background-color: var(--bg-light-base);
  border-left: 2.5px solid var(--accent-gold);
  padding: 1.5rem 1.8rem;
  border-radius: 2px;
}
body[data-theme="dark"] .clinical-recommendation-box {
  background-color: var(--bg-dark-base);
}

.clinical-recommendation-box h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
}

.clinical-recommendation-box p {
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* --------------------------------------------------------------------------
   10. WHY CHOOSE TRIKAAYA SECTION
   -------------------------------------------------------------------------- */
.why-choose-section {
  padding: 7rem 0;
  background-color: var(--bg-light-sec);
  transition: var(--transition-color);
}
body[data-theme="dark"] .why-choose-section {
  background-color: var(--bg-dark-sec);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.why-image-wrapper {
  position: relative;
  border-radius: 180px 180px 4px 4px; /* Editorial archway */
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.why-image-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.why-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-bullets-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.why-bullets-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-dark-secondary);
}
body[data-theme="dark"] .why-bullets-list li {
  color: var(--text-light-secondary);
}

.why-bullets-list li::before {
  content: '\f105'; /* FontAwesome angle right symbol */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--accent-gold);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.why-bullets-list li:hover::before {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   11. APPOINTMENT RESERVATION REGISTRATION WIZARD
   -------------------------------------------------------------------------- */
.booking-section {
  padding: 7rem 0;
  background-color: var(--bg-light-base);
  transition: var(--transition-color);
}
body[data-theme="dark"] .booking-section {
  background-color: var(--bg-dark-base);
}

.booking-container-card {
  background-color: var(--bg-light-sec);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}
body[data-theme="dark"] .booking-container-card {
  background-color: var(--bg-dark-sec);
  border-color: var(--border-dark);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

/* Wizard details left sidebar pane styles */
.booking-info-pane {
  background: linear-gradient(135deg, #1c1c19 0%, #10100e 100%);
  color: #fff;
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--accent-gold-border);
}

.pane-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
  display: block;
}

.pane-title {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.pane-desc {
  color: var(--text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.pane-features {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

.feat-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.feat-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--accent-gold-light);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.feat-item h6 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.feat-item p {
  font-size: 0.8rem;
  color: var(--text-light-secondary);
  line-height: 1.5;
}

/* Floating aesthetic detail wrapper inside wizard */
.pane-footer-ad {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 243, 239, 0.06);
  padding: 1.2rem 1.5rem;
  border-radius: 2px;
}

.pane-ad-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 2px;
}

.pane-ad-txt h6 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.1rem;
}

.pane-ad-txt p {
  font-size: 0.7rem;
  color: var(--text-light-secondary);
}

/* Registration wizard forms right column styling */
.booking-form-pane {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Wizard progress indicators top segment styles */
.wizard-steps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.step-indicator span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--bg-light-base);
  border: 1.5px solid var(--border-light);
  color: var(--text-dark-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  transition: var(--transition-smooth);
}
body[data-theme="dark"] .step-indicator span {
  background-color: var(--bg-dark-base);
  border-color: var(--border-dark);
  color: var(--text-light-secondary);
}

.step-indicator label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark-secondary);
  transition: var(--transition-smooth);
}
body[data-theme="dark"] .step-indicator label {
  color: var(--text-light-secondary);
}

.step-indicator.active span {
  border-color: var(--accent-gold);
  background-color: var(--accent-gold);
  color: #fff;
}

.step-indicator.active label {
  color: var(--accent-gold);
}

.step-line {
  height: 1px;
  background-color: var(--border-light);
  flex-grow: 1;
  margin: -1.2rem 1rem 0 1rem;
  position: relative;
  overflow: hidden;
}
body[data-theme="dark"] .step-line {
  background-color: var(--border-dark);
}

.step-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--accent-gold);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-line.active::after {
  width: 100%;
}

/* Input Fields Styles */
.wizard-step-panel {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.step-panel-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark-primary);
  opacity: 0.85;
}
body[data-theme="dark"] .form-label {
  color: var(--text-light-primary);
}

.form-control {
  background-color: var(--bg-light-base) !important;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-dark-primary);
  transition: var(--transition-smooth);
  width: 100%;
}
body[data-theme="dark"] .form-control {
  background-color: var(--bg-dark-base) !important;
  border-color: var(--border-dark);
  color: var(--text-light-primary);
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 4px 12px rgba(173, 131, 74, 0.04);
}

/* Select element resetting styling */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23ad834a' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 1.2rem center !important;
  background-size: 20px !important;
  padding-right: 2.5rem !important;
}

textarea.form-control {
  resize: vertical;
}

.error-msg {
  font-size: 0.7rem;
  font-weight: 600;
  color: #c94b4b;
  display: none;
  margin-top: 0.2rem;
}

/* Invalid inputs states class styling */
.input-group.invalid .form-control {
  border-color: #c94b4b;
}

.input-group.invalid .error-msg {
  display: block;
}

/* Grid splits inside wizard forms */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.wizard-buttons-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

/* Time Slot Selection Grid */
.time-slots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.time-slot-btn {
  background-color: var(--bg-light-base);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-dark-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
}
body[data-theme="dark"] .time-slot-btn {
  background-color: var(--bg-dark-base);
  border-color: var(--border-dark);
  color: var(--text-light-secondary);
}

.time-slot-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.time-slot-btn.active {
  background-color: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(173, 131, 74, 0.15);
}

/* Wizard successful completion panel style */
.booking-success-view {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  animation: scaleUpWizard 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleUpWizard {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent-gold-light);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.booking-success-view h3 {
  font-size: 2.2rem;
  margin-bottom: 0.2rem;
}

.success-intro {
  font-size: 0.88rem;
  color: var(--text-dark-secondary);
  max-width: 360px;
}
body[data-theme="dark"] .success-intro {
  color: var(--text-light-secondary);
}

.success-summary-card {
  background-color: var(--bg-light-base);
  border: 1.5px solid var(--accent-gold-border);
  border-radius: 4px;
  padding: 1.8rem;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1rem 0;
  text-align: left;
}
body[data-theme="dark"] .success-summary-card {
  background-color: var(--bg-dark-base);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.6rem;
}
body[data-theme="dark"] .summary-line {
  border-color: var(--border-dark);
}

.summary-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sum-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.sum-val {
  font-weight: 600;
  color: var(--text-dark-primary);
}
body[data-theme="dark"] .sum-val {
  color: var(--text-light-primary);
}

.highlight-ref {
  color: var(--accent-gold) !important;
  letter-spacing: 0.05em;
}

.success-disclaimer {
  font-size: 0.75rem;
  color: var(--text-dark-secondary);
  max-width: 340px;
  line-height: 1.6;
}
body[data-theme="dark"] .success-disclaimer {
  color: var(--text-light-secondary);
}

.success-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   12. DETAIL SLIDE-OVER DRAWER MODAL
   -------------------------------------------------------------------------- */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  background-color: rgba(20, 20, 18, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background-color: var(--bg-light-base);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(100%);
  overflow-y: auto;
}
body[data-theme="dark"] .drawer-content {
  background-color: var(--bg-dark-base);
}

.drawer-overlay.active .drawer-content {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: var(--text-dark-primary);
  opacity: 0.6;
  transition: var(--transition-smooth);
  line-height: 1;
  z-index: 20;
}
body[data-theme="dark"] .drawer-close {
  color: var(--text-light-primary);
}

.drawer-close:hover {
  opacity: 1;
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.drawer-body {
  padding: 4rem 3rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.drawer-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
}

.drawer-title {
  font-size: 2.4rem;
  margin-top: -1.5rem;
}

.drawer-badge {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  background-color: var(--accent-gold-light);
  border: 1px solid var(--accent-gold-border);
  color: var(--accent-gold);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2px;
  align-self: flex-start;
  margin-top: -1.5rem;
}

.drawer-section {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.drawer-section h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark-primary);
  border-bottom: 1.5px solid var(--accent-gold);
  padding-bottom: 0.4rem;
  align-self: flex-start;
}
body[data-theme="dark"] .drawer-section h4 {
  color: var(--text-light-primary);
}

.drawer-section p {
  font-size: 0.92rem;
  color: var(--text-dark-secondary);
  line-height: 1.75;
}
body[data-theme="dark"] .drawer-section p {
  color: var(--text-light-secondary);
}

.drawer-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.drawer-bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-dark-secondary);
  line-height: 1.6;
}
body[data-theme="dark"] .drawer-bullet-list li {
  color: var(--text-light-secondary);
}

.drawer-bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.drawer-section.border-top {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}
body[data-theme="dark"] .drawer-section.border-top {
  border-color: var(--border-dark);
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.spec-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

.spec-value {
  font-size: 0.82rem;
  font-weight: 600;
}

.drawer-cta-box {
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   13. EXPERT INFO POPUP OVERLAYS MODAL
   -------------------------------------------------------------------------- */
.premium-modal-box-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: rgba(20, 20, 18, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: opacity 0.4s ease;
}

.premium-modal-box-modal-dialog {
  background-color: var(--bg-light-base);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  width: 100%;
  max-width: 580px;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  animation: scaleUpWizard 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  max-height: 85vh;
}
body[data-theme="dark"] .premium-modal-box-modal-dialog {
  background-color: var(--bg-dark-base);
  border-color: var(--border-dark);
}

.premium-modal-box-modal-header {
  padding: 1.8rem 2.2rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body[data-theme="dark"] .premium-modal-box-modal-header {
  border-color: var(--border-dark);
}

.premium-modal-box-modal-title {
  font-size: 1.8rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.premium-modal-box-close-button-container button {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-dark-primary);
  opacity: 0.6;
  transition: var(--transition-smooth);
}
body[data-theme="dark"] .premium-modal-box-close-button-container button {
  color: var(--text-light-primary);
}

.premium-modal-box-close-button-container button:hover {
  opacity: 1;
  color: var(--accent-gold);
}

.premium-modal-box-modal-body {
  padding: 2.2rem;
  overflow-y: auto;
  font-size: 0.95rem;
  color: var(--text-dark-secondary);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
body[data-theme="dark"] .premium-modal-box-modal-body {
  color: var(--text-light-secondary);
}

.premium-modal-box-modal-body h2 {
  font-size: 2.2rem;
  color: var(--text-dark-primary);
  margin-top: 0.5rem;
}
body[data-theme="dark"] .premium-modal-box-modal-body h2 {
  color: var(--text-light-primary);
}

.premium-modal-box-modal-body h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-top: -0.8rem;
  margin-bottom: 0.5rem;
}

.premium-modal-box-modal-body a {
  align-self: flex-start;
  background-color: var(--accent-gold);
  color: #fff !important;
  border: 1px solid var(--accent-gold);
  padding: 0.6rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}

.premium-modal-box-modal-body a:hover {
  background-color: transparent;
  color: var(--accent-gold) !important;
}

.premium-modal-box-modal-footer {
  padding: 1.2rem 2.2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end;
}
body[data-theme="dark"] .premium-modal-box-modal-footer {
  border-color: var(--border-dark);
}

.premium-modal-box-modal-lower-close {
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text-dark-secondary);
  padding: 0.5rem 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 2px;
}
body[data-theme="dark"] .premium-modal-box-modal-lower-close {
  border-color: var(--border-dark);
  color: var(--text-light-secondary);
}

.premium-modal-box-modal-lower-close:hover {
  background-color: var(--border-light);
}
body[data-theme="dark"] .premium-modal-box-modal-lower-close:hover {
  background-color: var(--border-dark);
}

/* --------------------------------------------------------------------------
   14. SPECIALTY ACCORDIONS LIST
   -------------------------------------------------------------------------- */
.services-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 900px;
  margin: 0 auto;
}

.pillar-section {
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background-color: var(--bg-light-sec);
  overflow: hidden;
  transition: var(--transition-smooth);
}
body[data-theme="dark"] .pillar-section {
  border-color: var(--border-dark);
  background-color: var(--bg-dark-sec);
}

.pillar-section.active {
  border-color: var(--accent-gold-border);
  box-shadow: var(--shadow-premium);
}

.pillar-header {
  width: 100%;
  background: none;
  border: none;
  padding: 2.2rem 2.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.pillar-title-group {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.pillar-number {
  font-family: var(--font-headings);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--accent-gold);
  line-height: 1;
  opacity: 0.8;
}

.pillar-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pillar-name {
  font-size: 1.8rem;
  color: var(--text-dark-primary);
  font-weight: 300;
  letter-spacing: 0.02em;
}
body[data-theme="dark"] .pillar-name {
  color: var(--text-light-primary);
}

.pillar-tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-dark-secondary);
  opacity: 0.8;
}
body[data-theme="dark"] .pillar-tagline {
  color: var(--text-light-secondary);
}

.pillar-info-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.pillar-count {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark-secondary);
  opacity: 0.6;
}
body[data-theme="dark"] .pillar-count {
  color: var(--text-light-secondary);
}

.pillar-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark-primary);
  transition: var(--transition-smooth);
}
body[data-theme="dark"] .pillar-toggle {
  border-color: var(--border-dark);
  color: var(--text-light-primary);
}

.pillar-toggle svg {
  transition: transform 0.4s ease;
}

.pillar-section.active .pillar-toggle {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #fff;
}

.pillar-section.active .pillar-toggle svg {
  transform: rotate(45deg);
}

.pillar-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-cards-container {
  padding: 0 2.8rem 2.8rem 2.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pillar-card {
  background-color: var(--bg-light-base);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.8rem;
  box-shadow: var(--shadow-card);
  height: 240px;
}
body[data-theme="dark"] .pillar-card {
  background-color: var(--bg-dark-base);
  border-color: var(--border-dark);
}

.pillar-card-top {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pillar-card-icon {
  color: var(--accent-gold);
  width: 26px;
  height: 26px;
  margin-bottom: 0.2rem;
  opacity: 0.9;
}

.pillar-card-top h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pillar-card-top p {
  font-size: 0.82rem;
  color: var(--text-dark-secondary);
  line-height: 1.5;
}
body[data-theme="dark"] .pillar-card-top p {
  color: var(--text-light-secondary);
}

.pillar-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}
body[data-theme="dark"] .pillar-card-bottom {
  border-color: var(--border-dark);
}

.pillar-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
}

.pillar-card-action {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}
body[data-theme="dark"] .pillar-card-action {
  color: var(--text-light-primary);
}

.pillar-card-action:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   15. LOCATION, MAPS & DETAILS
   -------------------------------------------------------------------------- */
.location-section {
  padding: 7rem 0;
  background-color: var(--bg-light-sec);
  transition: var(--transition-color);
}
body[data-theme="dark"] .location-section {
  background-color: var(--bg-dark-sec);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.2rem;
}

.contact-card-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.card-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-light-base);
  border: 1px solid var(--border-light);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}
body[data-theme="dark"] .card-icon-circle {
  background-color: var(--bg-dark-base);
  border-color: var(--border-dark);
}

.contact-card-item h6 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  opacity: 0.95;
}

.contact-card-item p {
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
  line-height: 1.6;
}
body[data-theme="dark"] .contact-card-item p {
  color: var(--text-light-secondary);
}

.address-copy-link {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  cursor: pointer;
  margin-top: 0.4rem;
  transition: var(--transition-smooth);
}

.address-copy-link:hover {
  color: var(--accent-gold-hover);
  transform: translateX(3px);
}

.tel-link {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark-primary);
}
body[data-theme="dark"] .tel-link {
  color: var(--text-light-primary);
}

.tel-link:hover {
  color: var(--accent-gold);
}

.sub-contact {
  font-size: 0.72rem !important;
  opacity: 0.75;
  margin-top: 0.1rem;
}

.hours-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 0.2rem;
}

.hours-table td {
  padding: 0.3rem 0;
  font-size: 0.88rem;
  color: var(--text-dark-secondary);
}
body[data-theme="dark"] .hours-table td {
  color: var(--text-light-secondary);
}

.hours-table td:nth-child(2) {
  text-align: right;
  font-weight: 600;
}

/* Beautiful custom Google maps wrapper with editorial overlay banner */
.map-frame-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-light);
  height: 480px;
}
body[data-theme="dark"] .map-frame-wrapper {
  border-color: var(--border-dark);
}

#google-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(10%) contrast(1.05); /* Soft, artistic, premium desaturation mapping */
}

.map-overlay-banner {
  position: absolute;
  bottom: 1.8rem;
  left: 1.8rem;
  right: 1.8rem;
  background-color: var(--bg-glass-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 1.2rem 1.6rem;
  box-shadow: var(--shadow-premium);
  z-index: 10;
}
body[data-theme="dark"] .map-overlay-banner {
  background-color: var(--bg-glass-dark);
  border-color: var(--border-dark);
}

.banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.banner-inner p {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* --------------------------------------------------------------------------
   16. LUXURY MINIMALIST FOOTER
   -------------------------------------------------------------------------- */
.main-footer {
  background-color: #141412;
  color: #c7c4be;
  padding: 6.5rem 0 3.5rem 0;
  border-top: 1px solid rgba(245, 243, 239, 0.05);
}

.footer-content-row {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 5.5rem;
}

.footer-brand-pane {
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand .brand-name {
  color: #fff !important;
}

.footer-philosophy {
  font-size: 0.85rem;
  line-height: 1.8;
  opacity: 0.75;
}

.footer-links-grid {
  display: flex;
  gap: 5.5rem;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-col h6 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 0.6rem;
}

.footer-links-col a {
  font-size: 0.82rem;
  opacity: 0.7;
}

.footer-links-col a:hover {
  opacity: 1;
  color: var(--accent-gold);
  transform: translateX(3px);
}

.footer-bottom-row {
  border-top: 1px solid rgba(245, 243, 239, 0.05);
  padding-top: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.copyright-txt {
  font-size: 0.75rem;
  opacity: 0.55;
  margin: 0;
}

.medical-disclaimer-txt {
  font-size: 0.68rem;
  line-height: 1.6;
  opacity: 0.4;
  margin: 0;
}

/* --------------------------------------------------------------------------
   17. FLOATERS & TOAST CUSTOM POPUP
   -------------------------------------------------------------------------- */
/* Toast alert box */
.toast {
  position: fixed;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background-color: var(--accent-gold);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  z-index: 100000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 1;
}

.toast.hidden {
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  pointer-events: none;
}

/* Floating WhatsApp button launcher */
.whatsapp-floater {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  bottom: 2rem;
  left: 2rem;
  background-color: #25D366;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: var(--transition-smooth);
}

.whatsapp-floater:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.whatsapp-floater img {
  width: 26px;
  height: 26px;
}

/* Floating Scroll-to-Top trigger button */
.scroll-top-floater {
  position: fixed;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--bg-light-sec);
  border: 1px solid var(--border-light);
  color: var(--text-dark-primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  cursor: pointer;
  transition: var(--transition-smooth);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
body[data-theme="dark"] .scroll-top-floater {
  background-color: var(--bg-dark-sec);
  border-color: var(--border-dark);
  color: var(--text-light-primary);
}

.scroll-top-floater.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-floater:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .service-slider {
    grid-template-columns: repeat(3, 1fr);
  }
  .ser-box:nth-child(4), .ser-box:nth-child(5) {
    grid-column: span 1.5;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 15px;
  }
  
  .desktop-nav, .btn-header-cta {
    display: none;
  }
  
  .mobile-hamburger {
    display: flex;
  }
  
  .hero-grid, .skin-mapping-grid, .expert-container-grid, .why-choose-grid, .booking-grid, .location-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .expert-image-wrapper img {
    height: 480px;
  }
  
  .service-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  .ser-box:nth-child(4), .ser-box:nth-child(5) {
    grid-column: span 1;
  }
  
  .booking-info-pane {
    padding: 3.5rem;
    border-right: none;
    border-bottom: 1px solid var(--accent-gold-border);
  }
  
  .booking-form-pane {
    padding: 3.5rem;
  }
  
  .footer-content-row {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-links-grid {
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  
  .primary-heading h3 {
    font-size: 2.2rem;
  }
  
  .service-slider {
    grid-template-columns: 1fr;
  }
  
  .ser-box {
    height: 420px;
  }
  
  .celeb-placeholder-box {
    height: 420px;
  }
  
  .pillar-header {
    padding: 1.8rem;
  }
  .pillar-cards-container {
    padding: 0 1.8rem 1.8rem 1.8rem;
    grid-template-columns: 1fr;
  }
  
  .grid-2-col, .time-slots-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .booking-info-pane, .booking-form-pane, .analysis-panel-card, .drawer-body {
    padding: 2.2rem 1.8rem;
  }
  
  .expert-image-wrapper img, .why-image-wrapper img, .map-frame-wrapper {
    height: 380px;
  }
  
  .media-logo-placeholder span {
    font-size: 1.2rem;
  }
}
