:root {
  --primary: #0a1628;
  --primary-light: #1a2d4a;
  --secondary: #0f2847;
  --accent: #1a6b8a;
  --accent-light: #2a9db8;
  --accent-hover: #1580a0;
  --gold: #c4a35a;
  --gold-light: #d8be7a;
  --success: #10b981;
  --white: #ffffff;
  --off-white: #f0f4f8;
  --cream: #f5f8fa;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --gradient-primary: linear-gradient(135deg, #0a1628 0%, #0f2847 100%);
  --gradient-accent: linear-gradient(135deg, #1a6b8a 0%, #2a9db8 100%);
  --gradient-gold: linear-gradient(135deg, #c4a35a 0%, #d8be7a 100%);
  --gradient-hero: linear-gradient(165deg, var(--cream) 0%, var(--white) 50%, var(--gray-100) 100%);
  --gradient-card: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  --gradient-shine: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --color-primary: #0a1628;
  --color-secondary: #1a6b8a;
  --color-accent: #2a9db8;
  --color-gold: #c4a35a;
  --color-text-light: #64748b;
  --color-white: #ffffff;
  --color-cream: #f5f8fa;
  --color-bg-dark: #0a1628;
  --font-serif: 'Outfit', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(26, 107, 138, 0.15);
  --shadow-glow-gold: 0 0 30px rgba(196, 163, 90, 0.3);
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --container-max: 1280px;
  --container-padding: var(--space-6);
  --section-padding: var(--space-20);
  --topbar-height: 44px;
  --header-height: 80px;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  list-style: none;
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}
.btn-block {
  width: 100%;
}
.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.btn-secondary {
  background: var(--white);
  color: var(--accent);
  border-color: var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-text {
  background: transparent;
  color: var(--accent);
  padding: var(--space-2) var(--space-4);
}
.btn-text:hover {
  color: var(--accent-light);
}
.section-padding {
  padding: var(--section-padding) 0;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--gray-100);
  color: var(--accent);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.section-tag svg {
  width: 16px;
  height: 16px;
}
.section-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}
.section-desc {
  font-size: var(--text-lg);
  color: var(--gray-500);
}
.bg-light {
  background: var(--cream);
}
.bg-accent {
  background: var(--gradient-accent);
}
.bg-accent .section-title,
.bg-accent .section-desc,
.bg-accent .section-tag {
  color: var(--white);
}
.bg-accent .section-tag {
  background: rgba(255,255,255,0.15);
}
.bg-dark {
  background: var(--gradient-primary);
}
.bg-dark .section-title,
.bg-dark .section-desc {
  color: var(--white);
}
.bg-pattern {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent), var(--color-gold));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes revealImg {
  from { clip-path: inset(0 0 0 100%); }
  to   { clip-path: inset(0 0 0 0); }
}

.fade-in,
.fade-in-left,
.fade-in-right,
.fade-in-scale,
.reveal-img {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in      { transform: translateY(30px); }
.fade-in-left  { transform: translateX(-30px); }
.fade-in-right { transform: translateX(30px); }
.fade-in-scale { transform: scale(0.92); }
.reveal-img {
  transform: scale(1.08);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.visible.fade-in,
.visible.fade-in-left,
.visible.fade-in-right,
.visible.fade-in-scale,
.visible.reveal-img {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }

.section-header .section-tag,
.section-header .section-title,
.section-header .section-desc {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible .section-tag,
.fade-in.visible .section-title,
.fade-in.visible .section-desc {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.visible .section-tag  { transition-delay: 0.05s; }
.fade-in.visible .section-title { transition-delay: 0.15s; }
.fade-in.visible .section-desc { transition-delay: 0.25s; }

/* ===== HERO ENTRANCE ===== */
.hero__label { animation: slideUp 0.6s ease both; animation-delay: 0.1s; }
.hero__title { animation: slideUp 0.6s ease both; animation-delay: 0.2s; }
.hero__text  { animation: slideUp 0.6s ease both; animation-delay: 0.3s; }
.hero__actions { animation: slideUp 0.6s ease both; animation-delay: 0.4s; }
.hero__trust { animation: slideUp 0.6s ease both; animation-delay: 0.5s; }
.hero__right-image { animation: fadeInScale 0.8s ease both; animation-delay: 0.3s; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.top-bar {
  background: var(--primary);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--gray-300);
  font-size: var(--text-sm);
}
.top-bar-item svg {
  flex-shrink: 0;
}
.top-bar-item a,
.top-bar-item span {
  color: var(--gray-300);
}
.top-bar-item a:hover {
  color: var(--white);
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.top-bar-social {
  display: flex;
  gap: var(--space-4);
}
.top-bar-social a {
  color: var(--gray-400);
}
.top-bar-social a:hover {
  color: var(--white);
}
.top-bar-cta {
  padding: var(--space-1) var(--space-4);
  background: var(--accent);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
}
.top-bar-cta:hover {
  background: var(--accent-light);
}
.main-header {
  background: rgba(255,255,255,0.95);
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-100);
  backdrop-filter: blur(10px);
}
.main-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.logo-img {
  height: 44px;
  width: auto;
}
.logo-img-mobile {
  display: none;
  height: 36px;
  width: auto;
}
.logo-text {
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--primary);
}
.logo-tagline {
  font-size: var(--text-xs);
  color: var(--gray-500);
}
.main-nav {
  display: flex;
  align-items: center;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-600);
  padding: var(--space-2) 0;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}
.dropdown-arrow {
  transition: var(--transition-fast);
}
.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 100;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  color: var(--gray-600);
  border-radius: var(--radius-md);
}
.dropdown-menu a:hover {
  background: var(--gray-100);
  color: var(--accent);
}
.nav-cta-btn {
  background: var(--gradient-accent);
  color: var(--white) !important;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
}
.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.header-phone {
  display: none;
  align-items: center;
  gap: var(--space-2);
  color: var(--accent);
  font-weight: 600;
}
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-2);
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.nav-close-btn {
  display: none;
}
.mobile-overlay {
  display: none;
}
.hero-section {
  position: relative;
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--gradient-primary);
  padding-top: calc(var(--topbar-height) + var(--header-height));
}
.hero__left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-12) var(--space-12) var(--space-12) var(--space-6);
  max-width: 680px;
  margin-left: auto;
  width: 100%;
}
.hero__right {
  position: relative;
  overflow: hidden;
}
.hero__right-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255,255,255,0.08);
  color: var(--gold-light);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  border: 1px solid rgba(255,255,255,0.12);
  width: fit-content;
}
.hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: var(--space-5);
  color: var(--white);
}
.hero__title em {
  font-style: italic;
  display: block;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__text {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--space-6);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
}
.hero__trust-item svg {
  color: var(--success);
  flex-shrink: 0;
}

