/* ==========================================================================
   Lumique Aesthetic Clinic - Luxury Design System & Master Stylesheet
   ========================================================================== */

/* --- Custom Properties / Color Palette --- */
:root {
  --color-crimson: #C8101E;
  --color-crimson-dark: #A50D19;
  --color-burgundy: #7A0C16;
  --color-ivory: #FFF9F7;
  --color-gold: #B8860B;
  --color-gold-bright: #F5D67D;
  --color-gold-light: #E0C56E;
  --color-soft-red: #F9E6E8;
  --color-charcoal: #1F1F1F;
  --color-charcoal-light: #333333;
  --color-charcoal-muted: rgba(31, 31, 31, 0.65);
  --color-border: rgba(31, 31, 31, 0.08);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container-max-width: 1280px;
  --header-height: 76px;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-subtle: 0 4px 20px rgba(31, 31, 31, 0.04);
  --shadow-luxury: 0 12px 36px rgba(200, 16, 30, 0.08);
  --shadow-hover: 0 16px 40px rgba(31, 31, 31, 0.08);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--color-charcoal);
  background-color: var(--color-ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
  line-height: 1.15;
}

/* --- Container & Layout --- */
.container-luxury {
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .container-luxury {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .container-luxury {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* --- Typography Utilities --- */
.heading-1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-charcoal);
}

.heading-2 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.18;
  color: var(--color-charcoal);
}

.heading-3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-charcoal);
}

@media (min-width: 640px) {
  .heading-1 { font-size: 3rem; }
  .heading-2 { font-size: 2.25rem; }
  .heading-3 { font-size: 1.75rem; }
}

@media (min-width: 1024px) {
  .heading-1 { font-size: 3.75rem; }
  .heading-2 { font-size: 2.75rem; }
  .heading-3 { font-size: 1.875rem; }
}

.section-label {
  display: inline-block;
  color: var(--color-crimson);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-label-gold {
  color: var(--color-gold);
}

.body-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-charcoal-muted);
}

@media (min-width: 1024px) {
  .body-text {
    font-size: 1.125rem;
  }
}

.text-balance {
  text-wrap: balance;
}

/* --- Buttons & Links --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background-color: var(--color-crimson);
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--color-crimson);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--color-burgundy);
  border-color: var(--color-burgundy);
  box-shadow: 0 10px 25px rgba(200, 16, 30, 0.25);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background-color: transparent;
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(31, 31, 31, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--color-crimson);
  color: var(--color-crimson);
  background-color: rgba(200, 16, 30, 0.03);
  transform: translateY(-2px);
}

.btn-secondary-white {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.btn-secondary-white:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background-color: var(--color-gold);
  color: #ffffff !important;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  background-color: var(--color-gold-light);
  box-shadow: 0 10px 25px rgba(201, 162, 39, 0.25);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background-color: #ffffff;
  color: var(--color-crimson) !important;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid #ffffff;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background-color: var(--color-ivory);
  color: var(--color-burgundy) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

/* --- Cards & Containers --- */
.luxury-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.luxury-card:hover {
  border-color: rgba(200, 16, 30, 0.2);
  box-shadow: var(--shadow-luxury);
  transform: translateY(-4px);
}

.glass-card {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* --- Floating Background Ambient Glow & Particles --- */
.floating-bg-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.floating-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 30, 0.18) 0%, rgba(201, 162, 39, 0.1) 50%, transparent 80%);
  filter: blur(12px);
  animation: floatParticle 12s infinite ease-in-out;
  will-change: transform, opacity;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-45px) scale(1.2);
    opacity: 0.85;
  }
}

