/* ═══════════════════════════════════════════════════════════════
   CAMERON PARK DENTAL CARE — Premium WordPress Theme
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg-dark: #080E1A;
  --bg-dark-2: #0C1424;
  --bg-dark-3: #101C30;
  --bg-light: #F6F7F9;
  --bg-white: #FFFFFF;
  --accent-gold: #C9A84C;
  --accent-gold-light: #E2C87C;
  --accent-teal: #1A9AAF;
  --accent-teal-dark: #137A8C;
  --text-white: #FFFFFF;
  --text-light: #B8C0D0;
  --text-muted: #6B7A94;
  --text-dark: #1A2332;
  --text-body: #3A4556;
  --border-subtle: rgba(255,255,255,0.08);
  --border-gold: rgba(201,168,76,0.3);
  --gradient-dark: linear-gradient(180deg, #080E1A 0%, #0C1424 100%);
  --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #E2C87C 50%, #C9A84C 100%);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 60px rgba(201,168,76,0.15);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1240px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ═══════════ TYPOGRAPHY ═══════════ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--accent-gold-light); }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title.dark { color: var(--text-dark); }
.section-title.light { color: var(--text-white); }
.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 660px;
}
.section-subtitle.light { color: var(--text-light); }
.section-subtitle.dark { color: var(--text-body); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
  color: var(--bg-dark);
}
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(0,0,0,0.15);
}
.btn-outline-dark:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--bg-dark);
  color: var(--text-white);
  border: none;
}
.btn-dark:hover {
  background: var(--bg-dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  color: var(--text-white);
}
.btn-sm { padding: 12px 24px; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════ TOP BAR ═══════════ */
.topbar {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-left a {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}
.topbar-left a:hover { color: var(--accent-gold); }
.topbar-hours { color: var(--text-muted); font-size: 0.8rem; }

/* ═══════════ HEADER / NAV ═══════════ */
.site-header {
  background: rgba(8,14,26,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(8,14,26,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  overflow: hidden;
}
.logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* WordPress Nav Menu Styling */
.main-navigation { display: flex; align-items: center; }
.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.main-navigation ul li { position: relative; }
.main-navigation ul li a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
  display: block;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.current-page-ancestor > a {
  color: var(--text-white);
  background: rgba(255,255,255,0.05);
}
.main-navigation ul li.current-menu-item > a { color: var(--accent-gold); }

/* Dropdown */
.main-navigation ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-dark-2);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  flex-direction: column;
  gap: 0;
}
.main-navigation ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-navigation ul ul li a {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
}
.main-navigation ul ul li a:hover {
  background: rgba(201,168,76,0.1);
  color: var(--accent-gold);
}
/* Third level */
.main-navigation ul ul ul {
  top: 0;
  left: 100%;
}

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone:hover { color: var(--accent-gold); }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  color: var(--text-white);
  font-size: 1.5rem;
  padding: 8px;
  border: none;
  cursor: pointer;
}

/* Mobile Nav */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,14,26,0.98);
  z-index: 9999;
  padding: 80px 24px 24px;
  overflow-y: auto;
}
.mobile-nav-overlay.active { display: block; }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
}
.mobile-nav-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-overlay > ul > li {
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav-overlay ul li a {
  display: block;
  padding: 16px 0;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 500;
}
.mobile-nav-overlay ul li a:hover { color: var(--accent-gold); }
.mobile-nav-overlay ul ul {
  padding-left: 20px;
}
.mobile-nav-overlay ul ul li a {
  font-size: 0.95rem;
  padding: 10px 0;
  color: var(--text-muted);
}

/* ═══════════ HERO ═══════════ */
.hero {
  background: var(--bg-dark);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26,154,175,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: scale(1) translate(0, 0); opacity: 0.5; }
  to { transform: scale(1.2) translate(-30px, 30px); opacity: 1; }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.hero-content { max-width: 580px; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}
.hero h1 em { font-style: italic; color: var(--accent-gold); }
.hero-features {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 1.05rem;
  padding: 8px 0;
}
.hero-features li .check {
  width: 24px;
  height: 24px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.45s both;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.3s both;
}
.hero-image-wrapper { position: relative; width: 100%; max-width: 500px; }
.hero-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-dark-3) 0%, var(--bg-dark-2) 100%);
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-stats {
  position: absolute;
  bottom: -20px;
  left: -20px;
  right: -20px;
  display: flex;
  gap: 12px;
}
.hero-stat {
  flex: 1;
  background: rgba(12,20,36,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}
.hero-stat .number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}
.hero-stat .label { color: var(--text-muted); font-size: 0.75rem; font-weight: 500; margin-top: 4px; }

