/* ═══════════════════════════════════════════════════════════════
   CENTRE DENTAIRE FOUNTY — Design System
   Aesthetic: Medical Luxury · Clean Editorial · Organic Warmth
   Palette: Deep Teal + Warm Gold + Soft Ivory
   ═══════════════════════════════════════════════════════════════ */

/* ─── 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=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ─── CSS Custom Properties (Design Tokens) ─── */
:root {
  /* Primary Palette */
  --clr-teal-900: #0C3B3F;
  --clr-teal-800: #134E52;
  --clr-teal-700: #1A6369;
  --clr-teal-600: #0E7490;
  --clr-teal-500: #0891B2;
  --clr-teal-400: #22D3EE;
  --clr-teal-100: #E0FAFB;
  --clr-teal-50: #F0FDFA;

  /* Gold Accents */
  --clr-gold-600: #B8860B;
  --clr-gold-500: #D4A744;
  --clr-gold-400: #E8C86A;
  --clr-gold-300: #F0DDA0;
  --clr-gold-100: #FFF8E7;

  /* Neutrals */
  --clr-white: #FFFFFF;
  --clr-ivory: #FAFAF5;
  --clr-cream: #F5F0EB;
  --clr-warm-100: #F3EDE5;
  --clr-warm-200: #E5DDD3;
  --clr-warm-300: #C4B8AA;
  --clr-warm-500: #8A7D6F;
  --clr-warm-700: #5A5049;
  --clr-warm-900: #2D2622;

  /* Semantic */
  --clr-bg: var(--clr-ivory);
  --clr-bg-alt: var(--clr-cream);
  --clr-surface: var(--clr-white);
  --clr-text: var(--clr-warm-900);
  --clr-text-muted: var(--clr-warm-500);
  --clr-text-light: var(--clr-warm-300);
  --clr-primary: var(--clr-teal-700);
  --clr-primary-dark: var(--clr-teal-900);
  --clr-accent: var(--clr-gold-500);
  --clr-accent-light: var(--clr-gold-100);
  --clr-cta: var(--clr-teal-600);
  --clr-cta-hover: var(--clr-teal-800);
  --clr-border: rgba(26, 99, 105, 0.08);

  /* Typography */
  --ff-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-hero: clamp(2.8rem, 5.5vw, 5.2rem);
  --fs-h1: clamp(2.2rem, 4vw, 3.6rem);
  --fs-h2: clamp(1.8rem, 3vw, 2.8rem);
  --fs-h3: clamp(1.3rem, 2vw, 1.6rem);
  --fs-body: clamp(0.95rem, 1.1vw, 1.1rem);
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;

  --ls-tight: -0.03em;
  --ls-normal: 0;
  --ls-wide: 0.08em;
  --ls-wider: 0.15em;

  /* Spacing Scale */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-6xl: 12rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 860px;
  --container-wide: 1440px;
  --nav-height: 80px;
  --section-pad: clamp(4rem, 8vw, 8rem);

  /* Borders & Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* Shadows */
  --shadow-subtle: 0 1px 3px rgba(44, 38, 34, 0.04);
  --shadow-card: 0 4px 20px rgba(44, 38, 34, 0.06), 0 1px 3px rgba(44, 38, 34, 0.04);
  --shadow-elevated: 0 12px 40px rgba(44, 38, 34, 0.10), 0 4px 12px rgba(44, 38, 34, 0.05);
  --shadow-glow: 0 0 40px rgba(8, 145, 178, 0.12);
  --shadow-gold: 0 4px 24px rgba(212, 167, 68, 0.18);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 200ms;
  --dur-normal: 350ms;
  --dur-slow: 600ms;
  --dur-slower: 900ms;

  /* Z-index scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 500;
  --z-modal: 1000;
  --z-preloader: 9999;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background: var(--clr-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--clr-teal-400);
  color: var(--clr-white);
}

/* Focus ring for accessibility */
:focus-visible {
  outline: 3px solid var(--clr-teal-400);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ─── Utility Classes ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

.section-pad {
  padding-block: var(--section-pad);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ─── Typography ─── */
.heading-display {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--clr-primary-dark);
}

h1,
.h1 {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--clr-primary-dark);
}

h2,
.h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  color: var(--clr-primary-dark);
}