/* --- Header / Navigation Bar --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  background-color: transparent;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img-wrapper {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  overflow: hidden;
  background-color: var(--color-crimson);
}

.brand-logo-img {
  position: absolute;
  left: 0;
  top: -64.5%;
  height: 233%;
  width: 100%;
  object-fit: fill;
}

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

.brand-logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-charcoal);
  transition: color 0.3s ease;
}

.brand-logo-sub {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.5);
  margin-top: 2px;
  transition: color 0.3s ease;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.25rem;
  margin: 0 1rem;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}

@media (min-width: 1280px) {
  .nav-menu {
    gap: 1.75rem;
    margin: 0 1.5rem;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-charcoal);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-crimson);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-crimson);
}

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

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

.social-icons-group {
  display: none;
  align-items: center;
  gap: 0.4rem;
  margin-right: 0.25rem;
}

@media (min-width: 1320px) {
  .social-icons-group {
    display: flex;
  }
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background-color: var(--color-charcoal);
  color: #ffffff !important;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.social-icon-btn svg {
  width: 14px;
  height: 14px;
  display: block;
}

.social-icon-btn:hover {
  background-color: var(--color-crimson);
  border-color: var(--color-crimson);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-charcoal);
  transition: color 0.3s ease;
}

.header-phone:hover {
  color: var(--color-crimson);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-charcoal);
  transition: color 0.3s ease;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* --- Transparent Header on Dark Hero Banner (e.g. Home page top) --- */
.site-header-transparent-dark:not(.scrolled) .brand-logo-name {
  color: #ffffff;
}

.site-header-transparent-dark:not(.scrolled) .brand-logo-sub {
  color: rgba(255, 255, 255, 0.65);
}

.site-header-transparent-dark:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.92);
}

.site-header-transparent-dark:not(.scrolled) .nav-link:hover,
.site-header-transparent-dark:not(.scrolled) .nav-link.active {
  color: var(--color-gold);
}

.site-header-transparent-dark:not(.scrolled) .nav-link::after {
  background-color: var(--color-gold);
}

.site-header-transparent-dark:not(.scrolled) .header-phone {
  color: #ffffff;
}

.site-header-transparent-dark:not(.scrolled) .social-icon-btn {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
}

.site-header-transparent-dark:not(.scrolled) .social-icon-btn:hover {
  background-color: var(--color-crimson);
  border-color: var(--color-crimson);
}

.site-header-transparent-dark:not(.scrolled) .mobile-menu-btn {
  color: #ffffff;
}

/* --- Mobile Drawer Navigation --- */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 990;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.4s ease;
}

.mobile-drawer.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(31, 31, 31, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-drawer.open .mobile-drawer-backdrop {
  opacity: 1;
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 380px;
  background-color: #ffffff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
}

.mobile-drawer.open .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-charcoal);
  padding: 0.5rem;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-charcoal);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--color-crimson);
}

.mobile-drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: var(--color-charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 18, 22, 0.82) 0%, rgba(18, 18, 22, 0.6) 50%, rgba(18, 18, 22, 0.75) 100%);
}

.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 22, 0.95) 0%, rgba(18, 18, 22, 0.35) 15%, transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 44rem;
  color: #ffffff;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-tag-line {
  width: 2.5rem;
  height: 1px;
  background-color: var(--color-gold);
}