/* ═══════════ PAGE HERO (Inner Pages) ═══════════ */
.page-hero {
  background: var(--bg-dark);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero .breadcrumb {
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}
.page-hero .breadcrumb a { color: var(--accent-gold); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* ═══════════ GALLERY / BEFORE-AFTER ═══════════ */
.gallery-section {
  background: var(--bg-dark);
  padding: 100px 0;
  border-top: 1px solid var(--border-subtle);
}
.gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 24px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-card {
  flex-shrink: 0;
  width: 300px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-dark-2);
  transition: var(--transition);
}
.gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
}
.gallery-image {
  width: 100%;
  aspect-ratio: 3/2;
  background: var(--bg-dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gallery-image img { width: 100%; height: 100%; object-fit: cover; }
.gallery-image .ba-label {
  position: absolute;
  bottom: 10px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ba-before { left: 10px; background: rgba(0,0,0,0.6); color: #fff; }
.ba-after { right: 10px; background: var(--accent-gold); color: var(--bg-dark); }
.gallery-card-info { padding: 16px 20px; }
.gallery-card-info .treatment {
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.gallery-card-info .desc { color: var(--text-light); font-size: 0.9rem; margin-top: 4px; }

/* ═══════════ WHY CHOOSE US ═══════════ */
.why-section { background: var(--bg-light); padding: 100px 0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 60px rgba(0,0,0,0.12); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  border: 1px solid rgba(201,168,76,0.15);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px;
}
.why-card p { color: var(--text-body); font-size: 0.9rem; line-height: 1.6; }

/* ═══════════ PROCESS STEPS ═══════════ */
.process-section {
  background: var(--gradient-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.process-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.process-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.process-number {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1; margin-bottom: 8px;
}
.process-time {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  color: var(--accent-gold);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-white); margin-bottom: 12px;
}
.process-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* ═══════════ SERVICES GRID ═══════════ */
.services-section { background: var(--bg-white); padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  display: block;
}
.service-card:hover {
  background: var(--bg-white);
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--bg-white);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--accent-gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.service-card p { color: var(--text-body); font-size: 0.85rem; line-height: 1.5; }
.service-card .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-gold);
  font-size: 0.8rem; font-weight: 600; margin-top: 12px;
  opacity: 0; transform: translateX(-8px);
  transition: var(--transition);
}
.service-card:hover .arrow { opacity: 1; transform: translateX(0); }

/* ═══════════ DOCTOR / BIO ═══════════ */
.doctor-section { background: var(--bg-light); padding: 100px 0; }
.doctor-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.doctor-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bg-dark-3), var(--bg-dark-2));
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-card);
}
.doctor-image img { width: 100%; height: 100%; object-fit: cover; }
.doctor-image-wrapper { position: relative; }
.doctor-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--bg-white);
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 12px;
}
.doctor-badge .years {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--accent-gold); line-height: 1;
}
.doctor-badge .years-label { font-size: 0.8rem; color: var(--text-body); line-height: 1.3; font-weight: 500; }
.bio { color: var(--text-body); margin-bottom: 20px; font-size: 1rem; line-height: 1.8; }
.doctor-quote {
  background: rgba(201,168,76,0.06);
  border-left: 3px solid var(--accent-gold);
  border-radius: 0 12px 12px 0;
  padding: 20px 28px;
  margin: 28px 0;
}
.doctor-quote p {
  font-family: var(--font-display);
  font-size: 1.1rem; font-style: italic;
  color: var(--text-dark); line-height: 1.7;
}
.credentials-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.credential-tag {
  display: flex; align-items: center; gap: 6px;
  background: var(--bg-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-dark);
}
.credential-tag .dot { width: 6px; height: 6px; background: var(--accent-gold); border-radius: 50%; }