h3,
.h3 {
  font-family: var(--ff-body);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  color: var(--clr-text);
}

.overline {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--clr-accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.overline::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--clr-accent);
  display: inline-block;
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--clr-text-muted);
  max-width: 560px;
  line-height: var(--lh-relaxed);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: transform var(--dur-normal) var(--ease-out),
    box-shadow var(--dur-normal) var(--ease-out),
    background-color var(--dur-normal) var(--ease-out),
    color var(--dur-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.btn:hover::after {
  opacity: 1;
}

.btn--primary {
  background: var(--clr-cta);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(14, 116, 144, 0.3);
}

.btn--primary:hover {
  background: var(--clr-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 116, 144, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--clr-primary-dark);
  border: 1.5px solid var(--clr-primary);
}

.btn--secondary:hover {
  background: var(--clr-primary-dark);
  color: var(--clr-white);
  border-color: var(--clr-primary-dark);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--clr-gold-500), var(--clr-gold-600));
  color: var(--clr-white);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 167, 68, 0.3);
}

.btn--white {
  background: var(--clr-white);
  color: var(--clr-primary-dark);
  box-shadow: var(--shadow-card);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--dur-fast) var(--ease-out);
}

.btn:hover svg {
  transform: translateX(3px);
}




/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  transition: background var(--dur-slow) var(--ease-out),
    box-shadow var(--dur-slow) var(--ease-out),
    transform var(--dur-normal) var(--ease-out);
}

.navbar--scrolled {
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 var(--clr-border), var(--shadow-subtle);
}

.navbar--hidden {
  transform: translateY(-100%);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
}

.navbar__logo img {
  height: 48px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.navbar__link {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  letter-spacing: var(--ls-wide);
  position: relative;
  padding: var(--space-xs) 0;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}

/* Specific colors for navbar over dark backgrounds (not scrolled) */
.navbar:not(.navbar--scrolled) .navbar__link {
  color: rgba(255, 255, 255, 0.8);
}

.navbar:not(.navbar--scrolled) .navbar__link:hover,
.navbar:not(.navbar--scrolled) .navbar__link.active {
  color: var(--clr-gold-400);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width var(--dur-normal) var(--ease-out);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--clr-primary-dark);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__cta {
  padding: 10px 24px;
  font-size: var(--fs-xs);
}

@media (max-width: 1000px) {
  .navbar__cta {
    display: none;
  }
}

/* Mobile Menu Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: calc(var(--z-modal) + 1);
}

.navbar__toggle span {
  width: 100%;
  height: 2px;
  background: var(--clr-primary-dark);
  border-radius: 4px;
  transition: all var(--dur-normal) var(--ease-out);
  transform-origin: center;
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Panel */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(250, 250, 245, 0.98);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-slow) var(--ease-out);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__link {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: var(--fw-medium);
  color: var(--clr-primary-dark);
  opacity: 0;
  transform: translateY(24px);
  transition: all var(--dur-slow) var(--ease-out);
}

.mobile-nav.active .mobile-nav__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.active .mobile-nav__link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-nav.active .mobile-nav__link:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-nav.active .mobile-nav__link:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-nav.active .mobile-nav__link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-nav.active .mobile-nav__link:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-nav.active .mobile-nav__link:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2.5rem;
  color: var(--clr-primary-dark);
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out);
}

.mobile-nav__close:hover {
  transform: rotate(90deg) scale(1.1);
  color: var(--clr-teal-600);
}

.mobile-nav__cta {
  margin-top: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--dur-slow) var(--ease-out) 0.4s;
}

.mobile-nav.active .mobile-nav__cta {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-teal-900);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(12, 59, 63, 0.92) 0%,
      rgba(19, 78, 82, 0.75) 40%,
      rgba(14, 116, 144, 0.50) 100%);
}