.hero-tag-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.hero-subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3.25rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 4rem; }
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-stats-sidebar {
  position: absolute;
  bottom: 8rem;
  right: 3rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

@media (min-width: 1280px) {
  .hero-stats-sidebar {
    display: flex;
  }
}

.hero-stat-card {
  background: rgba(18, 18, 22, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-left: 3px solid #E5C158;
  border-radius: 4px;
  padding: 1.15rem 1.75rem;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: var(--transition-smooth);
}

.hero-stat-card:hover {
  transform: translateX(-4px);
  border-color: #E5C158;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #F5D67D;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 0.35rem;
}

/* --- Clinic Quick Bar / Snapshot --- */
.snapshot-section {
  position: relative;
  z-index: 20;
  margin-top: -2.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.snapshot-grid {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(31, 31, 31, 0.08);
  overflow: hidden;
}

@media (min-width: 768px) {
  .snapshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .snapshot-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.snapshot-item {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .snapshot-item:nth-child(even) {
    border-left: 1px solid var(--color-border);
  }
}

@media (min-width: 1024px) {
  .snapshot-item {
    border-top: none;
  }
  .snapshot-item:not(:first-child) {
    border-left: 1px solid var(--color-border);
  }
}

.snapshot-item.dark {
  background-color: var(--color-charcoal);
  color: #ffffff;
}

.snapshot-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-crimson);
  margin-bottom: 0.5rem;
}

.snapshot-item.dark .snapshot-label {
  color: rgba(255, 255, 255, 0.5);
}

.snapshot-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.snapshot-item.dark .snapshot-title {
  color: #ffffff;
}

.snapshot-desc {
  font-size: 0.875rem;
  color: var(--color-charcoal-muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.snapshot-item.dark .snapshot-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Section Spacings & Layouts --- */
.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

@media (min-width: 1024px) {
  .section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.page-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom, var(--color-soft-red) 0%, var(--color-ivory) 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .page-hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}

/* --- Grids & Flex Utilities --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

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

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

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

@media (min-width: 1024px) {
  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}

/* --- Category Card --- */
.category-card {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  display: block;
}

.category-card:hover {
  border-color: rgba(200, 16, 30, 0.2);
  box-shadow: var(--shadow-luxury);
  transform: translateY(-4px);
}

.category-card-img-wrapper {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: var(--color-soft-red);
}

.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .category-card-img {
  transform: scale(1.1);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 31, 31, 0.9) 0%, rgba(31, 31, 31, 0.2) 60%, transparent 100%);
}

.category-card-content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.25rem;
  color: #ffffff;
}

.category-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-crimson);
  margin-bottom: 0.75rem;
  transition: var(--transition-smooth);
}

.category-card:hover .category-card-icon {
  background-color: var(--color-crimson);
  color: #ffffff;
  transform: scale(1.1);
}

.category-card-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.category-card-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Treatment Card --- */
.treatment-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.treatment-card:hover {
  border-color: rgba(200, 16, 30, 0.2);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.treatment-card-img-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--color-soft-red);
}

.treatment-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.treatment-card:hover .treatment-card-img {
  transform: scale(1.08);
}

.treatment-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-crimson);
}

.treatment-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.treatment-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.treatment-card:hover .treatment-card-title {
  color: var(--color-crimson);
}

.treatment-card-desc {
  font-size: 0.875rem;
  color: var(--color-charcoal-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.treatment-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-crimson);
  transition: gap 0.3s ease;
}

.treatment-card:hover .treatment-card-link {
  gap: 0.75rem;
}

/* --- Interactive FAQ Accordion --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  background-color: #ffffff;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-charcoal);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-crimson);
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--color-crimson);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-charcoal-muted);
  line-height: 1.7;
}

/* --- Forms & Inputs --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-charcoal-muted);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  color: var(--color-charcoal);
  font-size: 0.875rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-crimson);
  box-shadow: 0 0 0 3px rgba(200, 16, 30, 0.1);
}

.form-control::placeholder {
  color: rgba(31, 31, 31, 0.35);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-alert {
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-alert-error {
  background-color: var(--color-soft-red);
  color: var(--color-crimson);
  border-left: 3px solid var(--color-crimson);
}

.form-alert-success {
  background-color: #E8F5E9;
  color: #2E7D32;
  border-left: 3px solid #2E7D32;
}

/* --- Testimonials & Reviews --- */
.testimonial-card {
  background-color: #ffffff;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-luxury);
  border-color: rgba(200, 16, 30, 0.15);
  transform: translateY(-4px);
}

.star-rating {
  display: flex;
  gap: 0.25rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--color-charcoal-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: var(--color-crimson);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.testimonial-treatment {
  font-size: 0.75rem;
  color: var(--color-crimson);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Blog & Articles --- */
.blog-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  border-color: rgba(200, 16, 30, 0.2);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.blog-card-img-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--color-soft-red);
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-crimson);
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--color-crimson);
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--color-charcoal-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card-meta {
  font-size: 0.75rem;
  color: rgba(31, 31, 31, 0.45);
}