/* ===== HERO STATS (below hero) ===== */
.hero-stats {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  margin: -3rem auto 0;
  max-width: var(--container-max);
  padding: var(--space-10) var(--space-8);
  position: relative;
  z-index: 2;
  width: calc(100% - var(--container-padding) * 2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--gray-200);
}
.stat-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-suffix {
  font-size: var(--text-2xl);
  color: var(--accent);
}
.stat-label {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--gray-500);
}
.services-section {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(26,107,138,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  color: var(--accent);
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}
.service-icon svg {
  width: 24px;
  height: 24px;
}
.service-card:hover .service-icon {
  background: var(--gradient-accent);
  color: var(--white);
}
.service-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.service-desc {
  font-size: var(--text-xs);
  color: var(--gray-500);
  margin-bottom: var(--space-3);
  line-height: 1.6;
}
.service-features {
  margin-bottom: var(--space-6);
}
.service-features li {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin-bottom: var(--space-2);
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--accent);
  font-size: var(--text-sm);
  font-weight: 600;
}
.service-link svg {
  transition: var(--transition-fast);
}
.service-card:hover .service-link svg {
  transform: translateX(4px);
}
.about-section {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about-images {
  position: relative;
}
.about-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-image-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.about-image-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-experience-badge {
  position: absolute;
  top: var(--space-8);
  left: -20px;
  background: var(--gradient-gold);
  color: var(--white);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1;
}
.badge-text {
  font-size: var(--text-xs);
  font-weight: 600;
}
.about-content {
  padding: var(--space-8) 0;
}
.about-lead {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: var(--space-4);
}
.about-text {
  color: var(--gray-500);
  margin-bottom: var(--space-8);
}
.about-features {
  margin-bottom: var(--space-8);
}
.about-feature {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.about-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  color: var(--accent);
  flex-shrink: 0;
}
.about-feature h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}
.about-feature p {
  font-size: var(--text-sm);
  color: var(--gray-500);
}
.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.doctor-section {
  background: var(--off-white);
}
.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.doctor-content {
  order: 1;
}
.doctor-lead {
  font-size: var(--text-lg);
  color: var(--gray-600);
  margin-bottom: var(--space-6);
}
.doctor-bio {
  color: var(--gray-500);
  margin-bottom: var(--space-8);
}
.doctor-credentials {
  margin-bottom: var(--space-8);
}
.credential {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.credential-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  color: var(--accent);
  flex-shrink: 0;
}
.credential-text strong {
  display: block;
  font-size: var(--text-sm);
}
.credential-text span {
  font-size: var(--text-xs);
  color: var(--gray-500);
}
.doctor-quote {
  padding: var(--space-6);
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.doctor-quote blockquote {
  font-style: italic;
  color: var(--gray-600);
}
.doctor-image {
  order: 2;
  position: relative;
}
.doctor-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.doctor-image-wrapper img {
  width: 100%;
  height: auto;
}
.doctor-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: var(--radius-xl);
  z-index: -1;
}
.doctor-awards {
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
}
.award-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--white);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--gold);
  font-size: var(--text-sm);
  font-weight: 600;
}
.team-section {
  background: var(--white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow);
  transition: var(--transition-smooth);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-4);
  border: 4px solid var(--gray-100);
}
.team-name {
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}
.team-role {
  font-size: var(--text-sm);
  color: var(--gray-500);
}
.featured-services-section {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
}
.featured-services-section .section-title,
.featured-services-section .section-desc {
  color: var(--white);
}
.featured-services-section .section-tag {
  background: rgba(255,255,255,0.12);
  color: var(--gold-light);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.featured-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: var(--transition-smooth);
}
.featured-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.featured-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
}
.featured-card h3 {
  color: var(--white);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}