/* ═══════════ COMPARISON TABLE ═══════════ */
.comparison-section {
  background: var(--gradient-dark);
  padding: 100px 0;
  overflow: hidden;
}
.comparison-table {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.comparison-header-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  background: rgba(201,168,76,0.08);
  border-bottom: 1px solid var(--border-subtle);
}
.comparison-header-row .col-header {
  padding: 20px 24px;
  font-size: 0.85rem; font-weight: 600;
  text-align: center;
  color: var(--text-light);
}
.comparison-header-row .col-header:first-child { text-align: left; }
.comparison-header-row .col-header.highlight { color: var(--accent-gold); font-size: 0.9rem; }
.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row:hover { background: rgba(255,255,255,0.02); }
.comparison-row .feature {
  padding: 16px 24px;
  color: var(--text-light);
  font-size: 0.9rem; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.comparison-row .value {
  padding: 16px 24px;
  text-align: center;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.comparison-row .value.highlight { background: rgba(201,168,76,0.04); }
.check-yes {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: rgba(34,197,94,0.15);
  color: #22C55E;
  border-radius: 50%;
  font-size: 0.85rem; font-weight: 700;
}
.check-no {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: rgba(239,68,68,0.1);
  color: #EF4444;
  border-radius: 50%;
  font-size: 0.85rem; font-weight: 700;
}

/* ═══════════ TEAM GRID ═══════════ */
.team-section { background: var(--bg-white); padding: 100px 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: var(--bg-light);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.1);
  border-color: rgba(201,168,76,0.15);
}
.team-photo {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-dark-3), var(--bg-dark-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--text-muted);
  overflow: hidden;
  position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo .role-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: var(--accent-gold);
  font-size: 0.7rem; font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.team-info { padding: 20px; }
.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 4px;
}
.team-info .title { color: var(--accent-gold); font-size: 0.8rem; font-weight: 500; margin-bottom: 10px; }
.team-info p {
  color: var(--text-body); font-size: 0.85rem; line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials-section { background: var(--gradient-dark); padding: 100px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.06); border-color: var(--border-gold); }
.testimonial-stars { color: var(--accent-gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card blockquote {
  color: var(--text-light); font-size: 0.95rem; line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--accent-gold);
  font-weight: 700; font-family: var(--font-display);
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author .name { font-weight: 600; color: var(--text-white); font-size: 0.9rem; }
.testimonial-author .location { color: var(--text-muted); font-size: 0.8rem; }

/* ═══════════ VIDEO ═══════════ */
.video-section { background: var(--bg-light); padding: 100px 0; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card {
  border-radius: 16px; overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-card);
  transition: var(--transition); cursor: pointer;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.12); }
.video-thumbnail {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-dark); font-size: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  position: absolute;
}
.video-card:hover .play-btn { transform: scale(1.1); box-shadow: 0 4px 30px rgba(201,168,76,0.6); }
.video-card-info { padding: 20px; }
.video-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 4px;
}
.video-card-info p { color: var(--text-body); font-size: 0.85rem; }

