/* ============================================
   AURA SKIN HAIR & ANTIAGING CLINIC
   Premium Design System
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Colors */
  --sage-green: #7D8F5A;
  --sage-green-light: #94a672;
  --sage-green-dark: #6B7A4A;
  --olive-green: #6B7A4A;
  --warm-ivory: #F8F6F1;
  --soft-beige: #EDE8DF;
  --muted-gold: #B8A57A;
  --muted-gold-light: #c9b998;
  --charcoal: #2E2E2E;
  --charcoal-light: #555;
  --white: #FFFFFF;
  --overlay-dark: rgba(46, 46, 46, 0.6);
  --overlay-light: rgba(248, 246, 241, 0.95);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-subheading: 'Cormorant Garamond', Garamond, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.35rem;
  --space-sm: 0.75rem;
  --space-md: 1.15rem;
  --space-lg: 1.75rem;
  --space-xl: 2.75rem;
  --space-2xl: 4rem;
  --space-3xl: 5.5rem;

  /* Layout */
  --container-max: 1440px;
  --container-narrow: 960px;
  --nav-height: 64px;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-pill: 50px;
  --radius-round: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(46, 46, 46, 0.06);
  --shadow-md: 0 4px 20px rgba(46, 46, 46, 0.08);
  --shadow-lg: 0 8px 40px rgba(46, 46, 46, 0.1);
  --shadow-xl: 0 16px 60px rgba(46, 46, 46, 0.12);
  --shadow-card: 0 2px 16px rgba(46, 46, 46, 0.06);
  --shadow-card-hover: 0 8px 32px rgba(46, 46, 46, 0.12);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.35s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--charcoal);
  background-color: var(--warm-ivory);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul,
ol {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  background: none;
}

input,
textarea,
select {
  font-family: var(--font-body);
  border: none;
  outline: none;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--beige {
  background-color: var(--soft-beige);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage-green);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-family: var(--font-subheading);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 400;
  color: var(--charcoal-light);
  line-height: 1.55;
  max-width: 640px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 11px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.btn:hover::after {
  transform: translateY(0);
}

.btn--primary {
  background: var(--sage-green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--sage-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(125, 143, 90, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn--secondary:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--muted-gold);
  color: var(--white);
}

.btn--gold:hover {
  background: var(--muted-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184, 165, 122, 0.35);
}

.btn--white {
  background: var(--white);
  color: var(--sage-green);
}

.btn--white:hover {
  background: var(--warm-ivory);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn--icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-round);
}

/* ---------- SECTION 1: Sticky Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(248, 246, 241, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition-base);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(248, 246, 241, 0.97);
  border-bottom: 1px solid rgba(46, 46, 46, 0.06);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar__logo svg {
  height: 40px;
  width: auto;
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 1px;
}

.navbar__logo-tagline {
  font-family: var(--font-subheading);
  font-size: 0.65rem;
  color: var(--charcoal-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.navbar__link {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage-green);
  transition: width var(--transition-base);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__link:hover {
  color: var(--sage-green);
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.navbar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}

.navbar__phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--sage-green);
}

/* Mobile Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}

.navbar__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition-base);
  transform-origin: center;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--warm-ivory);
  z-index: 999;
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
  transition: right var(--transition-slow);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-drawer__overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-drawer__link {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(46, 46, 46, 0.06);
  transition: color var(--transition-fast);
}

.mobile-drawer__link:hover {
  color: var(--sage-green);
}

.mobile-drawer__cta {
  margin-top: var(--space-lg);
}

.mobile-drawer__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-md);
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

/* ---------- SECTION 2: Cinematic Full-Screen Hero ---------- */
.hero-cinematic {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-cinematic__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-cinematic__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.05) 40%,
      rgba(0, 0, 0, 0.1) 70%,
      rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}

.hero-cinematic__content {
  position: absolute;
  bottom: 80px;
  left: 8%;
  /* Shifted to the left */
  z-index: 2;
  text-align: left;
  animation: fadeInUpLeft 1s var(--ease-out) 0.5s both;
}

