/* === MASTER DESIGN SYSTEM TOKENS === */
/* ==========================================================================
   DERMIS 365 v2 - LUXURY DESIGN SYSTEM & THEME TOKENS (ALIGNED WITH V1)
   ========================================================================== */

:root {
  /* 🎨 Primary Brand Luxury Color Palette (V1 Paru UI Tokens) */
  --color-gold-primary: #CDAD7B;
  --color-gold-hover: #B89663;
  --color-gold-light: #F4ECE1;
  --color-gold-muted: rgba(205, 173, 123, 0.15);
  
  --color-olive-dark: #2C351E;
  --color-olive-sage: #384227;
  --color-charcoal-dark: #4E5B4C;
  --color-charcoal-card: #3F4C3E;
  --color-charcoal-border: #5F705E;

  
  --color-cream-bg: #FAF8F5;
  --color-surface-white: #FFFFFF;
  --color-surface-card: #FFFFFF;
  
  --color-text-dark: #1C1D1F;
  --color-text-body: #373A40;
  --color-text-muted: #4A4E57;
  --color-text-light: #F3F4F6;
  --color-text-light-muted: rgba(255, 255, 255, 0.88);

  --color-primary: #4E5B4C;
  --color-primary-hover: #3F4C3E;
  --color-primary-light: #F4ECE1;
  --color-accent: #CDAD7B;
  --color-accent-hover: #B89663;

  /* 🌙 Dark Mode / Dark Theme Surfaces */
  --color-bg-main: #FAF8F5;
  --color-bg-surface: #FFFFFF;
  --color-bg-card: #FFFFFF;
  --color-bg-dark: #4E5B4C;
  --color-text-dark-surface: rgba(255, 255, 255, 0.88);

  /* 🔤 Typography & Font Tokens */
  --font-family-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-family-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: var(--font-family-serif);
  --font-heading: var(--font-family-serif);
  --font-body: var(--font-family-sans);
  
  --font-size-xs: 0.75rem;     /* 12px */
  --font-size-sm: 0.875rem;    /* 14px */
  --font-size-base: 1rem;      /* 16px */
  --font-size-lg: 1.125rem;    /* 18px */
  --font-size-xl: 1.25rem;     /* 20px */
  --font-size-2xl: 1.5rem;     /* 24px */
  --font-size-3xl: 1.875rem;   /* 30px */
  --font-size-4xl: 2.25rem;    /* 36px */
  --font-size-5xl: 3rem;       /* 48px */

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* 🖋️ Neutral Text Colors */
  --color-text-main: #1C1D1F;
  --color-border: #E8E5DF;

  /* 📐 Layout Spacing & Gap System */
  --spacing-xs: 0.25rem;  /* 4px */
  --spacing-sm: 0.5rem;   /* 8px */
  --spacing-md: 1rem;     /* 16px */
  --spacing-lg: 1.5rem;   /* 24px */
  --spacing-xl: 2rem;     /* 32px */
  --spacing-2xl: 3rem;    /* 48px */
  --spacing-3xl: 4rem;    /* 64px */

  /* 🔳 UI Borders & Radius Tokens */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* ✨ Shadows & Elevation */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.35);

  /* ⚡ Transitions & Animation Timing */
  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 250ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 350ms cubic-bezier(0.16, 1, 0.3, 1);

  /* 📱 Container Max Widths */
  --container-max-width: 1280px;
  --wrap-max: 1280px;
  --header-height: 84px;
  --topbar-height: 40px;
}

/* ==========================================================================
   DERMIS 365 v2 - CORE BASE STYLESHEET
   ========================================================================== */



/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-base);
  color: var(--color-text-main);
  background-color: var(--color-bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Luxury Scrollbar (Webkit & Firefox) */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold-primary, #CDAD7B) var(--color-bg-main, #FAF8F5);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-main, #FAF8F5);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #F5E5C9 0%, #CDAD7B 50%, #9E7B42 100%);
  border-radius: 10px;
  border: 1.5px solid var(--color-bg-main, #FAF8F5);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #CDAD7B 0%, #B89663 50%, #7E602F 100%);
}

.container {
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-serif);
  color: var(--color-text-main);
  line-height: 1.25;
  margin-bottom: var(--spacing-sm);
}

h1 { font-size: var(--font-size-4xl); font-weight: var(--font-weight-bold); }
h2 { font-size: var(--font-size-3xl); font-weight: var(--font-weight-semibold); }
h3 { font-size: var(--font-size-2xl); font-weight: var(--font-weight-semibold); }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-hover);
}

