/* ============================================
           CSS CUSTOM PROPERTIES
           ============================================ */
:root {
  --primary: #7b7fe8;
  --primary-rgb: 123, 127, 232;
  --secondary: #6366f1;
  --secondary-rgb: 99, 102, 241;
  --bg-cream: #f5f0eb;
  --bg-dark: #2d2d3f;
  --bg-dark-rgb: 45, 45, 63;
  --text-dark: #2d2d3f;
  --text-light: #6b6b80;
  --white: #ffffff;
  --white-rgb: 255, 255, 255;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 4px 20px rgba(123, 127, 232, 0.08);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
}

/* ============================================
           RESET & BASE
           ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font);
}

/* ============================================
           UTILITY CLASSES
           ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-label::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================
           SCROLL ANIMATIONS
           ============================================ */
.anim {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim.anim-left {
  transform: translateX(-50px);
}

.anim.anim-right {
  transform: translateX(50px);
}

.anim.anim-scale {
  transform: scale(0.92);
}

.anim.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.stagger-1 {
  transition-delay: 0.05s;
}
.stagger-2 {
  transition-delay: 0.1s;
}
.stagger-3 {
  transition-delay: 0.15s;
}
.stagger-4 {
  transition-delay: 0.2s;
}
.stagger-5 {
  transition-delay: 0.25s;
}
.stagger-6 {
  transition-delay: 0.3s;
}
.stagger-7 {
  transition-delay: 0.35s;
}
.stagger-8 {
  transition-delay: 0.4s;
}

/* ============================================
           NAVBAR
           ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transform: translateY(-100%);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease;
}

.navbar.visible {
  transform: translateY(0);
}

.navbar.scrolled {
  background: rgba(245, 240, 235, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(123, 127, 232, 0.1);
  padding: 12px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 36px;
  width: 36px;
  object-fit: cover;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.navbar-links a:hover {
  color: var(--primary);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-cta {
  background: var(--secondary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(var(--secondary-rgb), 0.3);
}

.navbar-cta:hover {
  background: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(var(--secondary-rgb), 0.4);
}

.navbar-cta::after {
  display: none !important;
}

.navbar-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.navbar-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(245, 240, 235, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .navbar-links.open {
    right: 0;
  }

  .navbar-links a {
    font-size: 1.1rem;
  }

  .navbar-burger {
    display: flex;
    z-index: 1001;
  }

  .navbar-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .navbar-burger.active span:nth-child(2) {
    opacity: 0;
  }
  .navbar-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ============================================
           SECTION 1: HERO
           ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-cream);
  padding: 40px 24px;
}

/* Floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(1px);
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  top: -10%;
  right: -5%;
  animation: floatShape1 20s ease-in-out infinite;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--secondary), transparent 70%);
  bottom: 10%;
  left: -5%;
  animation: floatShape2 25s ease-in-out infinite;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  top: 30%;
  left: 20%;
  animation: floatShape3 18s ease-in-out infinite;
}

.hero-shape-4 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--secondary), transparent 70%);
  top: 20%;
  right: 20%;
  animation: floatShape4 22s ease-in-out infinite;
}

.hero-shape-5 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  bottom: -5%;
  right: 30%;
  animation: floatShape5 28s ease-in-out infinite;
}

@keyframes floatShape1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-30px, 40px) scale(1.05);
  }
  66% {
    transform: translate(20px, -20px) scale(0.95);
  }
}

@keyframes floatShape2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -30px) scale(1.08);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.92);
  }
}

@keyframes floatShape3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 30px);
  }
}

@keyframes floatShape4 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-25px, 25px);
  }
}

@keyframes floatShape5 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -30px) scale(1.06);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  margin-bottom: 24px;
  animation: logoAppear 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-logo img {
  height: clamp(80px, 12vw, 140px);
  width: auto;
  mix-blend-mode: multiply;
}

@keyframes logoAppear {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: logoAppear 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: logoAppear 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: logoAppear 1s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--white);
  padding: 18px 38px;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(var(--secondary-rgb), 0.35);
  animation: logoAppear 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.hero-cta:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(var(--secondary-rgb), 0.45);
}

.hero-cta .arrow {
  transition: transform 0.3s ease;
}

.hero-cta:hover .arrow {
  transform: translateX(4px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: logoAppear 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}

.scroll-indicator span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-chevron {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  animation: bounceChevron 2s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes bounceChevron {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: rotate(45deg) translateY(8px);
    opacity: 1;
  }
}

/* ============================================
           SECTION 2: WHAT IS WELLNESS DAY
           ============================================ */
.wellness-section {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.wellness-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--primary-rgb), 0.2),
    transparent
  );
}