.btn--glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn--hero {
  padding: 18px 52px;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 1px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn--hero:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

@keyframes fadeInUpLeft {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ---------- SECTION 3: Trust Bar ---------- */
.trust-bar {
  padding: var(--space-xl) 0;
  background: var(--white);
  border-top: 1px solid rgba(46, 46, 46, 0.04);
  border-bottom: 1px solid rgba(46, 46, 46, 0.04);
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.trust-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.trust-card:hover {
  background: var(--warm-ivory);
  transform: translateY(-2px);
}

.trust-card__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 143, 90, 0.1);
  border-radius: var(--radius-md);
}

.trust-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--sage-green);
  fill: none;
  stroke-width: 1.5;
}

.trust-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.trust-card__desc {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  line-height: 1.4;
}

/* ---------- SECTION 4: About ---------- */
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about__image:hover img {
  transform: scale(1.03);
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--sage-green);
  border-radius: var(--radius-lg);
  opacity: 0.1;
  z-index: -1;
}

.about__content {
  padding: var(--space-lg) 0;
}

.about__text {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.about__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}

.about__highlight-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 143, 90, 0.1);
  border-radius: var(--radius-sm);
}

.about__highlight-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--sage-green);
  fill: none;
  stroke-width: 2;
}

.about__highlight-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* ---------- SECTION 5: Services ---------- */
.services {
  background: var(--soft-beige);
}

.services__marquee {
  overflow: hidden;
  margin-top: var(--space-xl);
  position: relative;
  padding: var(--space-sm) 0 var(--space-lg);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.services__track {
  display: flex;
  gap: var(--space-lg);
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.services__marquee:hover .services__track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.services__track .service-card {
  flex: 0 0 320px;
  min-width: 320px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46, 46, 46, 0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 143, 90, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
  background: var(--sage-green);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--sage-green);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition-base);
}

.service-card:hover .service-card__icon svg {
  stroke: var(--white);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage-green);
  transition: gap var(--transition-base);
}

.service-card__link:hover {
  gap: 12px;
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ---------- SECTION 6: Before & After ---------- */
.results__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.result-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.result-card:hover img {
  transform: scale(1.03);
}

.result-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.result-card:hover .result-card__overlay {
  opacity: 1;
}

.result-card__tag {
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

/* ---------- SECTION 7: Doctor / Specialist ---------- */
.specialist {
  background: var(--soft-beige);
}

.specialist .container {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.specialist__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.specialist__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialist__content {
  padding: var(--space-lg) 0;
}

.specialist__name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.specialist__qualification {
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  color: var(--sage-green);
  margin-bottom: var(--space-xs);
}

.specialist__experience {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(46, 46, 46, 0.08);
}

.specialist__intro {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.specialist__expertise-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.specialist__expertise-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: var(--space-xl);
}

.specialist__expertise-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.specialist__expertise-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sage-green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- SECTION 8: Gallery Carousel ---------- */
.gallery__carousel {
  margin-top: var(--space-xl);
  overflow: hidden;
  position: relative;
}

.gallery__track {
  display: flex;
  gap: var(--space-md);
  transition: transform var(--transition-slow);
  cursor: grab;
}

.gallery__track:active {
  cursor: grabbing;
}

.gallery__slide {
  flex: 0 0 calc(33.333% - var(--space-md));
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__slide:hover img {
  transform: scale(1.05);
}

.gallery__slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.gallery__slide:hover .gallery__slide-caption {
  transform: translateY(0);
}

.gallery__controls {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.gallery__btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-round);
  border: 1.5px solid rgba(46, 46, 46, 0.15);
  transition: all var(--transition-base);
  background: var(--white);
}

.gallery__btn:hover {
  background: var(--sage-green);
  border-color: var(--sage-green);
}

.gallery__btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--charcoal);
  fill: none;
  stroke-width: 2;
  transition: stroke var(--transition-fast);
}

.gallery__btn:hover svg {
  stroke: var(--white);
}

/* ---------- SECTION 9: Testimonials ---------- */
.testimonials {
  background: var(--soft-beige);
}

.testimonials__carousel {
  margin-top: var(--space-xl);
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: var(--space-lg);
  transition: transform var(--transition-slow);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - var(--space-lg) * 2 / 3);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  border: 1px solid rgba(46, 46, 46, 0.04);
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--sage-green);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-round);
  background: rgba(125, 143, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sage-green);
}

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

.testimonial-card__rating {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}