/* Subtle animated grain overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' /%3E%3C/svg%3E");
  background-size: 256px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 27px);
  padding-bottom: var(--space-4xl);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero__text {
  max-width: 600px;
}

.hero__overline {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--clr-gold-400);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  will-change: transform, opacity;
}

.hero__overline::before {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--clr-gold-400);
}

.hero__title {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--clr-white);
  margin-bottom: var(--space-xl);
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
  will-change: transform, opacity;
}

.hero__title em {
  font-style: italic;
  color: var(--clr-gold-400);
  display: inline-block;
  padding: 0.1em;
  margin: -0.1em;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 480px;
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
  will-change: transform, opacity;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
  will-change: transform, opacity;
}

.hero__visual {
  position: relative;
  animation: slideInRight 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  will-change: transform, opacity;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}

.hero__image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  transform-origin: center;
  animation: heroImageScale 2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  will-change: transform;
}

/* Floating stats cards */
.hero__float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-elevated);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: transform, opacity;
}

.hero__float-card--top {
  top: -20px;
  right: -20px;
  animation-delay: 1s;
}

.hero__float-card--bottom {
  bottom: 30px;
  left: -30px;
  animation-delay: 1.2s;
}

.hero__float-card .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__float-card .icon-circle--teal {
  background: var(--clr-teal-100);
  color: var(--clr-teal-600);
}

.hero__float-card .icon-circle--gold {
  background: var(--clr-gold-100);
  color: var(--clr-gold-600);
}

.hero__float-card .icon-circle svg {
  width: 22px;
  height: 22px;
}

.hero__float-card .stat-value {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: var(--fw-bold);
  color: var(--clr-primary-dark);
  line-height: 1.2;
}

.hero__float-card .stat-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translate3d(60px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroImageScale {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease-out) 1.5s both;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--clr-gold-400);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MARQUEE / TRUST STRIP
   ═══════════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--clr-primary-dark);
  padding: var(--space-md) 0;
  overflow: hidden;
  position: relative;
}

.marquee-strip__track {
  display: flex;
  gap: var(--space-3xl);
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.marquee-strip__item svg {
  width: 16px;
  height: 16px;
  color: var(--clr-gold-400);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-header .overline {
  margin-bottom: var(--space-md);
  justify-content: center;
}

.section-header .overline::before {
  display: none;
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header .section-subtitle {
  margin-inline: auto;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT / DOCTOR SECTION
   ═══════════════════════════════════════════════════════════════ */
.about {
  position: relative;
  overflow: hidden;
}

.about__bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, var(--clr-teal-50) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.5;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__image-col {
  position: relative;
}

.about__image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  max-width: 480px;
}

.about__image-main img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top;
  transition: transform var(--dur-slower) var(--ease-out);
}

.about__image-main:hover img {
  transform: scale(1.03);
}

.about__image-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--clr-white);
  box-shadow: var(--shadow-elevated);
}

.about__image-secondary img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.about__experience-badge {
  position: absolute;
  top: 30px;
  right: -10px;
  background: linear-gradient(135deg, var(--clr-gold-500), var(--clr-gold-600));
  color: var(--clr-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about__experience-badge .number {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  line-height: 1;
}

.about__experience-badge .label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.about__content {
  position: relative;
}

.about__name {
  margin-bottom: var(--space-xs);
}

.about__title {
  color: var(--clr-teal-600);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-xl);
}

.about__desc {
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about__stat {
  text-align: center;
}

.about__stat-number {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: var(--fw-bold);
  color: var(--clr-teal-600);
  line-height: 1;
  margin-bottom: var(--space-2xs);
}

.about__stat-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.about__qualifications {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.about__qual {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
}

.about__qual svg {
  width: 20px;
  height: 20px;
  color: var(--clr-teal-600);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════ */
.services {
  background: var(--clr-surface);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  position: relative;
  background: var(--clr-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--clr-border);
  transition: transform var(--dur-normal) var(--ease-out),
    box-shadow var(--dur-normal) var(--ease-out);
  cursor: pointer;
  overflow: hidden;
  group: true;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-teal-600), var(--clr-gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-normal) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  background: var(--clr-teal-100);
  color: var(--clr-teal-600);
  transition: all var(--dur-normal) var(--ease-out);
}

.service-card:hover .service-card__icon {
  background: var(--clr-teal-600);
  color: var(--clr-white);
  transform: scale(1.05);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: var(--fw-semibold);
  color: var(--clr-primary-dark);
  margin-bottom: var(--space-sm);
}

.service-card__desc {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.service-card__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  height: 160px;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--clr-teal-600);
  transition: gap var(--dur-fast) var(--ease-out);
}

.service-card:hover .service-card__link {
  gap: var(--space-sm);
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-fast) var(--ease-out);
}

.service-card:hover .service-card__link svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════
   BEFORE/AFTER GALLERY
   ═══════════════════════════════════════════════════════════════ */
.gallery {
  position: relative;
  overflow: hidden;
}

.gallery__bg-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: var(--radius-circle);
  background: radial-gradient(circle, var(--clr-teal-50) 0%, transparent 70%);
  pointer-events: none;
}