.wellness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wellness-text .headline {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.wellness-text .desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.highlight-item {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.highlight-item:hover {
  border-color: rgba(var(--primary-rgb), 0.15);
  box-shadow: var(--shadow-card);
}

.highlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.highlight-time {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.highlight-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

.wellness-note {
  margin-top: 28px;
  padding: 16px 20px;
  border-left: 3px solid var(--primary);
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
  background: rgba(var(--primary-rgb), 0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.wellness-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.wellness-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wellness-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(var(--primary-rgb), 0.08)
  );
  pointer-events: none;
}

.image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(var(--white-rgb), 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.image-badge .badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.image-badge .badge-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

@media (max-width: 768px) {
  .wellness-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wellness-image {
    aspect-ratio: 3/4;
    order: -1;
  }
}

/* ============================================
           SECTION 3: PROCEDURE
           ============================================ */
.procedure-section {
  padding: 120px 0;
  background: var(--bg-cream);
  position: relative;
}

.procedure-header {
  text-align: center;
  margin-bottom: 64px;
}

.procedure-header .section-subtitle {
  margin: 0 auto;
}

.procedure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.procedure-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.procedure-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.02),
    transparent
  );
  pointer-events: none;
}

.procedure-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--secondary);
}

.procedure-card .card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.procedure-card .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.procedure-card .card-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

@media (max-width: 992px) {
  .procedure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .procedure-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
           SECTION 4: STATISTICS & BENEFITS
           ============================================ */
.stats-section {
  padding: 120px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--primary-rgb), 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.stats-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--secondary-rgb), 0.06),
    transparent 70%
  );
  pointer-events: none;
}

.stats-header {
  text-align: center;
  margin-bottom: 64px;
}

.stats-header .section-title {
  color: var(--white);
}