.testimonial-card__star {
  color: var(--muted-gold);
  font-size: 0.85rem;
}

.testimonials__controls {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-round);
  background: rgba(46, 46, 46, 0.15);
  transition: all var(--transition-base);
  cursor: pointer;
}

.testimonials__dot.active {
  width: 30px;
  border-radius: var(--radius-pill);
  background: var(--sage-green);
}

/* ---------- SECTION 10: FAQ ---------- */
.faq__list {
  max-width: 800px;
  margin: var(--space-xl) auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(46, 46, 46, 0.08);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  cursor: pointer;
  text-align: left;
}

.faq-item__question-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--transition-fast);
}

.faq-item.active .faq-item__question-text {
  color: var(--sage-green);
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-round);
  background: rgba(125, 143, 90, 0.08);
  transition: all var(--transition-base);
}

.faq-item.active .faq-item__icon {
  background: var(--sage-green);
  transform: rotate(45deg);
}

.faq-item__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--sage-green);
  fill: none;
  stroke-width: 2;
  transition: stroke var(--transition-fast);
}

.faq-item.active .faq-item__icon svg {
  stroke: var(--white);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: var(--space-md);
}

.faq-item__answer-text {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  padding-right: var(--space-xl);
}

/* ---------- Page Header (Subpages) ---------- */
.page-header {
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--warm-ivory) 0%, var(--soft-beige) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-header__shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(125, 143, 90, 0.06);
}

.page-header__shape--1 {
  width: 500px;
  height: 500px;
  top: -250px;
  right: -150px;
}

.page-header__shape--2 {
  width: 350px;
  height: 350px;
  bottom: -200px;
  left: -100px;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header__breadcrumb {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-header__breadcrumb a {
  color: var(--sage-green);
  font-weight: 500;
}

.page-header__breadcrumb a:hover {
  text-decoration: underline;
}

.page-header__breadcrumb span {
  color: rgba(46, 46, 46, 0.3);
}

.page-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  letter-spacing: 1px;
}

.page-header__subtitle {
  font-family: var(--font-subheading);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--charcoal-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- Page Content Placeholder ---------- */
.page-content {
  padding: var(--space-3xl) 0;
}

.page-content__placeholder {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(46, 46, 46, 0.08);
}

.page-content__placeholder-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 143, 90, 0.08);
  border-radius: var(--radius-round);
}

.page-content__placeholder-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--sage-green);
  fill: none;
  stroke-width: 1.5;
}

.page-content__placeholder h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.page-content__placeholder p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Contact Page: Quick Contact Cards ---------- */
.contact-cards {
  padding: var(--space-2xl) 0 var(--space-xl);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  border: 1px solid rgba(46, 46, 46, 0.05);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.contact-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-round);
  background: rgba(125, 143, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.contact-card:hover .contact-card__icon {
  background: var(--sage-green);
  transform: scale(1.08);
}

.contact-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--sage-green);
  fill: none;
  transition: all var(--transition-base);
}

.contact-card:hover .contact-card__icon svg {
  stroke: var(--white);
}

.contact-card__icon--whatsapp svg {
  fill: var(--sage-green);
  stroke: none;
}

.contact-card:hover .contact-card__icon--whatsapp svg {
  fill: var(--white);
  stroke: none;
}

.contact-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card__text {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.5;
  margin-bottom: 2px;
}

.contact-card__btn {
  margin-top: auto;
  padding-top: var(--space-md);
}

/* ---------- Contact Page: Clinic Information ---------- */
.clinic-info {
  background: var(--soft-beige);
}

.clinic-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.clinic-info__tagline {
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--sage-green);
  margin-bottom: var(--space-xl);
}

.clinic-info__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.clinic-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.clinic-info__item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 143, 90, 0.1);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.clinic-info__item:hover .clinic-info__item-icon {
  background: var(--sage-green);
}

.clinic-info__item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--sage-green);
  fill: none;
  transition: all var(--transition-base);
}

.clinic-info__item:hover .clinic-info__item-icon svg {
  stroke: var(--white);
}