/* Centralized Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-call {
  background-color: var(--color-accent);
  color: #ffffff;
}

.btn-call:hover {
  background-color: var(--color-accent-hover);
  color: #ffffff;
}

/* Site Header & Navigation */
.topbar {
  background: var(--color-bg-dark, #0F172A);
  color: var(--color-text-dark-surface, #F8FAFC);
  font-size: var(--font-size-xs, 0.75rem);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.topbar-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(248, 250, 252, 0.85);
}

.topbar-info-item svg {
  stroke: var(--color-accent, #D97706);
  flex-shrink: 0;
}

.topbar-phone-link {
  color: var(--color-accent, #D97706);
  font-weight: var(--font-weight-semibold);
  transition: color var(--transition-fast);
}

.topbar-phone-link:hover {
  color: var(--color-accent-hover, #B45309);
}

/* Sticky Main Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border, #E5E7EB);
  height: 80px;
  display: flex;
  align-items: center;
  transition: height var(--transition-base), box-shadow var(--transition-base);
}

.main-header.scrolled {
  height: 68px;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .header-logo-img {
  transform: scale(1.03);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-menu-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu-list > .menu-item {
  position: relative;
  padding: 24px 0;
}

.nav-menu-list > .menu-item > a {
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-main, #1F2937);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

.nav-menu-list > .menu-item:hover > a {
  color: var(--color-primary, #0D5C3A);
}

/* Caret Arrow Indicator for Dropdown Menus */
.nav-menu-list > .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition-fast);
  margin-left: 4px;
  margin-bottom: 2px;
}

.nav-menu-list > .menu-item-has-children:hover > a::after {
  transform: rotate(225deg);
  margin-bottom: -2px;
}

/* Dropdown Sub-menu */
.nav-menu-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-bg-dark, #0F172A);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg, 0.75rem);
  box-shadow: var(--shadow-xl);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 1050;
}

.nav-menu-list .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu-list .sub-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu-list .sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: rgba(248, 250, 252, 0.88);
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-menu-list .sub-menu li a:hover {
  background: rgba(217, 119, 6, 0.15);
  color: var(--color-accent, #D97706);
  padding-left: 24px;
}

/* Header Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.btn-call-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.btn-call-header:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary-hover);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--color-text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-nav-bottom {
  display: none;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .topbar-info-item:first-child {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--color-bg-main);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-lg);
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav-menu-list > .menu-item {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-menu-list .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: var(--color-bg-surface);
    border: none;
    padding: 6px 0;
    margin-top: 8px;
    display: none;
  }

  .nav-menu-list .menu-item-has-children.active > .sub-menu {
    display: block;
  }

  .nav-menu-list .sub-menu li a {
    color: var(--color-text-main);
    padding: 8px 16px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .btn-call-header span {
    display: none;
  }

  .mobile-nav-bottom {
    display: block;
    width: 100%;
    margin-top: var(--spacing-xl);
  }

  .mobile-book-now-btn {
    width: 100%;
  }
}

.site-footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-dark-surface);
  padding: var(--spacing-2xl) 0;
  margin-top: var(--spacing-3xl);
  text-align: center;
}

/* Floating WhatsApp Widget */
.whatsapp-floating-widget {
  position: fixed;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  z-index: 1000;
}

.wa-btn {
  background-color: #25D366;
  color: #ffffff;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-bold);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: #ffffff;
}


/* Component CSS: button.css */
/* ==========================================================================
   DERMIS 365 v2 - REUSABLE ATOMIC BUTTON COMPONENT STYLES
   Location: src/components/atomic-components/button.css
   ========================================================================== */

.dermis-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family-sans);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
}

.dermis-btn-icon {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.dermis-btn:hover .dermis-btn-icon {
  transform: translate(2px, -2px);
}

/* 📏 Size Variants */
.dermis-btn-sm {
  padding: 8px 16px;
  font-size: var(--font-size-xs, 0.75rem);
}

.dermis-btn-md {
  padding: 12px 24px;
  font-size: var(--font-size-sm, 0.875rem);
}

.dermis-btn-lg {
  padding: 16px 32px;
  font-size: var(--font-size-base, 1rem);
}

/* 🎨 Color & Style Variants */

/* 1. Primary Solid Brand Button */
.dermis-btn-primary {
  background-color: var(--color-primary, #4E5B4C);
  color: #FFFFFF;
  border: 1px solid var(--color-primary, #4E5B4C);
  box-shadow: var(--shadow-sm);
}

.dermis-btn-primary:hover {
  background-color: var(--color-primary-hover, #3F4C3E);
  border-color: var(--color-primary-hover, #3F4C3E);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* 2. Gold Metallic Luxury Gradient Variant */
.dermis-btn-gold {
  background: linear-gradient(135deg, #CDAD7B 0%, #B89663 100%);
  color: #0A0D0A;
  border: 1px solid var(--color-gold-primary, #CDAD7B);
  box-shadow: 0 4px 16px rgba(205, 173, 123, 0.25);
}

.dermis-btn-gold:hover {
  background: linear-gradient(135deg, #DFBE8C 0%, #CDAD7B 100%);
  color: #0A0D0A;
  box-shadow: 0 8px 24px rgba(205, 173, 123, 0.38);
  transform: translateY(-2px);
}

/* 3. Frosted Dark Glass Outline Variant */
.dermis-btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dermis-btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* 4. Call / Contact Outline Variant */
.dermis-btn-call-outline {
  background: transparent;
  color: var(--color-primary, #4E5B4C);
  border: 1.5px solid var(--color-primary, #4E5B4C);
}

.dermis-btn-call-outline:hover {
  background-color: var(--color-primary-light, #F4ECE1);
  color: var(--color-primary-hover, #3F4C3E);
  border-color: var(--color-primary-hover, #3F4C3E);
  transform: translateY(-1px);
}

/* 5. Minimal Link Variant */
.dermis-btn-link {
  background: transparent;
  color: var(--color-gold-primary, #CDAD7B);
  border: none;
  padding: 0;
  border-radius: 0;
}

.dermis-btn-link:hover {
  color: var(--color-gold-hover, #B89663);
  text-decoration: underline;
}


/* Component CSS: cursor.css */
/* ==========================================================================
   DERMIS 365 v2 - LUXURY SINGLE-LAYER KINETIC CURSOR
   Ultra-clean single-element kinetic follower with brand color inversion
   ========================================================================== */

@media (pointer: fine) {
  /* Hide default browser cursor */
  html, body, a, button, input, select, textarea, [role="button"], label, summary, .card, iframe {
    cursor: none !important;
  }

  /* Root Cursor Canvas Container */
  #dermis-custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none !important;
    z-index: 999999;
    overflow: hidden;
  }

  /* 🌟 SINGLE UNIFIED KINETIC CURSOR DOT (12px default) */
  .dermis-cursor-single {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    margin-left: -6px;
    border-radius: 50%;
    border: 1.5px solid var(--color-gold-primary, #CDAD7B);
    background: var(--color-gold-primary, #CDAD7B);
    box-shadow: 0 0 12px rgba(205, 173, 123, 0.85);
    pointer-events: none !important;
    z-index: 100000;
    opacity: 0;
    will-change: transform, width, height, margin, background-color, border-color, box-shadow;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 
      width 0.24s cubic-bezier(0.16, 1, 0.3, 1),
      height 0.24s cubic-bezier(0.16, 1, 0.3, 1),
      margin 0.24s cubic-bezier(0.16, 1, 0.3, 1),
      background-color 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease,
      opacity 0.2s ease;
  }

  /* 🌟 DYNAMIC BRAND COLOR INVERSION STATES */
  /* Over Light Backgrounds (White / Cream) -> Contrast with Deep Luxury Olive #1E2514 */
  body.cursor-on-light .dermis-cursor-single {
    background: #1E2514;
    border-color: #1E2514;
    box-shadow: 0 0 12px rgba(30, 37, 20, 0.4);
  }

  /* Over Dark Backgrounds (Deep Olive / Night) -> Contrast with Luminous Gold #F5E5C9 */
  body.cursor-on-dark .dermis-cursor-single {
    background: #F5E5C9;
    border-color: #F5E5C9;
    box-shadow: 0 0 14px rgba(245, 229, 201, 0.9);
  }

  /* Over Gold Surfaces -> Contrast with Deep Charcoal #15190E */
  body.cursor-on-gold .dermis-cursor-single {
    background: #15190E;
    border-color: #FFFFFF;
    box-shadow: 0 0 14px rgba(21, 25, 14, 0.85);
  }

  /* Favicon Loading State Spinner */
  .dermis-cursor-favicon-loader {
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.4);
    pointer-events: none !important;
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100001;
  }

  .dermis-cursor-favicon-img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(205, 173, 123, 0.85));
    animation: dermisFaviconPulse 1.5s ease-in-out infinite alternate;
  }

  .dermis-favicon-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--color-gold-primary, #CDAD7B);
    border-right-color: rgba(205, 173, 123, 0.4);
    animation: dermisFaviconSpin 0.75s linear infinite;
  }

  @keyframes dermisFaviconSpin {
    100% { transform: rotate(360deg); }
  }

  @keyframes dermisFaviconPulse {
    0% { transform: scale(0.92); opacity: 0.85; }
    100% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 12px rgba(205, 173, 123, 1)); }
  }

  /* 🌟 PAGE LOADING STATE */
  body.cursor-is-loading .dermis-cursor-single {
    width: 68px;
    height: 68px;
    margin-top: -34px;
    margin-left: -34px;
    background: rgba(30, 37, 20, 0.95);
    border-color: var(--color-gold-primary, #CDAD7B);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(205, 173, 123, 0.4);
  }

  body.cursor-is-loading .dermis-cursor-favicon-loader {
    opacity: 1;
    transform: scale(1);
  }

  /* Contextual Typography Badge */
  .dermis-cursor-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    pointer-events: none !important;
  }

  .dermis-cursor-text {
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #1E2514;
    opacity: 0;
    transform: scale(0.65);
    pointer-events: none !important;
    transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    z-index: 2;
  }

  /* 🌟 HOVER STATE 1: Standard Links & Clickable Elements */
  body.cursor-hover-link .dermis-cursor-single {
    width: 44px;
    height: 44px;
    margin-top: -22px;
    margin-left: -22px;
    background: rgba(205, 173, 123, 0.2);
    border-color: var(--color-gold-primary, #CDAD7B);
    box-shadow: 0 0 15px rgba(205, 173, 123, 0.35);
  }

  body.cursor-hover-link.cursor-on-light .dermis-cursor-single {
    background: rgba(30, 37, 20, 0.15);
    border-color: #1E2514;
  }

  /* 🌟 HOVER STATE 2: CTA Buttons (Book / Call / Chat) */
  body.cursor-hover-cta .dermis-cursor-single {
    width: 82px;
    height: 82px;
    margin-top: -41px;
    margin-left: -41px;
    background: linear-gradient(135deg, #F5E5C9 0%, #CDAD7B 50%, #9E7B42 100%);
    border-color: transparent;
    box-shadow: 0 14px 40px rgba(205, 173, 123, 0.55), 0 0 20px rgba(205, 173, 123, 0.35);
  }

  body.cursor-hover-cta .dermis-cursor-text {
    opacity: 1;
    transform: scale(1);
    color: #1E2514;
  }

  /* 🌟 HOVER STATE 3: Media & Treatment Cards */
  body.cursor-hover-media .dermis-cursor-single {
    width: 86px;
    height: 86px;
    margin-top: -43px;
    margin-left: -43px;
    background: rgba(30, 37, 20, 0.95);
    border: 1.5px solid var(--color-gold-primary, #CDAD7B);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5);
  }

  body.cursor-hover-media .dermis-cursor-text {
    opacity: 1;
    transform: scale(1);
    color: var(--color-gold-primary, #CDAD7B);
  }

  /* 🌟 HOVER STATE 4: Drag Sliders */
  body.cursor-hover-drag .dermis-cursor-single {
    width: 78px;
    height: 78px;
    margin-top: -39px;
    margin-left: -39px;
    background: rgba(205, 173, 123, 0.96);
    border-color: #FFFFFF;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  }

  body.cursor-hover-drag .dermis-cursor-text {
    opacity: 1;
    transform: scale(1);
    color: #1E2514;
  }

  /* 🌟 ACTIVE CLICK FEEDBACK - Compact 8px Tactile Compression Dot */
  body.cursor-active .dermis-cursor-single {
    width: 8px !important;
    height: 8px !important;
    margin-top: -4px !important;
    margin-left: -4px !important;
    background: var(--color-gold-primary, #CDAD7B) !important;
    border: 1.5px solid #FFFFFF !important;
    box-shadow: 0 0 14px rgba(205, 173, 123, 0.95) !important;
  }

  body.cursor-active.cursor-on-light .dermis-cursor-single {
    background: #1E2514 !important;
    border: 1.5px solid #CDAD7B !important;
    box-shadow: 0 0 14px rgba(30, 37, 20, 0.95) !important;
  }

  body.cursor-active.cursor-on-gold .dermis-cursor-single {
    background: #15190E !important;
    border: 1.5px solid #FFFFFF !important;
    box-shadow: 0 0 14px rgba(21, 25, 14, 0.95) !important;
  }

  body.cursor-active .dermis-cursor-text {
    opacity: 0 !important;
  }
}

/* Accessibility: Disable cursor animations if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  #dermis-custom-cursor {
    display: none !important;
  }
  html, body, a, button, input, select, textarea, [role="button"], label, summary, .card, iframe {
    cursor: auto !important;
  }
}

/* Mobile & Touch Safety Override */
@media (pointer: coarse), (hover: none) {
  #dermis-custom-cursor {
    display: none !important;
  }
  html, body, a, button, input, select, textarea, [role="button"], label, summary, .card, iframe {
    cursor: auto !important;
  }
}


/* Component CSS: footer.css */
/* ==========================================================================
   DERMIS 365 v2 - FOOTER COMPONENT STYLES
   Location: src/components/footer/footer.css
   ========================================================================== */

.main-footer {
  background: var(--color-bg-dark, #0F172A);
  color: var(--color-text-dark-surface, #F8FAFC);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: var(--font-size-sm, 0.875rem);
  line-height: 1.65;
  color: rgba(248, 250, 252, 0.82);
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: var(--font-size-lg, 1.125rem);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--color-accent, #D97706);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: var(--font-size-sm, 0.875rem);
  color: rgba(248, 250, 252, 0.8);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent, #D97706);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-style: normal;
  font-size: var(--font-size-sm, 0.875rem);
}

.footer-clinic-name {
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  color: #FFFFFF;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  color: rgba(248, 250, 252, 0.85);
}

.footer-contact-item svg {
  color: var(--color-accent, #D97706);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: rgba(248, 250, 252, 0.88);
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--color-accent, #D97706);
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  align-items: center;
}

.footer-socials a {
  color: rgba(248, 250, 252, 0.85);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-socials a:hover {
  color: var(--color-accent, #D97706);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: var(--font-size-xs, 0.75rem);
  color: rgba(248, 250, 252, 0.7);
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* Component CSS: header.css */
/* ==========================================================================
   DERMIS 365 v2 - WHITE NAVIGATION HEADER & SMART SCROLL HIDING
   Clean white luxury header with dark typography, gold accents,
   and smart scroll-direction hiding/revealing logic.
   ========================================================================== */

/* Topbar Announcement & Contact Bar */
.topbar {
  background: #F7F4EE;
  color: #1C2314;
  font-size: var(--font-size-xs, 0.75rem);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1001;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.topbar-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1C2314;
  font-weight: 500;
}

.topbar-info-item svg {
  stroke: var(--color-gold-primary, #CDAD7B);
  flex-shrink: 0;
}

.topbar-phone-link {
  color: var(--color-gold-primary, #CDAD7B);
  font-weight: var(--font-weight-bold, 700);
  transition: color var(--transition-fast);
}

.topbar-phone-link:hover {
  color: #9B7B4B;
}

/* Warm Cream Main Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FDFBF7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  height: 84px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s ease, background-color 0.3s ease;
}

.main-header.scrolled {
  height: 72px;
  background: #FDFBF7;
  border-bottom: 1px solid rgba(205, 173, 123, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Smart Scroll-Direction Hiding Class */
.main-header.header-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .header-logo-img {
  transform: scale(1.03);
}

/* Header Navigation Menu Items */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-menu-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu-list > .menu-item {
  position: relative;
  padding: 24px 0;
}

.nav-menu-list > .menu-item > a {
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: var(--font-weight-semibold);
  color: #0A0D0A;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

.nav-menu-list > .menu-item:hover > a {
  color: var(--color-gold-primary, #CDAD7B);
}

/* Caret Arrow Indicator */
.nav-menu-list > .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition-fast);
  margin-left: 4px;
  margin-bottom: 2px;
}

.nav-menu-list > .menu-item-has-children:hover > a::after {
  transform: rotate(225deg);
  margin-bottom: -2px;
}

/* Dropdown Sub-menu */
.nav-menu-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #FFFFFF;
  border: 1px solid rgba(205, 173, 123, 0.3);
  border-radius: var(--radius-lg, 0.75rem);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 1050;
}

.nav-menu-list .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu-list .sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: #0A0D0A;
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-menu-list .sub-menu li a:hover {
  background: rgba(205, 173, 123, 0.1);
  color: var(--color-gold-primary, #CDAD7B);
  padding-left: 24px;
}

/* Header Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.btn-call-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gold-primary, #CDAD7B);
  border: 1.5px solid rgba(205, 173, 123, 0.6);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.btn-call-header:hover {
  background-color: rgba(205, 173, 123, 0.15);
  color: #0A0D0A;
  border-color: var(--color-gold-primary, #CDAD7B);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: #0A0D0A;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-nav-bottom {
  display: none;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .topbar-info-item:first-child {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: #1C2314;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-lg);
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav-menu-list > .menu-item {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu-list .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 6px 0;
    margin-top: 8px;
    display: none;
  }

  .nav-menu-list .menu-item-has-children.active > .sub-menu {
    display: block;
  }

  .nav-menu-list .sub-menu li a {
    color: #FFFFFF;
    padding: 8px 16px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .btn-call-header span {
    display: none;
  }

  .mobile-nav-bottom {
    display: block;
    width: 100%;
    margin-top: var(--spacing-xl);
  }

  .mobile-book-now-btn {
    width: 100%;
  }
}


/* Component CSS: hero.css */
/* ==========================================================================
   DERMIS 365 v2 - CLEAN EDITORIAL PINNED HERO COMPONENT
   Floating morphing card canvas (initial: 40px margin, 32px border-radius)
   Warm luxury cream outer canvas (#FDFBF7) & unified editorial hierarchy.
   ========================================================================== */

/* 📌 Outer Scroll Pin Track (250vh scroll distance for frame scrubbing) */
.hero-scroll-pin-wrapper {
  position: relative;
  height: 250vh;
  background-color: #FDFBF7; /* Warm luxury cream background */
  color: #FFFFFF;
}

/* 🎯 Sticky Pinned Container (Locked to Viewport) */
.hero-pin-container {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(16px, 3vh, 32px) 0;
}

/* 🎥 Layer 0: Morphing Canvas Card Viewport */
.hero-canvas-viewport {
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  width: calc(100% - 80px);
  height: 100vh;
  border-radius: 32px;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              right 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Pinned Full-Bleed Morphing State */
.hero-canvas-viewport.is-pinned {
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 0px;
  box-shadow: none;
}

.hero-scroll-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Multi-gradient luxury vignette for soft background blending */
.hero-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(10, 13, 10, 0.3) 0%, rgba(10, 13, 10, 0.88) 85%),
    linear-gradient(180deg, rgba(10, 13, 10, 0.75) 0%, rgba(10, 13, 10, 0.2) 45%, rgba(10, 13, 10, 0.95) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Sub-dermal precision clinical grid background pattern */
.hero-canvas-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(205, 173, 123, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(205, 173, 123, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}

/* Gold Ambient Spotlight Glow */
.hero-ambient-glow {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 40vh;
  background: radial-gradient(circle, rgba(205, 173, 123, 0.16) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 2;
  pointer-events: none;
}

/* 🏷️ Layer 1: Unified Editorial Content Hierarchy Flow */
.hero-editorial-content {
  position: relative;
  z-index: 10;
  margin-top: auto;
  margin-bottom: auto;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 4vh, 48px) 0;
}

.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: rgba(205, 173, 123, 0.14);
  border: 1px solid rgba(205, 173, 123, 0.35);
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold-primary, #CDAD7B);
  border-radius: 50%;
  animation: heroPulse 2s infinite ease-in-out;
}

.hero-eyebrow-text {
  font-family: var(--font-family-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-gold-primary, #CDAD7B);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-display-title {
  font-family: var(--font-family-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: var(--font-weight-bold, 700);
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95);
  margin: 0 0 var(--spacing-md) 0;
}

.hero-title-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold-primary, #CDAD7B);
  background: linear-gradient(135deg, #FFFFFF 0%, #CDAD7B 60%, #9B7B4B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-editorial-subtitle {
  font-family: var(--font-family-sans);
  font-size: clamp(0.95rem, 1.1vw, 1.125rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  max-width: 680px;
}

/* 🔘 Action Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* 📍 Layer 2: Minimal Scroll Prompt Indicator (Bottom Right) */
.hero-footer-prompt {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  width: 100%;
}

.hud-scroll-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-text {
  font-family: var(--font-family-mono, monospace);
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.14em;
}

.scroll-track {
  position: relative;
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(205, 173, 123, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-thumb {
  width: 4px;
  height: 7px;
  background: var(--color-gold-primary, #CDAD7B);
  border-radius: 4px;
  animation: scrollThumb 1.8s infinite ease-in-out;
}

/* 💫 Keyframe Animations */
@keyframes heroPulse {
  0% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.15); }
  100% { opacity: 0.5; transform: scale(0.95); }
}

@keyframes scrollThumb {
  0% { opacity: 1; transform: translateY(0); }
  60% { opacity: 0.2; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 📱 Responsive Layout Handling */
@media (max-width: 992px) {
  .hero-canvas-viewport {
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    border-radius: 24px;
  }
}

@media (max-width: 576px) {
  .hero-scroll-pin-wrapper {
    height: 180vh;
  }

  .hero-canvas-viewport {
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
}






/* === V1 PARU UI GLOBAL STYLES === */
/* ==========================================================================
   DERMIS 365 PURE - GLOBAL DESIGN SYSTEM TOKENS & BASE STYLES
   Global base stylesheet: /css/global.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & ROOT VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette - Luxury Warm Gold & Rich Charcoal */
  --color-gold-primary: #CDAD7B;
  --color-gold-hover: #B89663;
  --color-gold-light: #F4ECE1;
  --color-gold-muted: rgba(205, 173, 123, 0.15);
  
  --color-charcoal-dark: #4E5B4C;
  --color-charcoal-card: #3F4C3E;
  --color-charcoal-border: #5F705E;
  
  --color-cream-bg: #FAF8F5;
  --color-surface-white: #FFFFFF;
  --color-surface-card: #FFFFFF;
  
  --color-text-dark: #1C1D1F;
  --color-text-body: #373A40;
  --color-text-muted: #4A4E57;
  --color-text-light: #F3F4F6;
  --color-text-light-muted: rgba(255, 255, 255, 0.88);
  
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #20BA5A;
  --color-border-light: #E8E5DF;
  --color-border-dark: rgba(255, 255, 255, 0.1);

  /* Surface 4: Award-Winning Grainy Warm Gold Atmosphere */
  --color-gold-bg: #F5EFE6;
  --bg-grainy-gold: radial-gradient(circle at 50% 0%, #FAF4EB 0%, #F3EBE0 60%, #EADECF 100%),
                    radial-gradient(circle at 100% 100%, rgba(205, 173, 123, 0.12) 0%, transparent 60%),
                    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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.035'/%3E%3C/svg%3E");
  
  /* Typography Stacks */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spatial & Scale Systems */
  --container-max-width: 1280px;
  --header-height: 84px;
  --topbar-height: 40px;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  
  /* Shadows & Depth */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
  --shadow-luxury: 0 20px 50px rgba(205, 173, 123, 0.12);
  --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.4);
  
  /* Motion & Physics */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-normal: 0.35s var(--ease-smooth);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-body);
  background-color: var(--color-surface-white);
  overflow-x: clip;
  position: relative;
  width: 100%;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-text-dark);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
h4 { font-size: clamp(1.2rem, 1.6vw, 1.5rem); }

em {
  font-style: italic;
  color: var(--color-gold-primary);
  font-weight: 400;
}

.wrap {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.sup {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-primary);
  margin-bottom: 12px;
}

.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.sec-head p {
  margin-top: 14px;
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

/* Section Background Variations */
.sec-wh {
  padding: 100px 0;
  background-color: var(--color-surface-white);
}

.sec-bg {
  padding: 100px 0;
  background-color: var(--color-cream-bg);
}

.sec-dk {
  padding: 100px 0;
  background-color: var(--color-charcoal-dark);
  color: var(--color-text-light);
}

.sec-dk h2, .sec-dk h3, .sec-dk h4 {
  color: var(--color-text-light);
}

/* 4th Theme Background: 2027 Award-Winning Luxury Warm Gold & Champagne Atmosphere */
.sec-gd {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: #F4EBE0;
  background-image: 
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(255, 255, 255, 0.95) 0%, transparent 60%),
    radial-gradient(ellipse 80% 70% at 85% 20%, rgba(205, 173, 123, 0.42) 0%, transparent 65%),
    radial-gradient(ellipse 70% 80% at 10% 80%, rgba(184, 150, 99, 0.35) 0%, transparent 65%),
    radial-gradient(ellipse 90% 90% at 50% 50%, #FAF0E3 0%, #EBDBC8 55%, #DFCAAF 100%),
    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.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.045'/%3E%3C/svg%3E");
  color: var(--color-text-dark);
}

.sec-gd::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 30%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(205, 173, 123, 0.08) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: auraGlow 18s ease-in-out infinite alternate;
}

.sec-gd::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(205, 173, 123, 0.15) 0%, rgba(78, 91, 76, 0.05) 50%, transparent 75%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.sec-gd > .wrap,
.sec-gd > .container {
  position: relative;
  z-index: 1;
}

@keyframes auraGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-5%, 8%) scale(1.12);
    opacity: 0.95;
  }
}

/* --------------------------------------------------------------------------
   3. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold-primary, #CDAD7B);
  color: #1A1A1A;
  box-shadow: 0 8px 20px rgba(205, 173, 123, 0.25);
  border: none;
}

.btn-primary:hover {
  background: var(--color-gold-hover, #B89663);
  color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(205, 173, 123, 0.35);
}

.btn-alt {
  background: var(--color-gold-primary);
  color: #1A1A1A;
  box-shadow: 0 8px 20px rgba(205, 173, 123, 0.25);
}

.btn-alt:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(205, 173, 123, 0.35);
}

.btn-call {
  background: var(--color-surface-white);
  color: var(--color-text-dark);
  border: 1px solid var(--color-border-light);
}

.btn-call:hover {
  border-color: var(--color-gold-primary);
  color: var(--color-gold-primary);
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--color-whatsapp);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-wa:hover {
  background: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
}

/* Master Unified Hero Large Button Specs */
.btn-hero-lg,
.btn-alt.btn-hero-lg,
.btn-wa.btn-hero-lg {
  padding: 16px 36px !important;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  border-radius: var(--radius-pill, 9999px) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  box-sizing: border-box !important;
}
/* ==========================================================================
   DERMIS 365 PURE - LIVE ON-PAGE PARAMETER EDITING STYLES
   ========================================================================== */

body.dermis-live-editing [contenteditable="true"] {
  outline: 1px dashed rgba(205, 173, 123, 0.5) !important;
  border-radius: 4px !important;
  transition: all 0.2s ease !important;
  cursor: text !important;
}

body.dermis-live-editing [contenteditable="true"]:hover {
  outline: 2px dashed #cdad7b !important;
  background: rgba(205, 173, 123, 0.08) !important;
}

body.dermis-live-editing [contenteditable="true"]:focus {
  outline: 2px solid #4de39f !important;
  background: rgba(77, 227, 159, 0.1) !important;
  box-shadow: 0 0 12px rgba(77, 227, 159, 0.25) !important;
}

/* Image Hover Replace Badge */
.dermis-img-edit-wrapper {
  position: relative !important;
  display: inline-block !important;
}

.dermis-img-edit-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(18, 20, 22, 0.75) !important;
  backdrop-filter: blur(4px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  transition: opacity 0.2s ease !important;
  cursor: pointer !important;
  z-index: 100 !important;
  border-radius: inherit !important;
}

.dermis-img-edit-wrapper:hover .dermis-img-edit-overlay {
  opacity: 1 !important;
}

.dermis-img-edit-btn {
  background: #2d7a59 !important;
  color: #fff !important;
  font-family: sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4) !important;
  border: 1px solid #4de39f !important;
}

/* Floating Live Controls Bar */
#wp-admin-edit-bar {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 99999999 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: #18241f !important;
  border: 1px solid #2e473b !important;
  padding: 10px 18px !important;
  border-radius: 30px !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6) !important;
  font-family: sans-serif !important;
  font-size: 13px !important;
  color: #e0f2e9 !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.25s ease !important;
}

#wp-admin-edit-bar.active-edit-mode {
  background: #121815 !important;
  border-color: #4de39f !important;
  box-shadow: 0 16px 50px rgba(0,0,0,0.8) !important;
}

/* Live Image Gallery Modal */
.dermis-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999999 !important;
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(8px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  font-family: sans-serif !important;
}

.dermis-modal-card {
  width: 100% !important;
  max-width: 800px !important;
  max-height: 85vh !important;
  background: #181c1a !important;
  border: 1px solid #2e473b !important;
  border-radius: 16px !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  color: #fff !important;
}

.dermis-modal-header {
  padding: 16px 20px !important;
  border-bottom: 1px solid #2e473b !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.dermis-modal-header h3 {
  font-size: 16px !important;
  color: #fff !important;
  margin: 0 !important;
  font-weight: 700 !important;
}

.dermis-modal-close {
  background: transparent !important;
  border: none !important;
  color: #8e949e !important;
  font-size: 24px !important;
  cursor: pointer !important;
}

.dermis-modal-close:hover {
  color: #fff !important;
}

.dermis-upload-box {
  padding: 16px 20px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border-bottom: 1px solid #2e473b !important;
}

.dermis-dropzone {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 14px !important;
  border: 2px dashed rgba(77, 227, 159, 0.4) !important;
  border-radius: 10px !important;
  background: rgba(77, 227, 159, 0.05) !important;
  color: #e0f2e9 !important;
  font-size: 13px !important;
  cursor: pointer !important;
}

.dermis-dropzone:hover {
  background: rgba(77, 227, 159, 0.12) !important;
  border-color: #4de39f !important;
}

.dermis-img-grid {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 16px 20px !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
  gap: 14px !important;
}

.dermis-img-card {
  background: #202623 !important;
  border: 1px solid #2e473b !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.dermis-img-card:hover {
  border-color: #4de39f !important;
  transform: translateY(-2px) !important;
}

.dermis-img-card img {
  width: 100% !important;
  height: 100px !important;
  object-fit: cover !important;
  display: block !important;
}

.dermis-img-meta {
  padding: 6px 8px !important;
  font-size: 11px !important;
  color: #a3b8ad !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* Accessible Screen Reader Only Utility Class */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* === V1 PARU UI HEADER & MEGA MENU STYLES === */
/* ==========================================================================
   DERMIS 365 PURE - LUXURY PARU UI HEADER & MEGA MENU STYLES
   ========================================================================== */

/* Topbar Announcement Bar */
.topbar {
  background: var(--color-charcoal-dark, #4E5B4C);
  color: var(--color-text-light-muted, rgba(255, 255, 255, 0.88));
  font-size: 0.8125rem;
  height: var(--topbar-height, 40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--wrap-max, 1280px);
  margin: 0 auto;
  padding: 0 24px;
}

.topbar-info {
  display: flex;
  gap: 24px;
}

.topbar-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-info-item svg {
  stroke: var(--color-gold-primary, #CDAD7B);
}

:root {
  --header-height: 84px;
}

/* Sticky Main Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-light, #E8E5DF);
  height: var(--header-height, 84px);
  display: flex;
  align-items: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-header.scrolled {
  box-shadow: 0 8px 30px rgba(28, 29, 31, 0.08);
  height: 72px;
  --header-height: 72px;
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--wrap-max, 1280px);
  margin: 0 auto;
  padding: 0 24px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  background: var(--color-charcoal-dark, #4E5B4C);
  border: 1.5px solid var(--color-gold-primary, #CDAD7B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-symbol {
  transform: rotate(15deg) scale(1.05);
}

.brand-logo picture {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logo:hover .header-logo-img {
  transform: scale(1.03);
}

.brand-name {
  font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-dark, #1C1D1F);
  letter-spacing: -0.02em;
}

.brand-name span {
  color: var(--color-gold-primary, #CDAD7B);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* WordPress Dynamic Nav Menu Styling */
.wp-nav-menu-list {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wp-nav-menu-list > .menu-item {
  position: relative;
  padding: 24px 0;
  list-style: none;
  margin: 0;
}

.wp-nav-menu-list > .menu-item > a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-dark, #1C1D1F);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}

.wp-nav-menu-list > .menu-item:hover > a {
  color: var(--color-gold-primary, #CDAD7B);
}

/* Caret Arrow for WP Items with Sub-menus */
.wp-nav-menu-list > .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-left: 4px;
  margin-bottom: 2px;
}

.wp-nav-menu-list > .menu-item-has-children:hover > a::after {
  transform: rotate(225deg);
  margin-bottom: -2px;
}

/* Luxury Dark Cream / Charcoal Dropdown Menu */
.wp-nav-menu-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(28, 32, 29, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(205, 173, 125, 0.25);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
}

.wp-nav-menu-list .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.wp-nav-menu-list .sub-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.wp-nav-menu-list .sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.wp-nav-menu-list .sub-menu li a:hover {
  background: rgba(205, 173, 125, 0.12);
  color: var(--color-gold-primary, #CDAD7B);
  padding-left: 24px;
}

/* Sub-menu level 2+ nested dropdowns */
.wp-nav-menu-list .sub-menu .menu-item-has-children {
  position: relative;
}

.wp-nav-menu-list .sub-menu .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(-45deg);
  float: right;
  margin-top: 6px;
}

.wp-nav-menu-list .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  transform: translateX(12px);
}

.wp-nav-menu-list .sub-menu .menu-item-has-children:hover > .sub-menu {
  transform: translateX(0);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-dark, #1C1D1F);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}

.arrow-icon {
  transition: transform 0.25s ease;
}

.nav-item:hover .nav-link {
  color: var(--color-gold-primary, #CDAD7B);
}

.nav-item:hover .arrow-icon {
  transform: rotate(180deg);
}

/* Dropdown Container General */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(28, 32, 29, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(205, 173, 125, 0.25);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Simple Dropdown */
.simple-dropdown {
  width: 240px;
  left: 0;
  transform: translateY(12px);
  padding: 12px 0;
}

.nav-item:hover .simple-dropdown {
  transform: translateY(0);
}

.simple-dropdown a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.simple-dropdown a:hover {
  background: rgba(205, 173, 125, 0.12);
  color: var(--color-gold-primary, #CDAD7B);
  padding-left: 24px;
}

/* MEGA MENU GRID */
.mega-menu {
  width: 1100px;
  padding: 28px 32px;
  left: 50%;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.mega-col {
  display: flex;
  flex-direction: column;
}

.col-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(205, 173, 125, 0.2);
}

.col-icon {
  color: var(--color-gold-primary, #CDAD7B);
  font-size: 0.75rem;
}

.col-head h4 {
  font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gold-primary, #CDAD7B);
  margin: 0;
  letter-spacing: 0.02em;
}

.mega-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8125rem;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: color 0.2s ease;
}

.mega-links a:hover {
  color: var(--color-gold-primary, #CDAD7B);
}

.badge-gold {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1c201d;
  background: var(--color-gold-primary, #CDAD7B);
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 2px;
  align-self: flex-start;
  letter-spacing: 0.04em;
}

/* Mega Banner Card */
.mega-featured {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mega-banner-card {
  margin-top: 14px;
  background: linear-gradient(135deg, rgba(205, 173, 125, 0.15), rgba(78, 91, 76, 0.3));
  border: 1px solid rgba(205, 173, 125, 0.3);
  border-radius: 10px;
  padding: 12px;
}

.mega-banner-card h5 {
  color: var(--color-gold-primary, #CDAD7B);
  font-size: 0.875rem;
  margin: 0 0 4px 0;
}

.mega-banner-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.mega-card-btn {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1c201d;
  background: var(--color-gold-primary, #CDAD7B);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-block;
}

/* OTHERS MEGA DROPDOWN */
.others-menu {
  width: 780px;
}

.others-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.other-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.other-card:hover {
  background: rgba(205, 173, 125, 0.12);
  border-color: rgba(205, 173, 125, 0.35);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 1.25rem;
}

.card-text {
  display: flex;
  flex-direction: column;
}

.card-text strong {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
}

.other-card:hover .card-text strong {
  color: var(--color-gold-primary, #CDAD7B);
}

.card-text span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.highlight-card {
  background: linear-gradient(135deg, rgba(205, 173, 125, 0.2), rgba(78, 91, 76, 0.4));
  border-color: var(--color-gold-primary, #CDAD7B);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: var(--color-charcoal-dark, #4E5B4C);
  color: #FFFFFF;
  border: 1px solid var(--color-gold-primary, #CDAD7B);
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(78, 91, 76, 0.2);
}

.btn-alt:hover {
  background: var(--color-gold-primary, #CDAD7B);
  color: #1C1D1F;
  box-shadow: 0 6px 18px rgba(205, 173, 125, 0.4);
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  border: 1px solid var(--color-border-light, #E8E5DF);
  background: var(--color-cream-bg, #FAF8F5);
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--color-text-dark, #1C1D1F);
  transition: transform 0.3s;
}
.mobile-nav-top,
.mobile-nav-bottom {
  display: none !important;
}

/* Hide Floating Badges (Google Rating & WhatsApp Chat) when Mobile Menu is Open */
body.menu-open .floating-google-badge,
html.menu-open .floating-google-badge,
.menu-open .floating-google-badge,
body.menu-open #aisensy-wa-widget,
body.menu-open iframe[src*="aisensy"],
body.menu-open div[id*="aisensy"],
body.menu-open [id*="aisensy"],
body.menu-open [class*="aisensy"],
body.menu-open [class*="google-badge"],
html.menu-open #aisensy-wa-widget,
html.menu-open iframe[src*="aisensy"] {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* Mobile & Responsive */
@media (max-width: 1200px) {
  .mega-menu {
    width: 95vw;
    left: 50%;
  }
  .mega-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .nav-menu {
    gap: 12px;
  }
}

@media (max-width: 992px) {
  .topbar { display: none; }
  .main-header {
    --header-height: 64px;
    height: 64px;
    background: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 10000001 !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  }
  
  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 64px);
    background: #FFFFFF !important;
    z-index: 10000000 !important;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }
  
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Mobile Top Bar inside Drawer with Brand Logo & Close Button */
  .mobile-nav-top {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #EAE5DF;
    background: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
  }

  .mobile-nav-close:hover,
  .mobile-nav-close:active {
    background: #FAF8F5;
  }

  /* Menu List Layout matching AESTETICA Mobile Spec (Centered, Narrow Block Width, Compact Typography) */
  .wp-nav-menu-list {
    flex-direction: column;
    align-items: stretch;
    width: 68%;
    max-width: 240px;
    padding: 32px 0 16px 0;
    margin: 0 auto;
    box-sizing: border-box;
    flex: 1;
  }

  .wp-nav-menu-list > .menu-item {
    width: 100%;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #EBE7E1;
  }

  .wp-nav-menu-list > .menu-item > a {
    font-family: var(--font-body, system-ui, sans-serif);
    font-size: 0.88rem;
    font-weight: 500;
    color: #333333;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    width: 100%;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
  }

  /* Chevron Icon for Items with Children (v down, ^ up) */
  .wp-nav-menu-list > .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid #666666;
    border-bottom: 1.5px solid #666666;
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-left: 8px;
    margin-bottom: 2px;
  }

  .wp-nav-menu-list > .menu-item-has-children.sub-open > a::after {
    transform: rotate(225deg);
    margin-bottom: -2px;
    border-color: var(--color-gold-primary, #CDAD7B);
  }

  .wp-nav-menu-list > .menu-item-has-children.sub-open > a {
    color: var(--color-gold-primary, #CDAD7B);
  }

  /* Sub-menu styling matching screenshot */
  .wp-nav-menu-list .sub-menu {
    display: none;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    width: 100%;
    box-shadow: none;
    background: #FAF8F5;
    border: none;
    border-top: 1px solid #F0ECE6;
    padding: 0;
    margin: 0 0 8px 0;
    border-radius: 6px;
    overflow: hidden;
  }

  .wp-nav-menu-list .menu-item-has-children.sub-open > .sub-menu {
    display: block;
  }

  .wp-nav-menu-list .sub-menu li {
    border-bottom: 1px solid #EBE7E1;
  }

  .wp-nav-menu-list .sub-menu li:last-child {
    border-bottom: none;
  }

  .wp-nav-menu-list .sub-menu li a {
    padding: 9px 14px;
    color: #555555;
    font-size: 0.82rem;
    font-weight: 450;
    display: block;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .wp-nav-menu-list .sub-menu li a:hover,
  .wp-nav-menu-list .sub-menu li a:active {
    background: rgba(205, 173, 125, 0.12);
    color: var(--color-gold-primary, #CDAD7B);
    padding-left: 18px;
  }

  /* Mobile Drawer Bottom Action CTA Area */
  .mobile-nav-bottom {
    padding: 16px 0 32px 0;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    width: 100%;
  }

  .mobile-book-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 68%;
    max-width: 200px;
    padding: 10px 20px;
    border: 1.5px solid #8C765C;
    border-radius: 40px;
    background: #FFFFFF;
    color: #333333;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .mobile-book-now-btn:hover,
  .mobile-book-now-btn:active {
    background: var(--color-charcoal-dark, #4E5B4C);
    color: #FFFFFF;
    border-color: var(--color-charcoal-dark, #4E5B4C);
  }

  .mobile-menu-toggle { display: flex; }
  .header-actions .btn-alt { display: none; }

  /* Hamburger → X animation */
  .mobile-menu-toggle span {
    transition: transform 0.3s ease, opacity 0.2s ease;
  }
  .mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}


/* === CLINICAL LUXURY HERO COMPONENT STYLES === */
/* ==============================================================================
   DERMIS 365 CLINIC - REUSABLE CLINICAL LUXURY HERO COMPONENT
   ============================================================================== */

.dermis-hero-section {
  position: relative;
  width: 100%;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  background: radial-gradient(circle at 80% 20%, rgba(205, 173, 123, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(13, 92, 58, 0.06) 0%, transparent 60%),
              var(--color-bg-primary, #fcfbf9);
  overflow: hidden;
  border-bottom: 1px solid rgba(13, 92, 58, 0.08);
}

/* Ambient Background Accent Glows */
.dermis-hero-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(205, 173, 123, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.dermis-hero-glow-2 {
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 92, 58, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

/* Layout Grid */
.dermis-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .dermis-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Eyebrow Pill */
.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(13, 92, 58, 0.06);
  border: 1px solid rgba(13, 92, 58, 0.15);
  border-radius: 50px;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 600;
  color: var(--color-primary, #0D5C3A);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 10px rgba(13, 92, 58, 0.04);
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold, #CDAD7B);
  box-shadow: 0 0 8px var(--color-gold, #CDAD7B);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Hero Typography */
.dermis-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark, #1a201c);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.dermis-hero-title .highlight-gold {
  color: var(--color-gold, #CDAD7B);
  background: linear-gradient(135deg, #0D5C3A 0%, #CDAD7B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dermis-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: var(--color-text-muted, #4a5568);
  margin-bottom: 2rem;
  max-width: 600px;
}

@media (max-width: 991px) {
  .dermis-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Hero Action CTAs */
.dermis-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

@media (max-width: 991px) {
  .dermis-hero-actions {
    justify-content: center;
  }
}

.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #0D5C3A 0%, #147a4d 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(13, 92, 58, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 92, 58, 0.35);
  background: linear-gradient(135deg, #147a4d 0%, #0D5C3A 100%);
  color: #ffffff;
}

.btn-outline-clinic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--color-primary, #0D5C3A);
  border: 1.5px solid var(--color-primary, #0D5C3A);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-clinic:hover {
  background: rgba(13, 92, 58, 0.05);
  transform: translateY(-2px);
  color: var(--color-primary, #0D5C3A);
}

/* Trust Badges / Stats Row */
.dermis-hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13, 92, 58, 0.1);
}

@media (max-width: 991px) {
  .dermis-hero-stats {
    justify-content: center;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-primary, #0D5C3A);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted, #718096);
  font-weight: 500;
}

/* Hero Right Visual Card / Showcase */
.dermis-hero-visual {
  position: relative;
}

.hero-card-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(205, 173, 123, 0.3);
  background: #ffffff;
}

.hero-card-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-card-frame:hover img {
  transform: scale(1.03);
}

/* Floating Glass Badge */
.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(205, 173, 123, 0.4);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary-light, #eaf4ef);
  color: var(--color-primary, #0D5C3A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.badge-text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-dark, #1a201c);
}

.badge-text span {
  font-size: 0.75rem;
  color: var(--color-text-muted, #718096);
}


/* Component CSS: button.css */
/* ==============================================================================
   DERMIS 365 CLINIC - AWARD-WINNING ATOMIC BUTTON SYSTEM (PARU UI/UX SKILL)
   Colocated Component Style: src/components/button/button.css
   Color Palette: Forest Green rgb(78, 91, 76), Gold #CDAD7B, WhatsApp #25D366 & #128C7E
   ============================================================================== */

/* Base Reusable Button Physics & Micro-Interactions */
.dermis-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-family-sans, 'Plus Jakarta Sans', -apple-system, sans-serif);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  border-radius: 10px;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  user-select: none;
  z-index: 1;
}

/* Award-Winning Light Sweep Sheen Animation on Hover */
.dermis-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.dermis-btn:hover::before {
  transform: skewX(-20deg) translateX(220%);
}

/* Accessibility Focus & Active Click States */
.dermis-btn:focus-visible {
  outline: 2.5px solid #CDAD7B;
  outline-offset: 3px;
}

.dermis-btn:active {
  transform: translateY(1px) scale(0.98) !important;
  box-shadow: none !important;
}

.dermis-btn svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.dermis-btn:hover svg {
  transform: translateX(4px);
}

/* ==============================================================================
   BUTTON SIZES
   ============================================================================== */
.dermis-btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.8125rem;
  border-radius: 6px;
}

.dermis-btn-md {
  padding: 0.75rem 1.6rem;
  font-size: 0.9375rem;
  border-radius: 8px;
}

.dermis-btn-lg {
  padding: 1rem 2.4rem;
  font-size: 1.05rem;
  border-radius: 12px;
}

/* ==============================================================================
   AWARD-WINNING BUTTON VARIANTS
   ============================================================================== */

/* 1. Primary Clinical Green Variant: rgb(78, 91, 76) */
.dermis-btn-green,
.dermis-btn-primary {
  background: linear-gradient(135deg, rgb(78, 91, 76) 0%, #3F4C3E 100%);
  color: #FFFFFF !important;
  border-color: rgba(205, 173, 123, 0.3);
  box-shadow: 0 4px 18px rgba(78, 91, 76, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.dermis-btn-green:hover,
.dermis-btn-primary:hover {
  background: linear-gradient(135deg, #5B6B59 0%, #465545 100%);
  border-color: #CDAD7B;
  color: #FFFFFF !important;
  transform: translateY(-2.5px);
  box-shadow: 0 10px 28px rgba(78, 91, 76, 0.45), 0 0 12px rgba(205, 173, 123, 0.2);
}

/* 2. Secondary Luxury Gold Variant */
.dermis-btn-gold {
  background: linear-gradient(135deg, #CDAD7B 0%, #B89663 100%);
  color: #1C1D1F !important;
  box-shadow: 0 4px 18px rgba(205, 173, 123, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.dermis-btn-gold:hover {
  background: linear-gradient(135deg, #DBC090 0%, #C4A26F 100%);
  color: #000000 !important;
  transform: translateY(-2.5px);
  box-shadow: 0 10px 30px rgba(205, 173, 123, 0.5);
}

/* 3. Outline Secondary Variant (Luxury Glassmorphism & Gold Accent Hover) */
.dermis-btn-outline,
.dermis-btn-outline-green {
  background: rgba(78, 91, 76, 0.03);
  border: 1.5px solid rgba(78, 91, 76, 0.4);
  color: rgb(78, 91, 76) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.dermis-btn-outline:hover,
.dermis-btn-outline-green:hover {
  background: linear-gradient(135deg, rgba(205, 173, 123, 0.16) 0%, rgba(78, 91, 76, 0.08) 100%);
  border-color: #CDAD7B;
  color: #1C1D1F !important;
  transform: translateY(-2.5px);
  box-shadow: 0 8px 25px rgba(205, 173, 123, 0.25), 0 0 12px rgba(78, 91, 76, 0.1);
}

/* 4. Outline Gold Variant */
.dermis-btn-outline-gold {
  background: transparent;
  border: 1.5px solid #CDAD7B;
  color: #CDAD7B !important;
}

.dermis-btn-outline-gold:hover {
  background: #CDAD7B;
  color: #1C1D1F !important;
  transform: translateY(-2.5px);
  box-shadow: 0 8px 24px rgba(205, 173, 123, 0.35);
}

/* 5. WHATSAPP VARIANT 1: Solid Standard WhatsApp Green */
.dermis-btn-whatsapp,
.dermis-btn-whatsapp-v1 {
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
  color: #FFFFFF !important;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.dermis-btn-whatsapp:hover,
.dermis-btn-whatsapp-v1:hover {
  background: linear-gradient(135deg, #2CE26F 0%, #20B859 100%);
  color: #FFFFFF !important;
  transform: translateY(-2.5px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* 6. WHATSAPP VARIANT 2: Glass Outline WhatsApp Green */
.dermis-btn-whatsapp-outline,
.dermis-btn-whatsapp-v2 {
  background: rgba(37, 211, 102, 0.05);
  border: 1.5px solid #25D366;
  color: #25D366 !important;
  backdrop-filter: blur(8px);
}

.dermis-btn-whatsapp-outline:hover,
.dermis-btn-whatsapp-v2:hover {
  background: #25D366;
  color: #FFFFFF !important;
  transform: translateY(-2.5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* 7. WHATSAPP VARIANT 3: Official Meta WhatsApp Business Verified Action CTA */
.dermis-btn-whatsapp-business,
.dermis-btn-whatsapp-v3 {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: #FFFFFF !important;
  border: 1.5px solid #25D366;
  border-radius: 9999px; /* Pill shape for official Meta action CTA */
  box-shadow: 0 4px 20px rgba(18, 140, 126, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: dermisWaPulse 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

.dermis-btn-whatsapp-business:hover,
.dermis-btn-whatsapp-v3:hover {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-color: #FFFFFF;
  color: #FFFFFF !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes dermisWaPulse {
  0% {
    box-shadow: 0 4px 20px rgba(18, 140, 126, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 4px 20px rgba(18, 140, 126, 0.4), 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 20px rgba(18, 140, 126, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* 8. Ghost Glassmorphism Variant */
.dermis-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.25);
  color: #FAF8F5 !important;
}

.dermis-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #CDAD7B;
  color: #CDAD7B !important;
  transform: translateY(-2.5px);
}


/* Component CSS: cursor.css */
/* ==============================================================================
   DERMIS 365 CLINIC - CLINICAL LUXURY CUSTOM CURSOR MOTION SYSTEM
   Colocated Component Style: src/components/cursor/cursor.css
   ============================================================================== */

/* Central Cursor Dot */
#dermis-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #CDAD7B;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, background-color 0.25s ease, opacity 0.25s ease;
  will-change: transform;
}

/* Outer Trailing Fluid Aura Ring */
#dermis-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(205, 173, 123, 0.5);
  background: rgba(205, 173, 123, 0.04);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s ease,
              border-color 0.3s ease,
              opacity 0.25s ease;
  will-change: transform, width, height;
}

/* Hover Interaction States on Interactive Elements */
body.cursor-hover #dermis-cursor-dot {
  transform: translate(-50%, -50%) scale(0.5);
  background: #0D5C3A;
}

body.cursor-hover #dermis-cursor-ring {
  width: 56px;
  height: 56px;
  background: rgba(13, 92, 58, 0.08);
  border-color: rgba(13, 92, 58, 0.6);
  box-shadow: 0 0 20px rgba(205, 173, 123, 0.25);
}

/* Active Click Pulse */
body.cursor-active #dermis-cursor-ring {
  transform: translate(-50%, -50%) scale(0.85);
  border-color: #CDAD7B;
}

/* Disable Custom Cursor on Touch Devices & Mobile */
@media (hover: none) and (pointer: coarse) {
  #dermis-cursor-dot,
  #dermis-cursor-ring {
    display: none !important;
  }
}

