/* ================================================
   DENTAL CARE - Premium CSS Design System
   Font: Outfit | Colors: Purple #6C3FC5, Gray #64748B
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --purple: #6C3FC5;
  --purple-dark: #4e2d9e;
  --purple-light: #8B5CF6;
  --purple-xlight: #EDE9FE;
  --purple-glass: rgba(108, 63, 197, 0.08);
  --gray: #64748B;
  --gray-dark: #334155;
  --gray-light: #94A3B8;
  --gray-xlight: #F1F5F9;
  --white: #FFFFFF;
  --off-white: #FAFBFF;
  --black: #0F0F1A;
  --text-dark: #1E1B4B;
  --text-body: #475569;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(108, 63, 197, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(108, 63, 197, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 60px rgba(108, 63, 197, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 40px 80px rgba(108, 63, 197, 0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Libre Baskerville', serif;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font);
}

input,
textarea,
select {
  font-family: var(--font);
}

p {
  text-align: justify;
}

/* ---- Utility Classes ---- */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

.text-purple {
  color: var(--purple);
}

.text-gray {
  color: var(--gray);
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* ---- Typography ---- */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  color: var(--text-dark);
  line-height: 1.18;
  font-weight: 700;
}

.display-xl {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
}

.display-lg {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
}

.display-md {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
}

.display-sm {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 700;
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  color: var(--text-body);
  font-weight: 400;
}

p {
  color: var(--text-body);
  line-height: 1.75;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary,
.btn-purple {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(108, 63, 197, 0.35);
}

.btn-primary:hover,
.btn-purple:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108, 63, 197, 0.45);
}

.navbar-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-right: 12px;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}

.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--purple);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--purple-xlight);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 17px;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 13px;
}

.btn i {
  font-size: 0.9em;
}

/* ---- Badge ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.badge-purple {
  background: var(--purple-xlight);
  color: var(--purple);
}

.badge-white {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

#header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(108, 63, 197, 0.4);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.nav-logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--purple);
  background: var(--purple-glass);
}

.nav-link.has-dropdown>i {
  font-size: 10px;
  transition: transform 0.3s;
}

.nav-link.has-dropdown:hover>i {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 10px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.nav-item {
  position: relative;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-body);
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-link i {
  width: 16px;
  color: var(--purple);
  font-size: 13px;
}

.dropdown-link:hover {
  background: var(--purple-glass);
  color: var(--purple);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-dark);
}

.nav-phone i {
  color: var(--purple);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  padding: 100px 24px 40px;
  overflow-y: auto;
  flex-direction: column;
}

.mobile-menu.open {
  display: flex;
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link:hover {
  color: var(--purple);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--gray-xlight);
  border: none;
  font-size: 18px;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar {
  background: linear-gradient(90deg, var(--purple-dark), var(--purple));
  color: white;
  padding: 8px 0;
  font-size: 13px;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item i {
  font-size: 12px;
  opacity: 0.8;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  min-height: 100vh;
  background: var(--off-white);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--purple);
  top: -200px;
  right: -100px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--purple-light);
  bottom: -100px;
  left: -100px;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: #A78BFA;
  top: 40%;
  right: 30%;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--purple) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.04;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.hero-content {}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.hero-trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-dark);
  box-shadow: var(--shadow-sm);
}

.hero-trust-pill i {
  color: var(--purple);
}

.hero-rating {
  display: flex;
  gap: 2px;
}

.hero-rating i {
  color: #FBBF24;
  font-size: 12px;
}

.hero-h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-h1 .highlight {
  position: relative;
  color: var(--purple);
  display: inline-block;
}

.hero-h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 1s ease 1.2s forwards;
}

@keyframes underlineGrow {
  to {
    transform: scaleX(1);
  }
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-play-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-dark);
  cursor: pointer;
  transition: var(--transition);
}

.hero-play-btn:hover {
  color: var(--purple);
}

.play-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  box-shadow: var(--shadow-md);
  font-size: 14px;
  flex-shrink: 0;
  position: relative;
}

.play-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(108, 63, 197, 0.2);
  animation: pulseRing 2s ease infinite;
}

@keyframes pulseRing {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.hero-stats-row {
  display: flex;
  gap: 40px;
}

.hero-stat {}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.hero-stat-number span {
  color: var(--purple);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  margin-top: 2px;
}

.hero-visual {
  position: relative;
}

.hero-img-main {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
}

.hero-card-1 {
  bottom: 48px;
  left: -40px;
}

.hero-card-2 {
  top: 60px;
  right: -30px;
}

.hero-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--purple-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 16px;
  flex-shrink: 0;
}

.hero-card-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.hero-card-sub {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.hero-patients-pill {
  position: absolute;
  bottom: -20px;
  right: 40px;
  background: var(--purple);
  color: white;
  border-radius: var(--radius-full);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(108, 63, 197, 0.4);
}

.hero-avatars {
  display: flex;
}

.hero-avatars img {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--purple);
  margin-left: -8px;
  object-fit: cover;
}

.hero-avatars img:first-child {
  margin-left: 0;
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: bounce 2.5s ease infinite;
}

.scroll-indicator span {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-indicator i {
  color: var(--purple);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================
   HERO PREMIUM (Stabilized & Premium Split View)
   ============================================ */