.clinic-info__item div {
  padding-top: 8px;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.clinic-info__item a {
  color: var(--charcoal);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.clinic-info__item a:hover {
  color: var(--sage-green);
}

.clinic-info__divider {
  color: var(--charcoal-light);
  margin: 0 4px;
}

/* Clinic Hours */
.clinic-info__hours {
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(46, 46, 46, 0.06);
}

.clinic-info__hours-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}

.clinic-info__hours-title svg {
  stroke: var(--sage-green);
  fill: none;
}

.clinic-info__hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.clinic-info__hours-row {
  display: flex;
  gap: var(--space-md);
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.clinic-info__hours-row span:first-child {
  min-width: 90px;
  font-weight: 500;
  color: var(--charcoal);
}

/* Clinic Image */
.clinic-info__image-wrapper {
  position: relative;
}

.clinic-info__image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.clinic-info__image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
  pointer-events: none;
}

.clinic-info__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.clinic-info__image-frame:hover .clinic-info__image {
  transform: scale(1.03);
}

/* ---------- Contact Page: Google Map ---------- */
.contact-map {
  padding: 0 0 var(--space-3xl);
}

.contact-map__wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
  border: 1px solid rgba(46, 46, 46, 0.06);
}

.contact-map__wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- CTA Banner Buttons ---------- */
.cta-banner__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn--cta-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn--cta-outline:hover {
  background: var(--white);
  color: var(--sage-green);
  border-color: var(--white);
}

/* ---------- SECTION 11: CTA Banner ---------- */
.cta-banner {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-green-dark) 50%, var(--olive-green) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-banner__shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-banner__shape--1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.cta-banner__shape--2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-banner__subtitle {
  font-family: var(--font-subheading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-xl);
}

/* ---------- SECTION 12: Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  padding-right: var(--space-lg);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.footer__logo-tagline {
  font-family: var(--font-subheading);
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-round);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--sage-green);
  border-color: var(--sage-green);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.7);
  transition: fill var(--transition-fast);
}

.footer__social-link:hover svg {
  fill: var(--white);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--sage-green-light);
}

.footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  align-items: flex-start;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--sage-green);
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__map {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 160px;
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.5);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  margin-top: var(--space-md);
  font-size: 0.82rem;
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer__bottom-links a:hover {
  color: var(--sage-green-light);
}

/* ---------- Floating Action Buttons ---------- */
.fab {
  position: fixed;
  bottom: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  animation: fabEnter 0.6s var(--ease-out) both;
}

.fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.fab--whatsapp {
  left: 24px;
  background: #25D366;
  animation-delay: 0.3s;
}

.fab--call {
  right: 24px;
  background: var(--sage-green);
  animation-delay: 0.5s;
}

.fab svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.fab__tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  white-space: nowrap;
  background: var(--charcoal);
  color: white;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
}

.fab:hover .fab__tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes fabEnter {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ---------- Booking Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-xl);
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition-base);
  position: relative;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-round);
  transition: background var(--transition-fast);
}

.modal__close:hover {
  background: var(--soft-beige);
}

.modal__close svg {
  width: 18px;
  height: 18px;
  stroke: var(--charcoal);
  fill: none;
  stroke-width: 2;
}

.modal__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.modal__subtitle {
  font-family: var(--font-subheading);
  font-size: 1rem;
  color: var(--charcoal-light);
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(46, 46, 46, 0.12);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--warm-ivory);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage-green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(125, 143, 90, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(46, 46, 46, 0.35);
}

.form__submit {
  width: 100%;
  margin-top: var(--space-sm);
}

.form__success {
  text-align: center;
  padding: var(--space-xl) 0;
  display: none;
}

.form__success.show {
  display: block;
}

.form__success-icon {
  width: 64px;
  height: 64px;
  background: rgba(125, 143, 90, 0.1);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.form__success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--sage-green);
  fill: none;
  stroke-width: 2;
}

.form__success-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.form__success-text {
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger.revealed>*:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger.revealed>*:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger.revealed>*:nth-child(3) {
  transition-delay: 0.15s;
}

.stagger.revealed>*:nth-child(4) {
  transition-delay: 0.2s;
}

.stagger.revealed>*:nth-child(5) {
  transition-delay: 0.25s;
}

.stagger.revealed>*:nth-child(6) {
  transition-delay: 0.3s;
}

.stagger.revealed>* {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile Sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--white);
  padding: 12px var(--space-md);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(46, 46, 46, 0.06);
}