.featured-card p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}
.featured-card .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.featured-card .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.15);
}
.quality-section {
  background: var(--white);
}
.bg-dark.quality-section {
  background: var(--gradient-primary);
  position: relative;
}
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.quality-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.quality-image img {
  width: 100%;
  height: auto;
}
.exparel-image {
  background: var(--gray-50);
  padding: var(--space-12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.exparel-image img {
  max-width: 320px;
  width: auto;
  height: auto;
}
.quality-list {
  display: grid;
  gap: var(--space-6);
}
.quality-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.quality-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: var(--white);
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: var(--text-sm);
}
.quality-item h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}
.quality-item p {
  font-size: var(--text-sm);
  color: var(--gray-500);
}
.reviews-section {
  background: var(--cream);
}
.reviews-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: var(--space-8);
  transition: transform 0.5s ease;
}
.review-card {
  flex: 0 0 calc(33.333% - var(--space-6));
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow);
}
.review-stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}
.review-text {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.author-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: var(--white);
  font-weight: 600;
  border-radius: 50%;
  font-size: var(--text-sm);
}
.author-name {
  font-size: var(--text-sm);
  display: block;
}
.author-location {
  font-size: var(--text-xs);
  color: var(--gray-400);
}
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.reviews-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  color: var(--accent);
  transition: var(--transition-fast);
}
.reviews-btn:hover {
  background: var(--accent);
  color: var(--white);
}
.reviews-dots {
  display: flex;
  gap: var(--space-2);
}
.reviews-dots .dot {
  width: 8px;
  height: 8px;
  background: var(--gray-300);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}