.gallery__showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-normal) var(--ease-out),
    box-shadow var(--dur-normal) var(--ease-out);
}

.gallery__item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-elevated);
}

.gallery__item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(12, 59, 63, 0.85) 0%,
      rgba(12, 59, 63, 0) 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-xl);
  opacity: 0;
  transition: opacity var(--dur-normal) var(--ease-out);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-label {
  color: var(--clr-white);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
}

/* ═══════════════════════════════════════════════════════════════
   TECHNOLOGY / EQUIPMENT
   ═══════════════════════════════════════════════════════════════ */
.technology {
  background: var(--clr-primary-dark);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.technology::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-circle);
  background: radial-gradient(circle, rgba(8, 145, 178, 0.15) 0%, transparent 70%);
}

.technology .section-header h2 {
  color: var(--clr-white);
}

.technology .overline {
  color: var(--clr-gold-400);
}

.technology .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.tech__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.tech__item {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-2xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--dur-normal) var(--ease-out);
}

.tech__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.tech__item-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(8, 145, 178, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech__item-icon svg {
  width: 28px;
  height: 28px;
  color: var(--clr-teal-400);
}

.tech__item-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
  color: var(--clr-white);
}

.tech__item-desc {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.55);
  line-height: var(--lh-relaxed);
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials {
  position: relative;
  background: var(--clr-surface);
}

.testimonials__slider {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform var(--dur-slow) var(--ease-out);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 var(--space-xl);
}

.testimonial-card__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-xl);
}

.testimonial-card__stars svg {
  width: 20px;
  height: 20px;
  color: var(--clr-gold-500);
  fill: var(--clr-gold-500);
}

.testimonial-card__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: var(--fw-regular);
  font-style: italic;
  color: var(--clr-primary-dark);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
  position: relative;
}

.testimonial-card__quote::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 4rem;
  color: var(--clr-teal-400);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-circle);
  object-fit: cover;
  border: 2px solid var(--clr-teal-100);
}

.testimonial-card__name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
  color: var(--clr-primary-dark);
}

.testimonial-card__role {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* Slider controls */
.testimonials__controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.testimonials__btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-circle);
  border: 1.5px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-surface);
  color: var(--clr-primary-dark);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}

.testimonials__btn:hover {
  background: var(--clr-primary-dark);
  color: var(--clr-white);
  border-color: var(--clr-primary-dark);
}

.testimonials__btn svg {
  width: 20px;
  height: 20px;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-circle);
  background: var(--clr-warm-200);
  border: none;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}

.testimonials__dot.active {
  width: 32px;
  border-radius: var(--radius-pill);
  background: var(--clr-teal-600);
}

/* ═══════════════════════════════════════════════════════════════
   CTA / APPOINTMENT SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section__inner {
  background: linear-gradient(135deg, var(--clr-teal-900) 0%, var(--clr-teal-700) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl) var(--space-3xl);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section__inner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-circle);
  background: radial-gradient(circle, rgba(212, 167, 68, 0.15) 0%, transparent 70%);
}

.cta-section__inner::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: var(--radius-circle);
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
}

.cta-section__content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.cta-section__subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--fs-body);
  margin-bottom: var(--space-2xl);
  max-width: 520px;
  margin-inline: auto;
  line-height: var(--lh-relaxed);
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cta-section__actions .btn--white {
  color: var(--clr-primary-dark);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT / INFO SECTION
   ═══════════════════════════════════════════════════════════════ */