.mobile-cta .btn {
  width: 100%;
}

/* ---------- About Us Page Specific ---------- */

/* About Hero */
.about-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  background: var(--warm-ivory);
  overflow: hidden;
}

.about-hero__shapes {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.about-hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.about-hero__shape--1 {
  top: -10%; left: -10%;
  width: 500px; height: 500px;
  background: rgba(125, 143, 90, 0.08);
}

.about-hero__shape--2 {
  bottom: -10%; right: -10%;
  width: 600px; height: 600px;
  background: rgba(214, 203, 186, 0.15);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.about-hero__desc {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  margin-bottom: var(--space-lg);
  max-width: 90%;
}

.about-hero__buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.about-hero__image-wrapper {
  position: relative;
}

.about-hero__image-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  position: relative;
}

.about-hero__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
  pointer-events: none;
}

.about-hero__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-hero__image-wrapper:hover .about-hero__image {
  transform: scale(1.03);
}

/* Meet The Specialist */
.specialist-about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.specialist-about__image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.specialist-about__image {
  width: 100%;
  height: auto;
  display: block;
}

.specialist-about__qualifications {
  margin-bottom: var(--space-md);
  color: var(--sage-green);
  font-size: 1.05rem;
}

.specialist-about__qualifications p {
  margin-bottom: 5px;
}

.specialist-about__experience {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.specialist-about__intro p {
  margin-bottom: var(--space-md);
  color: var(--charcoal-light);
}

/* Expertise Section */
.expertise-about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.expertise-about__card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all var(--transition-base);
  border: 1px solid rgba(0,0,0,0.02);
}

.expertise-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border-color: rgba(125, 143, 90, 0.1);
}

.expertise-about__icon {
  width: 60px;
  height: 60px;
  background: rgba(125, 143, 90, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--sage-green);
}

.expertise-about__icon svg {
  width: 28px;
  height: 28px;
}

.expertise-about__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* Certifications Section */
.certifications-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.certifications-about__image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.certifications-about__image {
  width: 100%;
  height: auto;
  display: block;
}

.certifications-about__desc {
  margin-bottom: var(--space-lg);
  color: var(--charcoal-light);
}

.certifications-about__list {
  list-style: none;
}

.certifications-about__list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  background: var(--white);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.02);
}

.certifications-about__list li svg {
  width: 24px;
  height: 24px;
  color: var(--sage-green);
  flex-shrink: 0;
}

.certifications-about__list li span {
  font-size: 1.05rem;
  color: var(--charcoal);
  font-weight: 500;
}

/* Why Choose Aura */
.why-choose-about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.why-choose-about__card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all var(--transition-base);
}

.why-choose-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.why-choose-about__icon {
  width: 70px;
  height: 70px;
  background: rgba(125, 143, 90, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--sage-green);
}

.why-choose-about__icon svg {
  width: 32px;
  height: 32px;
}

.why-choose-about__title {
  font-family: var(--font-heading);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
  color: var(--charcoal);
}

.why-choose-about__desc {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Philosophy Section */
.philosophy-about__wrapper {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.philosophy-about__content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.philosophy-about__content p {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  margin-bottom: var(--space-md);
}

.philosophy-about__content strong {
  color: var(--sage-green);
  font-weight: 500;
}

.philosophy-about__shapes {
  position: absolute;
  top: 40px;
  right: 40px;
  opacity: 0.2;
}

/* Statistics Section */
.stats-about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stats-about__item {
  padding: var(--space-lg);
}

.stats-about__number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--sage-green);
  margin-bottom: var(--space-xs);
}

.stats-about__label {
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 500;
}

/* ---------- Services Page Specific ---------- */

/* Service Hero */
.service-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  background: linear-gradient(135deg, var(--warm-ivory) 0%, var(--soft-beige) 100%);
  overflow: hidden;
}

.service-hero__shapes {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.service-hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.service-hero__shape--1 {
  top: -10%; left: -10%;
  width: 500px; height: 500px;
  background: rgba(125, 143, 90, 0.08);
}

.service-hero__shape--2 {
  bottom: -10%; right: -10%;
  width: 600px; height: 600px;
  background: rgba(214, 203, 186, 0.15);
}

.service-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.service-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  line-height: 1.15;
}