.stats-header .section-subtitle {
  color: rgba(var(--white-rgb), 0.6);
  margin: 0 auto;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.counter-item {
  text-align: center;
}

.counter-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.counter-text {
  font-size: 0.9rem;
  color: rgba(var(--white-rgb), 0.7);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: rgba(var(--white-rgb), 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(var(--white-rgb), 0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

.benefit-card:hover {
  background: rgba(var(--white-rgb), 0.1);
  border-color: rgba(var(--primary-rgb), 0.3);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
}

.benefit-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-desc {
  font-size: 0.9rem;
  color: rgba(var(--white-rgb), 0.6);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 500px) {
  .counters-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
           SECTION 5: TESTIMONIALS
           ============================================ */
.testimonials-section {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.stat-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
}

.stat-badge.green {
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.stat-badge.blue {
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.stat-badge .badge-icon {
  font-size: 1.2rem;
}

.testimonial-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}

.testimonial-track {
  display: flex;
  gap: 24px;
  animation: scrollTestimonials 40s linear infinite;
  width: max-content;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  border: 1px solid rgba(var(--primary-rgb), 0.06);
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(var(--primary-rgb), 0.15);
  box-shadow: var(--shadow-card);
}

.testimonial-quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  color: rgba(var(--primary-rgb), 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================================
           SECTION 6: GALLERY
           ============================================ */
.gallery-section {
  padding: 120px 0;
  background: var(--bg-cream);
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item:nth-child(4) {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(var(--bg-dark-rgb), 0.5)
  );
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-row: auto;
    aspect-ratio: 4/3;
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
           SECTION 7: HOW IT WORKS + CONTACT
           ============================================ */
.how-section {
  padding: 120px 0 0;
  background: var(--white);
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.steps-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto 100px;
  padding: 0 24px;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  position: relative;
  border: 3px solid var(--primary);
  transition: all var(--transition);
}

.step:hover .step-icon {
  background: var(--primary);
  transform: scale(1.08);
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

.step-line {
  flex: 0 0 auto;
  width: 80px;
  height: 2px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.step-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0,
    var(--primary) 6px,
    transparent 6px,
    transparent 12px
  );
  animation: dashMove 1.5s linear infinite;
}

@keyframes dashMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 24px 0;
  }
}

@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step-line {
    width: 2px;
    height: 50px;
    margin-top: 0;
  }

  .step-line::before {
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(
      180deg,
      var(--primary) 0,
      var(--primary) 6px,
      transparent 6px,
      transparent 12px
    );
    animation: dashMoveV 1.5s linear infinite;
  }

  @keyframes dashMoveV {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 0 24px;
    }
  }
}

/* Contact */
.contact-section {
  padding: 100px 0 120px;
  background: var(--white);
}

.contact-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 48px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
  display: block;
}

.contact-card:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.contact-card .card-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}

.contact-card .card-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.contact-card .card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}
/* Keep all your existing CSS exactly as it is, and just add this below it: */

.contact-card .card-icon img {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}
.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--white);
  padding: 20px 48px;
  border-radius: 100px;
  font-size: 1.15rem;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(var(--secondary-rgb), 0.35);
}

.contact-cta:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(var(--secondary-rgb), 0.45);
}

.contact-cta .arrow {
  transition: transform 0.3s ease;
}

.contact-cta:hover .arrow {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================
           FOOTER
           ============================================ */
footer {
  background: var(--bg-dark);
  padding: 48px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 40px;
  width: 40px;
  object-fit: cover;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--white-rgb), 0.06);
  border: 1px solid rgba(var(--white-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: rgba(var(--white-rgb), 0.6);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(var(--white-rgb), 0.4);
}

/* ============================================
           PRINT STYLES
           ============================================ */
@media print {
  * {
    animation: none !important;
    transition: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .navbar,
  .scroll-indicator,
  .hero-shapes {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .stats-section {
    background: white !important;
    color: black !important;
  }

  .stats-section .section-title,
  .counter-number {
    color: black !important;
  }

  .counter-text,
  .benefit-title,
  .benefit-desc {
    color: #333 !important;
  }

  .benefit-card {
    background: #f5f5f5 !important;
    border: 1px solid #ddd !important;
  }

  .testimonial-track {
    animation: none !important;
    flex-wrap: wrap;
  }

  .gallery-overlay {
    display: none !important;
  }

  section {
    page-break-inside: avoid;
  }

  .anim {
    opacity: 1 !important;
    transform: none !important;
  }

  footer {
    background: #f5f5f5 !important;
  }

  .footer-copy,
  .footer-logo {
    color: #333 !important;
  }
}

/* ============================================
   EXTRA MOBILE OPTIMIZATIONS
   ============================================ */
@media (max-width: 500px) {
  .highlight-item {
    padding: 16px;
    gap: 12px;
  }
  
  .highlight-icon {
    width: 40px;
    height: 40px;
  }
  
  .highlight-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .procedure-grid, 
  .counters-grid, 
  .benefits-grid, 
  .gallery-grid, 
  .contact-cards {
    gap: 16px;
  }
  
  .wellness-section::before,
  .stats-section::before,
  .procedure-section::before,
  .testimonials-section::before,
  .gallery-section::before,
  .how-section::before,
  .contact-section::before {
    display: none !important;
  }
}