/* ═══════════ FINANCING BAR ═══════════ */
.financing-section {
  background: linear-gradient(135deg, var(--accent-teal-dark), var(--accent-teal));
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.financing-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.financing-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; z-index: 2;
}
.financing-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700;
  color: var(--text-white); margin-bottom: 12px;
}
.financing-content p { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 500px; line-height: 1.7; }
.financing-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═══════════ CTA ═══════════ */
.cta-section {
  background: var(--bg-dark);
  padding: 100px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-content .section-title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.cta-content p { color: var(--text-light); font-size: 1.1rem; margin-bottom: 36px; line-height: 1.7; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-features {
  display: flex; justify-content: center;
  gap: 32px; margin-top: 40px; flex-wrap: wrap;
  list-style: none; padding: 0;
}
.cta-features li {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.85rem;
}
.cta-features li .dot { width: 6px; height: 6px; background: var(--accent-gold); border-radius: 50%; }

/* ═══════════ CONTACT ═══════════ */
.contact-section { background: var(--bg-light); padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 24px;
}
.contact-details { list-style: none; margin: 0 0 28px; padding: 0; }
.contact-details li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-details li .ci-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-details li .text strong { display: block; color: var(--text-dark); font-size: 0.9rem; margin-bottom: 2px; }
.contact-details li .text span { color: var(--text-body); font-size: 0.9rem; }
.contact-details li .text a { color: var(--accent-teal); font-weight: 500; }
.contact-details li .text a:hover { text-decoration: underline; }
.contact-form-wrapper {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.contact-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text-dark); background: var(--bg-light);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(26,154,175,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* WordPress specific form overrides */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%; padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-family: var(--font-body); font-size: 0.9rem;
  background: var(--bg-light);
}
.wpcf7 input[type="submit"] {
  background: var(--gradient-gold);
  color: var(--bg-dark);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 0.9rem;
}

/* ═══════════ FOOTER ═══════════ */
.site-footer {
  background: var(--bg-dark);
  padding: 80px 0 0;
  border-top: 1px solid var(--border-subtle);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin: 16px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
  font-size: 0.85rem;
}
.footer-social a:hover { background: var(--accent-gold); color: var(--bg-dark); border-color: var(--accent-gold); }
.footer-col h4 { color: var(--text-white); font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--accent-gold); }
.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom .legal a { color: var(--text-muted); font-size: 0.8rem; transition: color 0.3s; }
.footer-bottom .legal a:hover { color: var(--accent-gold); }

/* WordPress footer widgets */
.footer-col .widget ul { list-style: none; padding: 0; margin: 0; }
.footer-col .widget ul li { margin-bottom: 10px; }
.footer-col .widget ul li a { color: var(--text-muted); font-size: 0.85rem; }
.footer-col .widget ul li a:hover { color: var(--accent-gold); }

/* ═══════════ MODAL/POPUP ═══════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: 0.4s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--bg-white);
  border-radius: 24px;
  width: 90%; max-width: 520px;
  padding: 48px 40px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: 0.4s ease;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--bg-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--text-body);
  transition: var(--transition);
  border: none; cursor: pointer;
}
.modal-close:hover { background: #eee; }
.modal h2 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.modal .subtitle { color: var(--text-body); margin-bottom: 28px; }

/* ═══════════ INNER PAGE CONTENT ═══════════ */
.page-content { padding: 80px 0; }
.page-content.light-bg { background: var(--bg-light); }
.page-content.dark-bg { background: var(--bg-dark); }
.page-content.white-bg { background: var(--bg-white); }

.content-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.content-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* Service detail page */
.service-detail { padding: 80px 0; }
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.service-detail h2 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--text-dark); margin: 32px 0 16px;
}
.service-detail h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-dark); margin: 24px 0 12px;
}
.service-detail p { margin-bottom: 16px; line-height: 1.8; }
.service-detail ul { padding-left: 20px; margin-bottom: 20px; }
.service-detail ul li { margin-bottom: 8px; line-height: 1.7; }

/* Sidebar */
.sidebar-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 16px;
}
.sidebar-card ul { list-style: none; padding: 0; margin: 0; }
.sidebar-card ul li { border-bottom: 1px solid rgba(0,0,0,0.06); }
.sidebar-card ul li a {
  display: block; padding: 12px 0;
  color: var(--text-body); font-size: 0.9rem;
  transition: color 0.3s;
}
.sidebar-card ul li a:hover { color: var(--accent-gold); }

/* FAQ Accordion */
.faq-section { padding: 80px 0; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 0;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 1.05rem; font-weight: 600;
  color: var(--text-dark);
  background: none; border: none;
  width: 100%; text-align: left;
  font-family: var(--font-body);
}
.faq-question:hover { color: var(--accent-gold); }
.faq-question .toggle { font-size: 1.2rem; transition: transform 0.3s; color: var(--accent-gold); }
.faq-item.active .faq-question .toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}
.faq-answer p { color: var(--text-body); line-height: 1.7; }

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: 70vh; }
  .why-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .doctor-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .content-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .main-navigation { display: none; }
  .menu-toggle { display: block; }
  .header-phone { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .why-grid, .process-grid { grid-template-columns: 1fr; }
  .services-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid, .video-grid, .contact-grid { grid-template-columns: 1fr; }
  .comparison-table { overflow-x: auto; }
  .comparison-header-row, .comparison-row { min-width: 700px; }
  .footer-grid { grid-template-columns: 1fr; }
  .financing-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { position: relative; bottom: auto; left: auto; right: auto; margin-top: 36px; }
  .content-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid, .team-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .cta-features { flex-direction: column; align-items: center; gap: 12px; }
}