.service-hero__divider {
  margin-bottom: var(--space-md);
}

.service-hero__desc {
  font-size: 1.15rem;
  color: var(--charcoal-light);
  margin-bottom: var(--space-lg);
  max-width: 90%;
  line-height: 1.6;
}

.service-hero__buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.service-hero__image-wrapper {
  position: relative;
}

.service-hero__image-frame {
  border-radius: 20px 100px 20px 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  position: relative;
}

.service-hero__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-hero__image-wrapper:hover .service-hero__image {
  transform: scale(1.03);
}

/* Service Categories */
.service-categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.category-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  transition: all var(--transition-base);
  border: 1px solid rgba(0,0,0,0.02);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: rgba(125, 143, 90, 0.15);
}

.category-card__content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
}

.category-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.category-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(125, 143, 90, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-green);
  flex-shrink: 0;
}

.category-card__icon svg {
  width: 24px;
  height: 24px;
}

.category-card__title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  text-transform: uppercase;
}

.category-card__list {
  list-style: none;
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.category-card__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

.category-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background-color: var(--sage-green);
  border-radius: 50%;
}

.category-card__list--columns {
  column-count: 2;
  column-gap: var(--space-lg);
}

.category-card__link {
  font-weight: 500;
  color: var(--sage-green);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast);
  margin-top: auto;
}

.category-card__link:hover {
  color: var(--sage-green-dark);
}

.category-card__image-wrapper {
  position: relative;
  height: 100%;
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(to right, transparent 0%, black 15%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%);
}

.category-card--full {
  grid-column: 1 / -1;
  grid-template-columns: 1fr 0.5fr;
}

/* ---------- About Us Page Specific ---------- */

/* About Hero */
.about-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  background: var(--warm-ivory);
  overflow: hidden;
}

.about-hero__shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.about-hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.about-hero__shape--1 {
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(125, 143, 90, 0.08);
}

.about-hero__shape--2 {
  bottom: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(214, 203, 186, 0.15);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.about-hero__desc {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  margin-bottom: var(--space-lg);
  max-width: 90%;
}

.about-hero__buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.about-hero__image-wrapper {
  position: relative;
}

.about-hero__image-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.about-hero__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.about-hero__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-hero__image-wrapper:hover .about-hero__image {
  transform: scale(1.03);
}

/* Meet The Specialist */
.specialist-about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: stretch;
}

.specialist-about__image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.specialist-about__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.specialist-about__qualifications {
  margin-bottom: var(--space-md);
  color: var(--sage-green);
  font-size: 1.05rem;
}

.specialist-about__qualifications p {
  margin-bottom: 5px;
}

.specialist-about__experience {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.specialist-about__intro p {
  margin-bottom: var(--space-md);
  color: var(--charcoal-light);
}

/* Expertise Section */
.section--light {
  background: var(--soft-beige);
}

.expertise-about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.expertise-about__card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.expertise-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-color: rgba(125, 143, 90, 0.1);
}

.expertise-about__icon {
  width: 60px;
  height: 60px;
  background: rgba(125, 143, 90, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--sage-green);
}

.expertise-about__icon svg {
  width: 28px;
  height: 28px;
}

.expertise-about__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* Certifications Section */
.certifications-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.certifications-about__image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.certifications-about__image {
  width: 100%;
  height: auto;
  display: block;
}

.certifications-about__desc {
  margin-bottom: var(--space-lg);
  color: var(--charcoal-light);
}

.certifications-about__list {
  list-style: none;
}

.certifications-about__list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  background: var(--white);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.certifications-about__list li svg {
  width: 24px;
  height: 24px;
  color: var(--sage-green);
  flex-shrink: 0;
}

.certifications-about__list li span {
  font-size: 1.05rem;
  color: var(--charcoal);
  font-weight: 500;
}

/* Why Choose Aura */
.why-choose-about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.why-choose-about__card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-base);
}

.why-choose-about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.why-choose-about__icon {
  width: 70px;
  height: 70px;
  background: rgba(125, 143, 90, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--sage-green);
}

.why-choose-about__icon svg {
  width: 32px;
  height: 32px;
}

.why-choose-about__title {
  font-family: var(--font-heading);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
  color: var(--charcoal);
}

