/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Dermats â€” Premium Dermatology Website CSS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€ DESIGN TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --teal: #1a8a7a;
  --teal-light: #25b89d;
  --teal-dark: #0f5c50;
  --teal-glow: rgba(26, 138, 122, 0.25);
  --cream: #faf8f4;
  --cream-dark: #f0ebe3;
  --champagne: #e8dcc8;
  --gold: #c9a96e;
  --gold-light: #e8c98a;
  --dark: #0d1412;
  --dark-2: #141f1c;
  --surface: #1c2826;
  --text: #2a3330;
  --text-muted: #6b7d79;
  --text-light: #a8b8b4;
  --white: #ffffff;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-teal: 0 8px 32px rgba(26, 138, 122, 0.35);

  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;
}

/* â”€â”€â”€ RESET & BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select {
  font-family: inherit;
}

/* â”€â”€â”€ UTILITIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  border: 1px solid var(--teal-light);
  border-radius: 100px;
  background: rgba(26, 138, 122, 0.06);
}

.section-label--light {
  color: var(--teal-light);
  border-color: rgba(37, 184, 157, 0.4);
  background: rgba(37, 184, 157, 0.1);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: italic;
  color: var(--teal);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* â”€â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26, 138, 122, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 700;
}

.btn--light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--lg {
  padding: 1.1rem 2.6rem;
  font-size: 1rem;
}

/* â”€â”€â”€ NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(13, 20, 18, 0.92);
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(26, 138, 122, 0.2);
}

.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav.scrolled .nav__logo {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.logo-icon {
  color: var(--teal-light);
  font-size: 1.1rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--teal-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  box-shadow: var(--shadow-teal);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(26, 138, 122, 0.5);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* â”€â”€â”€ MOBILE MENU â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu__link {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--teal-light);
}

.mobile-menu__link--cta {
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  padding: 0.8rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

/* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* --- HERO BRANDING --- */
.hero__branding {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.1s forwards;
}

.hero__branding-text-group {
  display: flex;
  flex-direction: column;
}

.hero__branding-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.15em;
  line-height: 0.9;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero__branding-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 0.2rem;
}

.hero__branding-logo {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(37, 184, 157, 0.3));
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(10, 18, 16, 0.88) 40%,
      rgba(10, 18, 16, 0.45) 75%,
      rgba(10, 18, 16, 0.15) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 8rem 2rem 6rem;
  margin-left: max(4rem, calc((100vw - 1200px) / 2));
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  border: 1px solid rgba(37, 184, 157, 0.4);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
  background: rgba(37, 184, 157, 0.08);
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.4s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--teal-light);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.8s forwards;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  width: fit-content;
  opacity: 0;
  animation: fadeSlideUp 0.9s 1s forwards;
}

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

.stat__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.stat__num sup {
  font-size: 1rem;
  color: var(--teal-light);
}

.stat__label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  text-align: center;
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 1;
  }
}

/* â”€â”€â”€ MARQUEE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.marquee-bar {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  overflow: hidden;
  padding: 1.1rem 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 2.5rem;
  white-space: nowrap;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* --- STORIES --- */
.stories {
  padding-bottom: 5rem;
}

.stories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(26, 138, 122, 0.1);
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(26, 138, 122, 0.12);
  border-color: var(--teal-light);
}

.story-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.story-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-card:hover .story-card__img {
  transform: scale(1.08);
}

.story-card__content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.story-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal);
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  padding: 0.2rem 0.6rem;
  background: rgba(26, 138, 122, 0.08);
  border-radius: 4px;
  width: fit-content;
}

.story-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--teal-dark);
  line-height: 1.2;
}

.story-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

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

@media (max-width: 576px) {
  .stories__grid {
    grid-template-columns: 1fr;
  }
}

/* ─── DOCTORS ─── */
/* ─── FEATURES ─── */
.features {
  padding-top: 4rem;
  padding-bottom: 0rem;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
  border-color: rgba(37, 184, 157, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(37, 184, 157, 0.1);
  color: var(--teal);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.feature-card__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.feature-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* â”€â”€â”€ ABOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* --- STATS BAR --- */
.stats-bar {
  background: var(--dark-2);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(26, 138, 122, 0.15);
  border-bottom: 1px solid rgba(26, 138, 122, 0.15);
}

.stats-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0.5rem 1.5rem;
}

.stats-bar__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--teal-light);
  line-height: 1.1;
}

.stats-bar__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.4rem;
}

.stats-bar__divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.about {
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about__visual {
  position: relative;
  height: 560px;
}

.about__card-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__card-img-wrap {
  width: 100%;
  height: 100%;
}

.about__card-img {
  transition: transform 0.8s ease;
}

.about__card-main:hover .about__card-img {
  transform: scale(1.05);
}

.about__floating-badge {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-teal);
  white-space: nowrap;
}