.contact {
  position: relative;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact__card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  transition: all var(--dur-normal) var(--ease-out);
  cursor: pointer;
}

.contact__card:hover {
  box-shadow: var(--shadow-card);
  transform: translateX(6px);
  border-color: var(--clr-teal-100);
}

.contact__card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--clr-teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-teal-600);
}

.contact__card-icon svg {
  width: 24px;
  height: 24px;
}

.contact__card-title {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
  color: var(--clr-primary-dark);
  margin-bottom: var(--space-2xs);
}

.contact__card-text {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

.contact__card-text a {
  color: var(--clr-teal-600);
  font-weight: var(--fw-medium);
}

.contact__card-text a:hover {
  color: var(--clr-teal-800);
}

/* Hours card */
.contact__hours {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--clr-border);
}

.contact__hours-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-lg);
  color: var(--clr-primary-dark);
}

.contact__hours-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: var(--fs-small);
}

.contact__hours-row:last-child {
  border-bottom: none;
}

.contact__hours-day {
  font-weight: var(--fw-medium);
  color: var(--clr-text);
}

.contact__hours-time {
  color: var(--clr-text-muted);
}

.contact__hours-row.today {
  color: var(--clr-teal-600);
  font-weight: var(--fw-semibold);
}

.contact__hours-row.today .contact__hours-time {
  color: var(--clr-teal-600);
}

/* Map */
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 450px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--clr-warm-900);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  height: 48px;
  margin-bottom: var(--space-lg);
  filter: brightness(0) invert(1);
}

.footer__brand-desc {
  font-size: var(--fs-small);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) var(--ease-out);
  cursor: pointer;
}

.footer__social-link:hover {
  background: var(--clr-teal-600);
  color: var(--clr-white);
  transform: translateY(-3px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__col-title {
  font-family: var(--ff-display);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  font-size: var(--fs-small);
  transition: color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
  display: inline-block;
  cursor: pointer;
}

.footer__links a:hover {
  color: var(--clr-teal-400);
  transform: translateX(4px);
}

.footer__newsletter-desc {
  font-size: var(--fs-small);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-relaxed);
}

.footer__newsletter-form {
  display: flex;
  gap: var(--space-xs);
}

.footer__newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-out);
}

.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer__newsletter-input:focus {
  border-color: var(--clr-teal-400);
}

.footer__newsletter-btn {
  padding: 12px 20px;
  background: var(--clr-teal-600);
  color: var(--clr-white);
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out);
}

.footer__newsletter-btn:hover {
  background: var(--clr-teal-800);
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a:hover {
  color: var(--clr-teal-400);
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM SCROLL REVEAL ANIMATIONS (Masterpiece Edition)
   ═══════════════════════════════════════════════════════════════ */
:root {
  --reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --reveal-duration: 1.2s;
}

.reveal,
.reveal-item {
  opacity: 0;
  transform: translate3d(0, 50px, 0) scale(0.98);
  transition: opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
  will-change: transform, opacity;
}

.reveal.visible,
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translate3d(-80px, 0, 0) rotateY(-5deg);
  transition: opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
  will-change: transform, opacity;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0) rotateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translate3d(80px, 0, 0) rotateY(5deg);
  transition: opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
  will-change: transform, opacity;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0) rotateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.85);
  transition: opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
  will-change: transform, opacity;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Stagger dynamic delay */
.stagger-1 {
  transition-delay: 0.05s;
}

.stagger-2 {
  transition-delay: 0.10s;
}

.stagger-3 {
  transition-delay: 0.15s;
}

.stagger-4 {
  transition-delay: 0.20s;
}

.stagger-5 {
  transition-delay: 0.25s;
}

.stagger-6 {
  transition-delay: 0.30s;
}


/* ═══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ═══════════════════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: var(--z-overlay);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-circle);
  background: #25D366;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-bounce);
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55), 0 0 0 8px rgba(37, 211, 102, 0.08);
  }
}

/* ═══════════════════════════════════════════════════════════════
   COUNTER ANIMATION
   ═══════════════════════════════════════════════════════════════ */
.counter-animated {
  font-variant-numeric: tabular-nums;
}