.reviews-dots .dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}
.first-visit-section {
  background: var(--gradient-accent);
}
.first-visit-section .section-title,
.first-visit-section .section-desc {
  color: var(--white);
}
.first-visit-section .section-tag {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.first-visit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  max-width: 800px;
  margin: 0 auto;
}
.first-visit-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: var(--transition-smooth);
}
.first-visit-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.18);
}
.first-visit-card svg {
  color: var(--gold-light);
  margin-bottom: var(--space-4);
}
.first-visit-card h3 {
  color: var(--white);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}
.first-visit-card p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-sm);
}
.faq-section {
  background: var(--cream);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-16);
  align-items: start;
}
.faq-content {
  position: sticky;
  top: 120px;
}
.faq-intro {
  color: var(--gray-500);
  margin-bottom: var(--space-8);
}
.faq-cta {
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.faq-cta p {
  margin-bottom: var(--space-4);
  color: var(--gray-600);
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-6);
  text-align: left;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--gray-700);
  background: var(--white);
  transition: var(--transition-fast);
}
.faq-question:hover {
  color: var(--accent);
}
.faq-icon {
  flex-shrink: 0;
  transition: var(--transition-smooth);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--gray-500);
  font-size: var(--text-sm);
  line-height: 1.7;
}
.contact-section {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
}
.contact-info {
  padding-right: var(--space-8);
}
.contact-intro {
  font-size: var(--text-lg);
  color: var(--gray-600);
  margin-bottom: var(--space-8);
}
.contact-details {
  margin-bottom: var(--space-8);
}
.contact-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.contact-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  color: var(--accent);
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}
.contact-item p, .contact-item a {
  font-size: var(--text-sm);
  color: var(--gray-500);
}
.contact-item a {
  color: var(--accent);
  font-weight: 500;
}
.contact-cta-row {
  display: flex;
  gap: var(--space-4);
}
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.contact-form h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-8);
  text-align: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-group {
  margin-bottom: var(--space-4);
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: var(--space-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--gray-700);
  background: var(--gray-50);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  transition: var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--gray-400);
  text-align: center;
}
.map-section {
  height: 400px;
}
.map-wrapper {
  height: 100%;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.site-footer {
  background: var(--primary);
  color: var(--gray-300);
}
.footer-main {
  padding: var(--space-16) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.footer-logo img {
  height: 44px;
  width: auto;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
}
.footer-desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  color: var(--gray-400);
}
.footer-social {
  display: flex;
  gap: var(--space-4);
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 50%;
  color: var(--gray-400);
  transition: var(--transition-fast);
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
}
.footer-links h4,
.footer-contact h4 {
  font-size: var(--text-base);
  color: var(--white);
  margin-bottom: var(--space-6);
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-links a {
  font-size: var(--text-sm);
  color: var(--gray-400);
}
.footer-links a:hover {
  color: var(--white);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-contact-item svg {
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item p,
.footer-contact-item a {
  font-size: var(--text-sm);
  color: var(--gray-400);
}
.footer-contact-item a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-6) 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: var(--text-sm);
  color: var(--gray-500);
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}
.footer-bottom-links a {
  font-size: var(--text-sm);
  color: var(--gray-500);
}
.footer-bottom-links a:hover {
  color: var(--white);
}
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: var(--space-2);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.mobile-bar-inner {
  display: flex;
  align-items: center;
}
.mobile-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2);
  color: var(--gray-600);
  font-size: var(--text-xs);
  font-weight: 500;
}
.mobile-bar-item svg {
  width: 20px;
  height: 20px;
}
.mobile-bar-cta {
  background: var(--gradient-accent);
  color: var(--white);
  border-radius: var(--radius-lg);
  margin: 0 var(--space-2);
  padding: var(--space-3) var(--space-2);
}
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: var(--space-6);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  color: var(--accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  z-index: 99;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent);
  color: var(--white);
}
.preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-modal.open {
  opacity: 1;
  visibility: visible;
}
.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.video-modal__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}
.video-modal__close:hover {
  background: rgba(255,255,255,0.3);
}
.video-play-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.video-play-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
  transform: scale(1.05);
}
.video-play-btn__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== FORM VALIDATION STATES ===== */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc2626;
  background: #fef2f2;
}
.form-group input.success,
.form-group select.success,
.form-group textarea.success {
  border-color: var(--success);
  background: #f0fdf4;
}