/* --- Blog Filter & Search Bar --- */
.blog-filter-bar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
  position: sticky;
  top: var(--header-height);
  z-index: 30;
}

.blog-filter-btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-charcoal);
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
  box-shadow: none;
}

.blog-filter-btn:hover {
  border-color: var(--color-crimson);
  color: var(--color-crimson);
  background-color: var(--color-soft-red);
  box-shadow: none;
}

.blog-filter-btn.active {
  background-color: var(--color-crimson);
  color: #ffffff;
  border-color: var(--color-crimson);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.blog-filter-btn.active:hover {
  background-color: var(--color-crimson-dark);
  color: #ffffff;
  border-color: var(--color-crimson-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.blog-search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 280px;
}

.blog-search-icon {
  position: absolute;
  left: 0.875rem;
  color: var(--color-charcoal-muted);
  pointer-events: none;
}

.blog-search-box input {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 2.25rem;
  font-size: 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  outline: none;
  transition: var(--transition-smooth);
}

.blog-search-box input:focus {
  border-color: var(--color-crimson);
  box-shadow: 0 0 0 3px rgba(200, 16, 30, 0.1);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-crimson) 50%, var(--color-crimson-dark) 100%);
  color: #ffffff;
  padding: 5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta-banner {
    padding: 7rem 2rem;
  }
}

.cta-banner-bg-glow {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
}

.cta-banner-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .cta-banner-title { font-size: 2.75rem; }
}

@media (min-width: 1024px) {
  .cta-banner-title { font-size: 3.25rem; }
}

.cta-banner-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--color-charcoal);
  color: #ffffff;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

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

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--color-crimson);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-icon {
  color: var(--color-crimson);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- Keyframe Animations --- */
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1%); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
  animation: float 9s ease-in-out infinite;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
  height: 0px;
}
::-webkit-scrollbar-track {
  background: var(--color-ivory);
}
::-webkit-scrollbar-thumb {
  background: rgba(200, 16, 30, 0.5);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-crimson);
}

/* --- Hide Horizontal Scrollbars for Navigation Bars --- */
.category-subnav > div,
.category-subnav .container-luxury,
.blog-filter-bar > div,
.blog-filter-bar .container-luxury,
.no-scrollbar,
.hide-scrollbar,
[style*="overflow-x: auto"] {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.category-subnav > div::-webkit-scrollbar,
.category-subnav .container-luxury::-webkit-scrollbar,
.blog-filter-bar > div::-webkit-scrollbar,
.blog-filter-bar .container-luxury::-webkit-scrollbar,
.no-scrollbar::-webkit-scrollbar,
.hide-scrollbar::-webkit-scrollbar,
[style*="overflow-x: auto"]::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* --- Treatments Category Navigation Filter Bar --- */
.category-subnav {
  position: sticky;
  top: var(--header-height);
  z-index: 40;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.category-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-charcoal);
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
  box-shadow: none;
}

.category-nav-btn:hover {
  border-color: var(--color-crimson);
  color: var(--color-crimson);
  background-color: var(--color-soft-red);
  box-shadow: none;
}