/* ═══════════════════════════════════════════════════════════════
   PARALLAX IMAGE SUBTLE EFFECT
   ═══════════════════════════════════════════════════════════════ */
.parallax-img {
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .marquee-strip__track {
    animation: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero__visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero__float-card--bottom {
    left: 10px;
  }

  .hero__float-card--top {
    right: 10px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about__image-col {
    max-width: 480px;
    margin: 0 auto;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech__grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 1000px) {
  :root {
    --nav-height: 68px;
  }

  .navbar__links {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }
}

/* Rest of mobile styles staying at 768px for layout */
@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding-bottom: var(--space-3xl);
  }

  .hero__content {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
    padding-bottom: var(--space-xl);
  }

  .hero__image-wrapper img {
    height: 350px;
  }

  .hero__float-card {
    padding: var(--space-sm) var(--space-md);
  }

  .hero__float-card .stat-value {
    font-size: 1.1rem;
  }

  .hero__scroll {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .gallery__showcase {
    grid-template-columns: 1fr;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    padding: var(--space-lg);
  }

  .about__image-secondary {
    right: 0;
    bottom: -20px;
    width: 160px;
  }

  .cta-section__inner {
    padding: var(--space-3xl) var(--space-xl);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
  }

}

/* Small Mobile */
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about__stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-section__actions .btn {
    width: 100%;
    max-width: 280px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   MULTI-PAGE: NAVBAR DROPDOWN
   ═══════════════════════════════════════════════════════════════ */
.navbar__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.navbar__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  /* Slightly closer */
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  box-shadow: var(--shadow-elevated);
  display: none;
  z-index: 1000;
}

/* Bridge the gap between link and dropdown */
.navbar__dropdown::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}

.navbar__item:hover .navbar__dropdown,
.navbar__item:focus-within .navbar__dropdown {
  display: block;
}

.navbar__dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  transition: all var(--dur-fast) var(--ease-out);
  cursor: pointer;
}

.navbar__dropdown-link:hover {
  background: var(--clr-teal-50);
  color: var(--clr-primary-dark);
}

.navbar__dropdown-link svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  color: var(--clr-teal-600);
  flex-shrink: 0;
}

.navbar__link--has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.navbar__link--has-dropdown .chevron-icon {
  width: 14px;
  height: 14px;
  transition: transform var(--dur-fast) var(--ease-out);
}

.navbar__item:hover .navbar__link--has-dropdown .chevron-icon {
  transform: rotate(180deg);
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-PAGE: PAGE HEADER (Inner pages hero)
   ═══════════════════════════════════════════════════════════════ */
.page-header {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
  background: var(--clr-teal-900);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}

.page-header__bg {
  position: absolute;
  inset: 0;
}

.page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-header__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(12, 59, 63, 0.95) 0%,
      rgba(12, 59, 63, 0.80) 100%);
}

.page-header__content {
  position: relative;
  z-index: 2;
}

.page-header__overline {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--clr-gold-400);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
  will-change: transform, opacity;
}

.page-header__overline::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--clr-gold-400);
}

.page-header h1 {
  color: var(--clr-white);
  font-size: var(--fs-h1);
  margin-bottom: var(--space-md);
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  will-change: transform, opacity;
}

.page-header__desc {
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
  line-height: var(--lh-relaxed);
  font-size: var(--fs-body);
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
  will-change: transform, opacity;
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-PAGE: BREADCRUMBS
   ═══════════════════════════════════════════════════════════════ */
.breadcrumbs {
  padding: var(--space-md) 0;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  flex-wrap: wrap;
}

.breadcrumbs__link {
  color: var(--clr-teal-600);
  font-weight: var(--fw-medium);
  transition: color var(--dur-fast) var(--ease-out);
  cursor: pointer;
}

.breadcrumbs__link:hover {
  color: var(--clr-teal-800);
}

.breadcrumbs__sep {
  color: var(--clr-warm-300);
  font-size: 10px;
}

.breadcrumbs__current {
  font-weight: var(--fw-medium);
  color: var(--clr-text);
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-PAGE: BENTO GRID (Home page services)
   ═══════════════════════════════════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-lg);
}