.why-choose-about__desc {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Philosophy Section */
.philosophy-about__wrapper {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.philosophy-about__content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.philosophy-about__content p {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  margin-bottom: var(--space-md);
}

.philosophy-about__content strong {
  color: var(--sage-green);
  font-weight: 500;
}

.philosophy-about__shapes {
  position: absolute;
  top: 40px;
  right: 40px;
  opacity: 0.2;
}

/* Statistics Section */
.stats-about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stats-about__item {
  padding: var(--space-lg);
}

.stats-about__number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--sage-green);
  margin-bottom: var(--space-xs);
}

.stats-about__label {
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 500;
}

/* ---------- Responsive Styles ---------- */

/* Tablet */
@media (max-width: 1024px) {
  .about-hero__grid,
  .specialist-about__grid,
  .certifications-about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .about-hero__image {
    height: 400px;
  }
  
  .about-hero__content {
    order: -1;
  }

  .about-hero__buttons {
    justify-content: center;
  }

  .about-hero__desc,
  .philosophy-about__content {
    margin-left: auto;
    margin-right: auto;
  }

  .expertise-about__grid,
  .why-choose-about__grid,
  .stats-about__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    order: 1;
  }

  .hero__image {
    order: 2;
    max-height: 400px;
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .trust-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about__image {
    max-height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

  .services__track .service-card {
    flex: 0 0 280px;
    min-width: 280px;
  }

  .specialist .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .specialist__image {
    max-width: 350px;
    margin: 0 auto;
  }

  .specialist__expertise-list {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-xl);
  }

  .results__gallery {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery__slide {
    flex: 0 0 calc(50% - var(--space-md) / 2);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - var(--space-lg) / 2);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  /* Services Page */
  .service-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .service-hero__content {
    order: 1;
  }
  
  .service-hero__buttons {
    justify-content: center;
  }
  
  .service-hero__desc {
    margin: 0 auto var(--space-lg);
  }
  
  .service-hero__image-wrapper {
    order: -1;
  }
  
  .service-categories__grid {
    grid-template-columns: 1fr;
  }
  
  .category-card {
    grid-template-columns: 1fr;
  }
  
  .category-card__image-wrapper {
    height: 250px;
    order: -1;
  }
  
  .category-card__image {
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%);
  }

  .category-card--full {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  /* Contact Page */
  .contact-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .clinic-info__grid {
    grid-template-columns: 1fr;
  }
  
  .clinic-info__image-frame {
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 16/9;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .stats-about__grid {
    grid-template-columns: 1fr;
  }

  :root {
    --nav-height: 68px;
    --space-3xl: 5rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .navbar__menu {
    display: none;
  }

  .navbar__phone {
    display: none;
  }

  .navbar__right .btn {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero__badge {
    margin-bottom: var(--space-md);
  }

  .hero__image {
    max-height: 350px;
    margin-top: var(--space-lg);
  }

  .hero__trust {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
  }

  .trust-bar .container {
    grid-template-columns: 1fr;
  }

  .trust-card {
    padding: var(--space-sm);
  }

  .about .container {
    text-align: center;
  }

  .about__highlights {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .services__track .service-card {
    flex: 0 0 260px;
    min-width: 260px;
  }

  .services__track {
    animation-duration: 25s;
  }

  .specialist .container {
    gap: var(--space-lg);
  }

  .specialist__expertise-list {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .results__gallery {
    grid-template-columns: 1fr;
  }

  .gallery__slide {
    flex: 0 0 85%;
  }

  .testimonial-card {
    flex: 0 0 85%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .mobile-cta {
    display: block;
  }

  .fab {
    bottom: 80px;
  }

  .fab--whatsapp {
    left: 16px;
  }

  .fab--call {
    right: 16px;
  }

  /* Contact Page */
  .contact-cards__grid {
    grid-template-columns: 1fr;
  }
  
  .contact-map__wrapper {
    height: 300px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .expertise-about__grid,
  .why-choose-about__grid {
    grid-template-columns: 1fr;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .about__highlights {
    grid-template-columns: 1fr;
  }

  .results__gallery {
    gap: var(--space-md);
  }

  .modal {
    padding: var(--space-lg);
    width: 95%;
  }
}