/* ===== SELECT ENHANCEMENT ===== */
.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

/* ===== REVIEW CARD QUOTE ===== */
.review-card {
  position: relative;
}
.review-card::after {
  content: '\201C';
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  font-family: var(--font-display);
  color: rgba(26,107,138,0.08);
  pointer-events: none;
}

/* ===== CTA DECORATIVE BLOBS ===== */
.cta-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.cta-blob--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(42,157,184,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.cta-blob--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(196,163,90,0.1) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
}

/* MOBILE CTA BAR — defined above in original styles */
@media (max-width: 1200px) {
  :root {
    --section-padding: var(--space-16);
    --container-padding: var(--space-4);
  }
  .section-title {
    font-size: var(--text-3xl);
  }
  .hero__title {
    font-size: var(--text-4xl);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .top-bar {
    display: none;
  }
  .main-header {
    height: 70px;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-20) var(--space-6) var(--space-6);
    transition: var(--transition-smooth);
    z-index: 1001;
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
  }
  .main-nav.active {
    right: 0;
  }
  .nav-close-btn {
    display: flex;
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    display: flex;
    justify-content: space-between;
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: var(--text-base);
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 var(--space-4) var(--space-4);
    min-width: auto;
  }
  .nav-cta-btn {
    width: 100%;
    text-align: center;
    margin-top: var(--space-4);
  }
  .header-phone {
    display: flex;
  }
  .header-phone span {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  .mobile-overlay.active {
    display: block;
  }
  .hero-section {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 70px;
  }
  .hero__left {
    padding: var(--space-10) var(--space-4);
    max-width: none;
    margin: 0;
  }
  .hero__right {
    display: none;
  }
  .hero__title {
    font-size: var(--text-4xl);
  }
  .hero__text {
    font-size: var(--text-lg);
  }
  .hero-stats {
    margin: var(--space-6) var(--space-4) 0;
    padding: var(--space-6);
    width: auto;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .about-image-secondary {
    right: var(--space-4);
    bottom: -20px;
    width: 150px;
  }
  .doctor-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .doctor-image {
    order: -1;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .quality-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .first-visit-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .faq-content {
    position: static;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .contact-info {
    padding-right: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .logo-img {
    display: none;
  }
  .logo-img-mobile {
    display: block;
  }
  .mobile-bottom-bar {
    display: block;
  }
  .back-to-top {
    bottom: 80px;
  }
}
@media (max-width: 768px) {
  :root {
    --section-padding: var(--space-12);
  }
  .section-title {
    font-size: var(--text-2xl);
  }
  .hero__title {
    font-size: var(--text-3xl);
  }
  .hero__text {
    font-size: var(--text-base);
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .stat-number {
    font-size: var(--text-3xl);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-image-secondary {
    display: none;
  }
  .about-experience-badge {
    position: relative;
    top: auto;
    left: auto;
    margin-top: var(--space-4);
    display: inline-block;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
  .team-card {
    padding: var(--space-6);
  }
  .team-img {
    width: 80px;
    height: 80px;
  }
  .featured-card-img {
    height: 160px;
  }
  .review-card {
    flex: 0 0 calc(100% - var(--space-4));
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .footer-bottom .container {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .contact-form-wrapper {
    padding: var(--space-6);
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: var(--text-2xl);
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
  .stat-number {
    font-size: var(--text-3xl);
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-nav {
    gap: var(--space-2);
  }
}
@media (max-width: 360px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