.bento__card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  transition: all var(--dur-normal) var(--ease-out);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.bento__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
  border-color: transparent;
}

.bento__card--featured {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--clr-teal-900);
  color: var(--clr-white);
  border: none;
}

.bento__card--featured .bento__card-title {
  color: var(--clr-white);
}

.bento__card--featured .bento__card-desc {
  color: rgba(255, 255, 255, 0.65);
}

.bento__card--featured .bento__card-overline {
  color: var(--clr-gold-400);
}

.bento__card--dark {
  background: var(--clr-primary-dark);
  color: var(--clr-white);
  border: none;
}

.bento__card--dark .bento__card-title {
  color: var(--clr-white);
}

.bento__card--dark .bento__card-desc {
  color: rgba(255, 255, 255, 0.6);
}

.bento__card--accent {
  background: linear-gradient(135deg, var(--clr-teal-600), var(--clr-teal-800));
  color: var(--clr-white);
  border: none;
}

.bento__card--accent .bento__card-title {
  color: var(--clr-white);
}

.bento__card--accent .bento__card-desc {
  color: rgba(255, 255, 255, 0.7);
}

.bento__card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.bento__card--featured .bento__card-img {
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0.25;
}

.bento__card:hover .bento__card-img {
  transform: scale(1.05);
}

.bento__card-body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1;
}

.bento__card--featured .bento__card-body {
  justify-content: flex-end;
  padding: var(--space-2xl);
}

.bento__card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  background: var(--clr-teal-100);
  color: var(--clr-teal-600);
  transition: all var(--dur-normal) var(--ease-out);
  flex-shrink: 0;
}

.bento__card--featured .bento__card-icon,
.bento__card--dark .bento__card-icon,
.bento__card--accent .bento__card-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--clr-gold-400);
}

.bento__card:hover .bento__card-icon {
  transform: scale(1.08);
}

.bento__card-icon svg {
  width: 26px;
  height: 26px;
}

.bento__card-overline {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--clr-accent);
  margin-bottom: var(--space-xs);
}

.bento__card-title {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: var(--fw-semibold);
  color: var(--clr-primary-dark);
  margin-bottom: var(--space-xs);
  line-height: var(--lh-snug);
}

.bento__card--featured .bento__card-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.bento__card-desc {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
  flex: 1;
}

.bento__card-arrow {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-circle);
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: all var(--dur-normal) var(--ease-out);
  align-self: flex-start;
}

.bento__card:hover .bento__card-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.bento__card--featured .bento__card-arrow,
.bento__card--dark .bento__card-arrow,
.bento__card--accent .bento__card-arrow {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--clr-white);
}

.bento__card-arrow svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-PAGE: STATS BAR
   ═══════════════════════════════════════════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
}

.stats-bar__item {
  text-align: center;
  position: relative;
}

.stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: var(--clr-border);
}

.stats-bar__number {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: var(--fw-bold);
  color: var(--clr-teal-600);
  line-height: 1;
  margin-bottom: var(--space-2xs);
}

.stats-bar__label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  font-weight: var(--fw-medium);
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-PAGE: BIO SECTION (Doctor page)
   ═══════════════════════════════════════════════════════════════ */
.bio {
  position: relative;
}

.bio__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.bio__portrait {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-xl));
}

.bio__portrait-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.bio__portrait-img img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top;
}

.bio__portrait-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--clr-gold-500), var(--clr-gold-600));
  color: var(--clr-white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.bio__portrait-badge .number {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  line-height: 1;
}

.bio__portrait-badge .label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  opacity: 0.85;
}

.bio__info h2 {
  margin-bottom: var(--space-xs);
}

.bio__role {
  color: var(--clr-teal-600);
  font-weight: var(--fw-medium);
  font-size: var(--fs-body);
  margin-bottom: var(--space-2xl);
}

.bio__text {
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
  font-size: var(--fs-body);
}

.bio__text strong {
  color: var(--clr-text);
  font-weight: var(--fw-semibold);
}

.bio__credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--clr-teal-50);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--clr-teal-600);
}

.bio__credential {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--clr-text);
}