#hero-premium {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--off-white);
  padding: 80px 0;
  overflow-x: hidden;
  overflow-y: visible;
  /* Prevents horizontal overflow while allowing vertical layout */
}

/* ---- Animated Background Blobs ---- */
.hero-bg-blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  background: var(--purple-xlight);
  filter: blur(100px);
  border-radius: 50%;
  opacity: 0.35;
  animation: blobFloat 20s infinite alternate ease-in-out;
}

.blob-1 {
  width: 500px;
  height: 500px;
  top: -10%;
  left: -10%;
}

.blob-2 {
  width: 400px;
  height: 400px;
  bottom: -5%;
  right: -5%;
  animation-delay: -5s;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(100px, 50px) scale(1.1);
  }
}

.hero-premium-wrap {
  width: 100%;
  background: var(--white);
  border-radius: 40px;
  padding: clamp(40px, 6vw, 80px) clamp(30px, 5vw, 60px);
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.02);
}

.hero-header-top {
  margin-bottom: clamp(40px, 5vw, 60px);
}

.hero-header-top h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.hero-content-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

/* ---- Visual Side ---- */
.hero-visual-side {
  position: relative;
  background: #fdfdff;
  border-radius: 30px;
  padding: clamp(20px, 5vw, 40px);
  min-height: clamp(300px, 45vh, 500px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.hero-carousel {
  width: 100%;
  height: clamp(320px, 50vh, 400px);
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-carousel-img {
  width: auto;
  max-width: min(380px, 100%);
  height: auto;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
  animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.carousel-caption {
  background: var(--white);
  padding: 8px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  z-index: 10;
  margin-top: 20px;
  margin-bottom: 10px;
}

.carousel-caption span {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: 0.3s;
}

.carousel-dots .dot.active {
  width: 24px;
  border-radius: 10px;
  background: var(--purple);
}

/* ---- Text Side ---- */
.hero-text-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-v2-desc {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.85;
  color: var(--text-body);
  max-width: 550px;
}

.hero-cta-area {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  margin-top: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat-item-v2 .stat-num {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}

.hero-stat-item-v2 .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ---- Floating Glass Cards ---- */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-1 {
  bottom: -25px;
  left: 40px;
}

.card-2 {
  top: -25px;
  right: 40px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}

/* ---- Responsive Overrides ---- */
@media (max-width: 1024px) {
  .hero-content-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-header-top {
    text-align: center;
  }

  .hero-header-top h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-visual-side {
    min-height: 400px;
    padding: 20px;
  }

  .hero-stats-row {
    justify-content: center;
  }

  .hero-cta-area {
    justify-content: center;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  #hero-premium {
    padding: 40px 0;
  }

  .hero-premium-wrap {
    padding: 40px 20px;
    border-radius: 24px;
  }

  .hero-v2-desc {
    text-align: center;
  }

  .hero-stats-row {
    gap: 20px;
    flex-wrap: wrap;
  }
}

/* ---- Navbar Logo Branding ---- */
.nav-logo-name-v2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: -0.02em;
}

/* ============================================
   MARQUEE TRUST BAR
   ============================================ */
.trust-marquee-section {
  padding: 24px 0;
  background: var(--purple);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeLeft 25s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.marquee-item i {
  color: rgba(255, 255, 255, 0.7);
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   TREATMENTS / SERVICES SECTION
   ============================================ */
.treatments-section {
  background: var(--off-white);
}

.section-head {
  margin-bottom: 60px;
}

.section-head.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head.text-center .eyebrow::before,
.section-head.text-center .eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
}

.section-head.text-center .eyebrow::before {
  display: none;
}

.section-head.text-center .eyebrow {
  gap: 10px;
}

.section-sub {
  max-width: 560px;
  text-align: center;
  margin-top: 14px;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.treatment-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.treatment-card:hover::before {
  transform: scaleX(1);
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-xlight);
}

.treatment-icon {
  width: 60px;
  height: 60px;
  background: var(--purple-glass);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.treatment-card:hover .treatment-icon {
  background: var(--purple);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.treatment-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.treatment-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
}

.treatment-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  margin-top: 16px;
  opacity: 0;
  transition: var(--transition);
}

.treatment-card:hover .treatment-card-link {
  opacity: 1;
}

.treatment-card-link i {
  font-size: 11px;
  transition: transform 0.3s;
}

.treatment-card:hover .treatment-card-link i {
  transform: translateX(4px);
}

/* ============================================
   BEFORE / AFTER
   ============================================ */
.before-after-section {
  background: var(--white);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ba-content {}

.ba-desc {
  margin: 16px 0 32px;
}

.ba-slider-wrap {
  position: relative;
  user-select: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ba-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-img-after {
  clip-path: inset(0 50% 0 0);
}

.ba-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--white);
  z-index: 3;
  cursor: ew-resize;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  z-index: 4;
  cursor: ew-resize;
  color: var(--purple);
  font-size: 16px;
}

.ba-label {
  position: absolute;
  bottom: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  z-index: 5;
}

.ba-label-before {
  left: 16px;
  background: rgba(0, 0, 0, 0.5);
}

.ba-label-after {
  right: 16px;
  background: rgba(108, 63, 197, 0.85);
}

.ba-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.ba-tab {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}

.ba-tab.active,
.ba-tab:hover {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

/* ============================================
   STATS / G-REVIEWS
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-light) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E") repeat;
}

.stats-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.stat-item {
  padding: 48px 36px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.12);
}

.stat-number {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.stat-icon {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.google-reviews-wrap {
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.google-reviews-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.google-logo {
  background: white;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 800;
}

.google-logo-g {
  color: #4285F4;
}

.google-logo-o1 {
  color: #EA4335;
}

.google-logo-o2 {
  color: #FBBC05;
}

.google-logo-g2 {
  color: #4285F4;
}

.google-logo-l {
  color: #34A853;
}

.google-logo-e {
  color: #EA4335;
}

.google-rating-big {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.google-stars {
  display: flex;
  gap: 4px;
  margin: 4px 0;
}

.google-stars i {
  color: #FBBF24;
  font-size: 18px;
}

.google-reviews-count {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
}

.review-cards-row {
  display: flex;
  gap: 16px;
  overflow: hidden;
}

.review-card-mini {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-width: 220px;
  flex-shrink: 0;
}

.review-mini-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}

.review-mini-stars i {
  color: #FBBF24;
  font-size: 12px;
}

.review-mini-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 10px;
}

.review-mini-author {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* ============================================
   VIDEO TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-xlight);
}

.testimonial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-thumb img {
  transform: scale(1.05);
}

.testimonial-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108, 63, 197, 0.3);
}

.testimonial-play-btn {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 20px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  padding-left: 3px;
}

.testimonial-play-btn:hover {
  transform: scale(1.1);
  background: var(--purple);
  color: white;
}

.testimonial-body {
  padding: 24px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 32px;
  color: var(--purple);
  font-style: normal;
  line-height: 0;
  vertical-align: -10px;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--purple-xlight);
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-treatment {
  font-size: 12px;
  color: var(--purple);
  font-weight: 500;
}

.t-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}

.t-stars i {
  color: #FBBF24;
  font-size: 11px;
}

/* ============================================
   CTA BANNER SECTION
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: var(--radius-xl);
  padding: 70px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -200px;
  right: -100px;
}

.cta-banner-content {}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.cta-banner-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--gray-xlight);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(108, 63, 197, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-text {
  color: white;
  font-size: 15px;
  font-weight: 600;
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item {
  aspect-ratio: 4/3;
}

.gallery-item:nth-child(1) {
  aspect-ratio: auto;
  min-height: 360px;
}

.gallery-item:nth-child(4) {
  aspect-ratio: 2/1;
}

/* ============================================
   CONSULTATION FORM (3-STEP)
   ============================================ */
.consultation-section {
  background: var(--off-white);
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.consultation-info {}

.consultation-info h2 {
  margin-bottom: 16px;
}

.consultation-info p {
  margin-bottom: 32px;
}

.consultation-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  background: var(--purple-glass);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 16px;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.benefit-text p {
  font-size: 14px;
  line-height: 1.5;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}

.form-step-item {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.form-step-dot {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.form-step-dot.active {
  background: var(--purple);
  color: white;
  box-shadow: 0 0 0 4px var(--purple-xlight);
}

.form-step-dot.done {
  background: #10B981;
  color: white;
}

.form-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  transition: var(--transition);
}

.form-step-line.done {
  background: #10B981;
}

.form-step-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  margin-top: 6px;
  text-align: center;
}

.form-steps-labels {
  display: flex;
  justify-content: space-between;
  margin-top: -28px;
  margin-bottom: 24px;
}

.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
  animation: fadeSlide 0.4s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-panel-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--off-white);
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--text-dark);
  transition: var(--transition);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--purple);
  background: white;
  box-shadow: 0 0 0 3px rgba(108, 63, 197, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.select-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.select-option-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 14px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  font-family: var(--font);
  text-align: left;
}

.select-option-card:hover {
  border-color: var(--purple);
  background: var(--purple-glass);
}

.select-option-card.selected {
  border-color: var(--purple);
  background: var(--purple-xlight);
}

.select-option-card i {
  color: var(--purple);
  font-size: 16px;
  width: 20px;
}

.select-option-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}

.form-nav-back {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-nav-back:hover {
  color: var(--purple);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}

.form-success-icon {
  width: 80px;
  height: 80px;
  background: #DCFCE7;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10B981;
  font-size: 36px;
  margin: 0 auto 24px;
}

.form-success h3 {
  color: var(--text-dark);
  font-size: 22px;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-body);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 60px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--purple);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.footer-logo-name {
  font-size: 18px;
  font-weight: 800;
  color: white;
}

.footer-about {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn:hover {
  background: var(--purple);
  color: white;
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--purple-light);
  padding-left: 4px;
}

.footer-link i {
  font-size: 11px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(108, 63, 197, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact-text strong {
  color: white;
  display: block;
  font-size: 13px;
  margin-bottom: 1px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-text {
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.footer-bottom-link:hover {
  color: var(--purple-light);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple), #A78BFA);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.12)'/%3E%3C/svg%3E") repeat;
}

.page-hero h1 {
  color: white;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  object-fit: cover;
}

.about-year-badge {
  position: absolute;
  bottom: -24px;
  right: 24px;
  background: var(--purple);
  color: white;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-year-num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-year-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.vm-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.vm-icon-purple {
  background: var(--purple-xlight);
  color: var(--purple);
}

.vm-icon-green {
  background: #DCFCE7;
  color: #10B981;
}

.vm-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.vm-card p {
  line-height: 1.75;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-img {
  overflow: hidden;
  background: var(--gray-xlight);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  padding: 24px;
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  line-height: 1.65;
}

.team-socials {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.team-social {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gray-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 13px;
  transition: var(--transition);
}

.team-social:hover {
  background: var(--purple);
  color: white;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-hero-section {}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-full-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-full-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
}

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-body);
  font-weight: 500;
}

.service-feature i {
  color: var(--purple);
  font-size: 11px;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-xlight);
  position: relative;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.05);
}

.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--purple);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--gray);
  font-weight: 500;
}

.blog-meta-item i {
  font-size: 11px;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: var(--transition);
}

.blog-card:hover .blog-title {
  color: var(--purple);
}

.blog-excerpt {
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.blog-author-sm {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-author-sm img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.blog-author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.blog-read-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-read-link i {
  font-size: 11px;
  transition: transform 0.3s;
}

.blog-card:hover .blog-read-link i {
  transform: translateX(4px);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}

.contact-info {}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 36px;
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  background: var(--purple-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-item-text p {
  font-size: 14.5px;
  line-height: 1.6;
}

.contact-item-text a {
  color: var(--purple);
  font-weight: 500;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact-form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.map-embed {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.hour-row:nth-child(odd) {
  background: var(--gray-xlight);
}

.hour-day {
  font-weight: 600;
  color: var(--text-dark);
}

.hour-time {
  color: var(--text-body);
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.video-modal.open {
  display: flex;
}

.video-modal-inner {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: var(--radius-full);
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-modal-inner video,
.video-modal-inner iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* 1400px */
@media (max-width: 1400px) {
  .container-wide {
    padding: 0 32px;
  }

  .treatments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 1280px */
@media (max-width: 1280px) {
  .hero-inner {
    gap: 60px;
  }

  .hero-card-1 {
    left: -20px;
  }

  .hero-card-2 {
    right: -10px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
  }
}

/* 1100px */
@media (max-width: 1100px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story-grid {
    gap: 48px;
  }
}

/* 960px */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-trust-bar {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats-row {
    justify-content: center;
  }

  .hero-desc {
    text-align: center;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-card-1 {
    left: -10px;
  }

  .ba-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .consultation-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .nav-menu {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 48px 40px;
  }

  .cta-banner-btns {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px */
@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .container {
    padding: 0 18px;
  }

  .treatments-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .treatment-card {
    padding: 24px 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-content-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text-side {
    padding: 30px;
    border-left: none;
    border-top: none;
  }

  .hero-premium-wrap {
    padding: 40px 20px;
  }

  .hero-header-top h1 {
    text-align: center;
    font-size: 2.8rem;
  }

  .hero-stats-row {
    gap: 24px;
    justify-content: center;
  }

  .hero-cta-area {
    justify-content: center;
  }

  .floating-card {
    display: none;
  }

  /* Hide on tablet/mobile to avoid clutter */
  .google-reviews-wrap {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-top {
    padding: 60px 0 40px;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .top-bar {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 40px 28px;
  }

  .form-card {
    padding: 32px 24px;
  }

  .contact-form-card {
    padding: 32px 24px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* 600px */
@media (max-width: 600px) {
  .section {
    padding: 56px 0;
  }

  .treatments-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .hero-h1 {
    font-size: 2.3rem;
  }

  .hero-stats-row {
    gap: 16px;
  }

  .hero-stat-number {
    font-size: 1.6rem;
  }

  .select-options-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .ba-tabs {
    gap: 6px;
  }
}

/* 400px */
@media (max-width: 400px) {
  .hero-h1 {
    font-size: 2rem;
  }

  .navbar {
    height: 66px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 15px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn {
    justify-content: center;
  }

  .stat-item {
    padding: 32px 20px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ============================================
   ANIMATIONS & MISC
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-up.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
}

.scale-in.animated {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-delay-1 {
  transition-delay: 0.1s !important;
}

.stagger-delay-2 {
  transition-delay: 0.2s !important;
}

.stagger-delay-3 {
  transition-delay: 0.3s !important;
}

.stagger-delay-4 {
  transition-delay: 0.4s !important;
}

.stagger-delay-5 {
  transition-delay: 0.5s !important;
}

/* back to top */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--purple);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(108, 63, 197, 0.4);
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 900;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
}