.floating-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.floating-text {
  font-size: 0.75rem;
  line-height: 1.4;
  opacity: 0.9;
}

.about__card-side {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--cream);
}

.about__card-side-img {
  transition: transform 0.8s ease;
  height: 100%;
}

.about__card-side:hover .about__card-side-img {
  transform: scale(1.05);
}

.about__award {
  position: absolute;
  top: -1.5rem;
  right: -1rem;
  background: var(--white);
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
}

.award-icon {
  font-size: 1.4rem;
}

.about__award strong {
  display: block;
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 0.82rem;
}

.about__award span {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.about__text {
  padding-left: 1rem;
}

.about__desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about__pillars {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  flex: 1;
}

.pillar__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(26, 138, 122, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26, 138, 122, 0.15);
}

.pillar strong {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.pillar span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* â”€â”€â”€ SERVICES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 138, 122, 0.12), transparent 70%);
  pointer-events: none;
}

.services .section-title {
  color: var(--white);
}

.services .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.services .section-label {
  color: var(--teal-light);
  border-color: rgba(37, 184, 157, 0.3);
  background: rgba(37, 184, 157, 0.06);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 25vh;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 138, 122, 0.08), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: 0;
}

.service-card>* {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  border-color: rgba(37, 184, 157, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  font-size: 1.2rem;
  color: var(--teal-light);
  margin-bottom: 1.5rem;
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-light);
  letter-spacing: 0.05em;
  transition: gap var(--transition-fast), color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-card__link:hover {
  color: var(--white);
  gap: 0.8rem;
}

.service-card--cta {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.service-card--cta:hover {
  transform: translateY(-6px);
}

.service-card__cta-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}

/* â”€â”€â”€ GALLERY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gallery {
  padding-bottom: 0;
  background: var(--cream-dark);
}

.gallery .section-title {
  color: var(--text);
}

.gallery__strip {
  display: flex;
  gap: 0.5rem;
  height: 420px;
  margin-top: 2rem;
}

.gallery__item {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  transition: flex var(--transition);
  cursor: pointer;
}

.gallery__item--tall {
  flex: 1.4;
}

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

.gallery__item:hover {
  flex: 2;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__hover {
  opacity: 1;
}

.gallery__hover span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* â”€â”€â”€ DOCTORS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.doctors {
  background: var(--cream);
}

.doctors__grid {
  display: grid;
  grid-template-columns: minmax(auto, 600px);
  justify-content: center;
  gap: 2rem;
}

.doctor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

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

.doctor-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  grid-row: 1;
  background: #e8e0d5;
}

.doctor-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transition: transform 0.8s ease;
}

.doctor-card:hover .doctor-card__img {
  transform: scale(1.05);
}

.doctor-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10, 18, 16, 0.7));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.doctor-card__book {
  background: var(--white);
  color: var(--teal-dark);
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all var(--transition-fast);
}

.doctor-card__book:hover {
  background: var(--teal);
  color: var(--white);
}

.doctor-card__info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doctor-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.doctor-card__spec {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.doctor-card__bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.doctor-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--teal-dark);
  background: rgba(26, 138, 122, 0.08);
  border: 1px solid rgba(26, 138, 122, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

/* â”€â”€â”€ PROCESS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.process {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}

.process::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 138, 122, 0.1), transparent 70%);
}

.process .section-title {
  color: var(--white);
}

.process .section-label {
  color: var(--teal-light);
  border-color: rgba(37, 184, 157, 0.3);
  background: rgba(37, 184, 157, 0.06);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 2.3rem;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(to right, var(--teal), rgba(26, 138, 122, 0.2));
}

.process__step {
  text-align: center;
}

.process__step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.process__step-num::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(26, 138, 122, 0.1);
  border: 1px solid rgba(26, 138, 122, 0.2);
  z-index: -1;
}

.process__step-line {
  display: none;
}

.process__step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.process__step-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}

/* ─── BEFORE & AFTER ──────────────────────── */
.before-after {
  background: var(--cream);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ba-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.ba-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.ba-card__images {
  display: flex;
  height: 260px;
}

.ba-image-container {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.ba-image-container:first-child {
  border-right: 2px solid var(--white);
}

.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 18, 16, 0.7);
  color: var(--white);
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
  backdrop-filter: blur(4px);
}

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

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

.ba-card__info {
  padding: 1.8rem;
  flex-grow: 1;
}

.ba-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.ba-card__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* â”€â”€â”€ TESTIMONIALS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials {
  background: var(--cream-dark);
  overflow: hidden;
}

.testimonials__track-wrap {
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-card {
  min-width: calc(50% - 0.75rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
}

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

.testi-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.testi-card__text {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.8rem;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testi-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-card__author strong {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.testi-card__author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testi-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.testi-btn:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}

.testi-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testi-dot.active {
  background: var(--teal);
  width: 24px;
}

/* â”€â”€â”€ CTA SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
}

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

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 18, 16, 0.94) 0%, rgba(15, 92, 80, 0.88) 100%);
}

.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-section__title em {
  font-style: italic;
  color: var(--teal-light);
}

.cta-section__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-section__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.cta-input {
  padding: 1rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  -webkit-appearance: none;
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cta-input:focus {
  border-color: var(--teal-light);
  background: rgba(255, 255, 255, 0.12);
}

.cta-input option {
  background: var(--dark-2);
  color: var(--white);
}

.cta-section__form .btn--primary {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 0.5rem;
}

/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer__top {
  padding: 2.5rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer__logo-img {
  width: auto;
  height: 140px;
  max-width: 320px;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: brightness(1.15);
  display: block;
  margin: 0 0 0 -1.5rem;
}

.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 0.7rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: all var(--transition-fast);
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: transparent;
}

#social-ig { color: #E4405F; }
#social-fb { color: #1877F2; }
#social-yt { color: #FF0000; }
#social-li { color: #0A66C2; }

#social-ig:hover { background: #E4405F; color: #fff; box-shadow: 0 4px 12px rgba(228, 64, 95, 0.3); }
#social-fb:hover { background: #1877F2; color: #fff; box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3); }
#social-yt:hover { background: #FF0000; color: #fff; box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3); }
#social-li:hover { background: #0A66C2; color: #fff; box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3); }

.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__links a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--teal-light);
}

.footer__links--contact li {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.5;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition-fast);
}

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

/* â”€â”€â”€ ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__visual {
    height: 400px;
  }

  .about__text {
    padding-left: 0;
  }

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

  .doctors__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .doctor-card {
    grid-template-columns: 1fr;
  }

  .doctor-card__img-wrap {
    aspect-ratio: 3/4;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

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

  .process__steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero__branding-logo {
    width: 60px;
    height: 60px;
  }

  .hero__branding-sub {
    font-size: 0.55rem;
    white-space: normal;
    letter-spacing: 0.08em;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__content {
    padding: 7rem 1.5rem 4rem;
    margin-left: 0;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem;
  }

  .stat__divider {
    width: 60px;
    height: 1px;
  }

  .hero__scroll-indicator {
    display: none;
  }

  .about__visual {
    height: 320px;
  }

  .about__pillars {
    flex-direction: column;
  }

  .stats-bar__grid {
    flex-wrap: wrap;
    gap: 1.5rem 0;
  }

  .stats-bar__item {
    flex: 0 0 50%;
    padding: 0.5rem;
  }

  .stats-bar__label {
    text-align: center;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }

  .stats-bar__divider {
    display: none;
  }

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

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

  .feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem 0.8rem;
    gap: 0.6rem;
  }

  .feature-card__icon {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .feature-card__title {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .feature-card__desc {
    font-size: 0.75rem;
  }

  .gallery__strip {
    height: 260px;
  }

  .testi-card {
    min-width: 100%;
  }

  .cta-section__form {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom .container {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.3rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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

  .gallery__strip {
    flex-direction: column;
    height: auto;
  }

  .gallery__item {
    height: 220px;
    flex: unset !important;
  }

  .gallery__item--tall {
    height: 220px;
  }
}

/* ─── DETAILED SERVICES & PEELS ─── */
.detailed-services {
  background: var(--cream-dark);
}

.peels {
  background: var(--white);
}

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

@media (max-width: 1024px) {
  .services-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-list__grid {
    grid-template-columns: 1fr;
  }
}

.service-list-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 138, 122, 0.1);
  transition: all var(--transition);
  height: 100%;
}

.service-list-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-teal);
  border-color: rgba(37, 184, 157, 0.3);
}

.service-list-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.service-list-card__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-list-card__item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-list-card__icon {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── CLINICS ─── */
.clinics {
  background: var(--white);
  position: relative;
}

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

.location-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--teal-light);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-teal);
  border-color: rgba(37, 184, 157, 0.3);
}

.location-card__header {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.location-card__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  line-height: 1.2;
}

.location-card__address {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.location-card__icon {
  color: var(--teal);
  font-size: 1.2rem;
}

.location-card__map {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.location-card__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: contrast(1.05) saturate(1.1);
  transition: filter var(--transition);
}

.location-card:hover .location-card__map iframe {
  filter: contrast(1.1) saturate(1.2);
}

@media (max-width: 992px) {
  .clinics__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .location-card {
    padding: 1.5rem;
  }

  .location-card__map {
    height: 250px;
  }

  .location-card__title {
    font-size: 1.5rem;
  }
}

.break-desktop {
  display: inline;
}

@media (max-width: 768px) {
  .break-desktop {
    display: none;
  }
}