.bio__credential svg {
  width: 20px;
  height: 20px;
  color: var(--clr-teal-600);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-PAGE: PHILOSOPHY CARDS
   ═══════════════════════════════════════════════════════════════ */
.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.philosophy__card {
  padding: var(--space-2xl);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--dur-normal) var(--ease-out);
}

.philosophy__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--clr-teal-100);
}

.philosophy__card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-circle);
  background: var(--clr-teal-100);
  color: var(--clr-teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.philosophy__card-icon svg {
  width: 28px;
  height: 28px;
}

.philosophy__card h3 {
  font-family: var(--ff-display);
  margin-bottom: var(--space-sm);
  color: var(--clr-primary-dark);
}

.philosophy__card p {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-PAGE: FEATURE ROWS (Service pages)
   ═══════════════════════════════════════════════════════════════ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.feature-row--reverse {
  direction: rtl;
}

.feature-row--reverse>* {
  direction: ltr;
}

.feature-row__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-row__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.feature-row__img:hover img {
  transform: scale(1.04);
}

.feature-row__content h2 {
  margin-bottom: var(--space-md);
}

.feature-row__content p {
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.feature-row__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.feature-row__list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--clr-text);
  line-height: var(--lh-normal);
}

.feature-row__list-item svg {
  width: 20px;
  height: 20px;
  color: var(--clr-teal-600);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-PAGE: PROCESS STEPS
   ═══════════════════════════════════════════════════════════════ */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  counter-reset: process-step;
}

.process__step {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  position: relative;
  transition: all var(--dur-normal) var(--ease-out);
  counter-increment: process-step;
}

.process__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.process__step-number {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: var(--fw-bold);
  color: var(--clr-teal-600);
  /* Fixed visibility */
  line-height: 1;
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.process__step-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-circle);
  background: var(--clr-teal-100);
  color: var(--clr-teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.process__step-icon svg {
  width: 24px;
  height: 24px;
}

.process__step h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
  color: var(--clr-primary-dark);
}

.process__step p {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-PAGE: STUB / COMING SOON
   ═══════════════════════════════════════════════════════════════ */
.coming-soon {
  text-align: center;
  padding: var(--space-6xl) 0;
}

.coming-soon__icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-circle);
  background: var(--clr-teal-100);
  color: var(--clr-teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
}

.coming-soon__icon svg {
  width: 36px;
  height: 36px;
}

.coming-soon h2 {
  margin-bottom: var(--space-md);
}

.coming-soon p {
  color: var(--clr-text-muted);
  max-width: 480px;
  margin: 0 auto var(--space-2xl);
  line-height: var(--lh-relaxed);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: var(--space-lg);
}

.contact-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: box-shadow var(--dur-normal) var(--ease-out),
    transform var(--dur-normal) var(--ease-out);
}

.contact-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--clr-teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--clr-teal-600);
}

.contact-card h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  color: var(--clr-text-dark);
  margin-bottom: var(--space-sm);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 480px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 320px;
  }

  .contact-map iframe {
    min-height: 320px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-PAGE: RESPONSIVE ADDITIONS
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento__card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .bio__grid {
    grid-template-columns: 1fr;
  }

  .bio__portrait {
    position: static;
    max-width: 420px;
    margin: 0 auto;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .feature-row--reverse {
    direction: ltr;
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar__item:nth-child(2)::after {
    display: none;
  }

  .philosophy__grid {
    grid-template-columns: 1fr;
  }

  .navbar__dropdown {
    position: fixed;
    top: var(--nav-height);
    left: var(--space-md);
    right: var(--space-md);
    transform: none;
    border-radius: var(--radius-lg);
  }

  .navbar__item:hover .navbar__dropdown {
    transform: none;
  }
}

@media (max-width: 768px) {
  .bento {
    grid-template-columns: 1fr;
  }

  .bento__card--featured {
    grid-column: span 1;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .stats-bar__item::after {
    display: none;
  }

  .process__grid {
    grid-template-columns: 1fr;
  }

  .page-header {
    min-height: 280px;
    padding-top: calc(var(--nav-height) + var(--space-2xl));
  }

  .bio__portrait-img img {
    height: 400px;
  }

  .feature-row__img img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }
}