.category-nav-btn.active {
  background-color: var(--color-crimson);
  color: #ffffff;
  border-color: var(--color-crimson);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.category-nav-btn.active:hover {
  background-color: var(--color-crimson-dark);
  color: #ffffff;
  border-color: var(--color-crimson-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

/* ==========================================================================
   Appointment Booking Modal & Video Player Modal
   ========================================================================== */
.lumique-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(18, 18, 22, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lumique-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lumique-modal-dialog {
  background-color: #ffffff;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 0.75rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--color-border);
}

.lumique-modal-backdrop.open .lumique-modal-dialog {
  transform: scale(1) translateY(0);
}

.lumique-modal-header {
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 10;
}

.lumique-modal-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
}

.lumique-modal-subtitle {
  font-size: 0.8rem;
  color: var(--color-crimson);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.25rem;
}

.lumique-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-charcoal-muted);
  transition: color 0.2s ease;
}

.lumique-modal-close:hover {
  color: var(--color-crimson);
}

.lumique-modal-body {
  padding: 2rem;
}

/* Video Player Modal */
.video-modal-dialog {
  max-width: 800px;
  background-color: #000000;
  border-radius: 0.5rem;
  overflow: hidden;
}

.video-modal-dialog video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

/* ==========================================================================
   Treatments Category Media Showcase (Photos, Videos, Before/After)
   ========================================================================== */
.category-media-showcase {
  background-color: var(--color-ivory);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 2rem;
  margin-top: 2.5rem;
}

.media-section-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.media-video-card {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #1F1F1F;
  cursor: pointer;
  group: true;
}

.media-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-video-card:hover img {
  transform: scale(1.05);
}

.media-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: #ffffff;
  pointer-events: none;
  z-index: 2;
}

.media-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(200, 16, 30, 0.92);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(200, 16, 30, 0.6);
  transition: var(--transition-smooth);
  pointer-events: none;
  z-index: 3;
}

.media-video-card:hover .media-play-badge {
  transform: translate(-50%, -50%) scale(1.15);
  background-color: var(--color-crimson);
  box-shadow: 0 10px 30px rgba(200, 16, 30, 0.8);
}

.media-photo-card {
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  border: 1px solid var(--color-border);
}

.media-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-photo-card:hover img {
  transform: scale(1.06);
}

.before-after-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 1rem;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  position: relative;
}

.before-after-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0.25rem;
  overflow: hidden;
}

.before-after-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-tag {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
}

.before-after-tag.before {
  background-color: rgba(31, 31, 31, 0.8);
  color: #ffffff;
}

.before-after-tag.after {
  background-color: var(--color-crimson);
  color: #ffffff;
}

/* --- Floating WhatsApp Concierge --- */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 80;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
  text-decoration: none;
}

@media (max-width: 768px) {
  .whatsapp-floating-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 3.25rem;
    height: 3.25rem;
  }
}

/* Hide floating WhatsApp when mobile drawer or modal is open */
.mobile-drawer.open ~ .whatsapp-floating-btn,
.lumique-modal-backdrop.open ~ .whatsapp-floating-btn,
body:has(.mobile-drawer.open) .whatsapp-floating-btn,
body:has(.lumique-modal-backdrop.open) .whatsapp-floating-btn,
body.menu-open .whatsapp-floating-btn,
body.modal-open .whatsapp-floating-btn {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: scale(0.6) !important;
}

.whatsapp-floating-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 4.25rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-charcoal);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.whatsapp-floating-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 4.5rem;
}

/* YouTube Video Carousel & Lightbox */
.video-carousel-container {
  position: relative;
  width: 100%;
}

.video-carousel-track,
.testimonial-carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.video-carousel-track::-webkit-scrollbar,
.testimonial-carousel-track::-webkit-scrollbar {
  display: none;
}

.video-carousel-slide,
.testimonial-carousel-slide {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 300px;
  scroll-snap-align: start;
}

@media (max-width: 991px) {
  .video-carousel-slide,
  .testimonial-carousel-slide {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 260px;
  }
}

@media (max-width: 640px) {
  .video-carousel-slide,
  .testimonial-carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.carousel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.25s ease;
}

.carousel-nav-btn:hover {
  background: var(--color-crimson);
  border-color: var(--color-crimson);
  color: #ffffff;
  transform: scale(1.08);
}

.carousel-indicators-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  width: 28px;
  border-radius: 6px;
  background: var(--color-gold);
}

.video-lightbox-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(18, 18, 22, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-lightbox-card {
  background: #000000;
  border-radius: 12px;
  width: 100%;
  max-width: 860px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.65);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.video-lightbox-close {
  position: absolute;
  top: -38px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.video-lightbox-close:hover {
  color: var(--color-gold);
  transform: rotate(90deg);
}

.video-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 11px;
  overflow: hidden;
}

.video-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}