/* ============================================
   REVIVE DENTAL — Modern Redesign
   ============================================ */

:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #e0f2fe;
  --accent: #6366f1;
  --accent-light: #eef2ff;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --success: #10b981;
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.15);
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 50px; font-weight: 600; font-size: .9rem;
  border: 2px solid transparent; cursor: pointer; transition: var(--transition);
  text-decoration: none; line-height: 1.4; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(14,165,233,.35); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }
.btn-sm { padding: .5rem 1.25rem; font-size: .8rem; }
.btn-lg { padding: .9rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ---- PROMO BAR ---- */
.promo-bar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white); text-align: center; padding: .6rem 1rem; font-size: .85rem;
  position: relative; z-index: 100;
}
.promo-bar .container { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.promo-link {
  display: inline-block; background: var(--primary); color: #fff;
  padding: .2rem .65rem; border-radius: 50px; font-weight: 600; white-space: nowrap;
}
.promo-link:hover { background: var(--primary-dark); color: #fff; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky; top: 0; z-index: 99; background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.05); transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--dark); }
.logo-icon { font-size: 1.8rem; color: var(--primary); }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--dark); }
.logo-sub { font-size: .7rem; color: var(--gray-500); letter-spacing: .05em; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 1rem; }
.nav-links { display: flex; list-style: none; gap: .25rem; }
.nav-links a { padding: .5rem .75rem; border-radius: var(--radius); color: var(--gray-600); font-size: .875rem; font-weight: 500; display: flex; align-items: center; gap: .3rem; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-light); }
.nav-actions { display: flex; align-items: center; gap: .75rem; margin-left: .5rem; }
.nav-phone { display: flex; align-items: center; gap: .35rem; color: var(--gray-600); font-size: .85rem; font-weight: 500; }
.nav-phone:hover { color: var(--primary); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--white); border-radius: var(--radius-lg); padding: .5rem;
  min-width: 240px; list-style: none; box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200); opacity: 0; visibility: hidden;
  transition: var(--transition); pointer-events: none;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: all; }
.dropdown-menu li a { display: block; padding: .5rem .75rem; border-radius: var(--radius); font-size: .85rem; color: var(--gray-600); }
.dropdown-menu li a:hover { background: var(--primary-light); color: var(--primary); }

/* Mobile toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; flex-direction: column; gap: 5px; position: relative; z-index: 1001; }
.nav-toggle span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; transform-origin: center; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav backdrop */
.nav-backdrop {
  position: fixed; inset: 0; background: rgba(15,23,42,.5);
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
  z-index: 998;
}
.nav-backdrop.open { opacity: 1; visibility: visible; }

/* ---- HERO ---- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0c1222 0%, #1a2744 40%, #0f2847 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(14,165,233,.15) 0%, transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(99,102,241,.1) 0%, transparent 50%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; }
.hero-badge {
  display: inline-block; padding: .4rem 1.25rem; border-radius: 50px;
  background: rgba(14,165,233,.15); border: 1px solid rgba(14,165,233,.3);
  color: var(--primary); font-size: .8rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1rem; }
.text-gradient { background: linear-gradient(135deg, var(--primary), #818cf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { color: rgba(255,255,255,.7); font-size: 1.2rem; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2rem; justify-content: center; align-items: center; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 1.75rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(255,255,255,.4); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }

/* ---- ANIMATIONS ---- */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp .8s ease forwards; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal-left, .reveal-right, .reveal-up { opacity: 0; transition: opacity .7s ease, transform .7s ease; }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up { transform: translateY(40px); }
.reveal-left.visible, .reveal-right.visible, .reveal-up.visible { opacity: 1; transform: translate(0); }

/* ---- SECTIONS ---- */
.section { padding: 5rem 0; }
.bg-subtle { background: var(--gray-50); }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--primary); margin-bottom: .75rem;
  padding: .3rem .75rem; background: var(--primary-light); border-radius: 50px;
}
.section-title { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 1rem; }
.section-header { margin-bottom: 3rem; }
.section-desc { color: var(--gray-500); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ---- ABOUT PREVIEW ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.about-image-wrapper { position: relative; }
.about-photo { border-radius: var(--radius-xl); width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 20%; }
.about-image-accent {
  position: absolute; top: -1rem; left: -1rem; right: 1rem; bottom: 1rem;
  border: 3px solid var(--primary); border-bottom: none; border-radius: var(--radius-xl) var(--radius-xl) 0 0; z-index: 1; pointer-events: none;
}
.about-exp-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--primary);
  color: var(--white); padding: 1.25rem; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-lg); z-index: 2;
}
.exp-number { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.exp-text { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; opacity: .9; }
.about-text-col p { margin-bottom: 1rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 1.5rem 0 2rem; }
.about-feature { display: flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 500; color: var(--gray-700); }
.feature-icon { flex-shrink: 0; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--primary-light); border-radius: 50%; color: var(--primary); }

/* ---- SERVICES GRID ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  display: flex; flex-direction: column; padding: 2rem; border-radius: var(--radius-xl);
  background: var(--white); border: 1px solid var(--gray-200); text-decoration: none;
  color: var(--gray-700); transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent)); opacity: 0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; color: var(--gray-700); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; background: var(--primary-light); color: var(--primary);
  margin-bottom: 1.25rem; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.service-card p { font-size: .9rem; line-height: 1.6; flex: 1; }
.service-link { font-size: .85rem; font-weight: 600; color: var(--primary); margin-top: 1rem; }

/* ---- SERVICES DETAIL (services page) ---- */
.services-detail-grid { display: flex; flex-direction: column; gap: 2rem; }
.service-detail-card {
  display: flex; gap: 2rem; padding: 2.5rem; border-radius: var(--radius-xl);
  background: var(--white); border: 1px solid var(--gray-200); transition: var(--transition);
}
.service-detail-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.service-detail-icon {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  color: var(--primary);
}
.service-detail-content h2 { font-family: var(--font-display); font-size: 1.4rem; color: var(--dark); margin-bottom: .75rem; }
.service-detail-content p { font-size: .95rem; }

/* ---- PROCESS / FIRST VISIT ---- */
.process-section { background: var(--gray-50); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-card {
  background: var(--white); padding: 2rem 1.5rem; border-radius: var(--radius-xl);
  text-align: center; position: relative; border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-number {
  font-size: 3rem; font-weight: 900; color: var(--primary-dark);
  position: absolute; top: .75rem; left: 1.25rem; line-height: 1;
  font-family: var(--font-display);
}
.process-icon {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; background: var(--primary-light); color: var(--primary);
  margin: 0 auto 1rem;
}
.process-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.process-card p { font-size: .875rem; color: var(--gray-500); }

/* ---- SPECIAL OFFER ---- */
.offer-section { position: relative; background: linear-gradient(135deg, #0c1222, #1a2744); padding: 6rem 0; overflow: hidden; }
.offer-bg { position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(14,165,233,.1) 0%, transparent 70%); }
.offer-card {
  position: relative; z-index: 2; max-width: 550px; margin: 0 auto; text-align: center;
  background: rgba(255,255,255,.05); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.1);
  padding: 3rem 2.5rem; border-radius: var(--radius-xl);
}
.offer-badge { display: inline-block; padding: .3rem .75rem; border-radius: 50px; background: var(--primary); color: var(--white); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1rem; }
.offer-title { font-family: var(--font-display); font-size: 1.75rem; color: var(--white); margin-bottom: 1.5rem; }
.offer-price { margin-bottom: .75rem; }
.price-dollar { font-size: 2rem; font-weight: 700; color: var(--primary); vertical-align: top; }
.price-amount { font-size: 5rem; font-weight: 900; color: var(--white); line-height: 1; font-family: var(--font-display); }
.offer-desc { font-size: 1.2rem; color: rgba(255,255,255,.9); font-weight: 600; margin-bottom: 1rem; }
.offer-note { font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: .5rem; }
.offer-fine { font-size: .7rem; color: rgba(255,255,255,.35); margin-bottom: 2rem; line-height: 1.5; }

/* ---- CONTACT CTA (home page) ---- */
.contact-cta { background: var(--gray-50); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.cta-content p { margin-bottom: 1.5rem; }
.cta-info { display: flex; flex-direction: column; gap: .75rem; }
.cta-info-item { display: flex; align-items: center; gap: .75rem; font-size: .9rem; color: var(--gray-600); }
.cta-info-item svg { flex-shrink: 0; color: var(--primary); }
.cta-info-item a { color: var(--gray-700); font-weight: 500; }

/* ---- FORMS ---- */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--gray-700); }
.form-group input, .form-group textarea, .form-group select {
  padding: .75rem 1rem; border: 1px solid var(--gray-300); border-radius: var(--radius);
  font-size: .9rem; font-family: var(--font-sans); color: var(--gray-800);
  transition: var(--transition); background: var(--white); width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,.15);
}
.form-group textarea { resize: vertical; }
.form-card { background: var(--white); padding: 2.5rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100); }
.form-card h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--dark); margin-bottom: .5rem; }
.form-card > p { color: var(--gray-500); font-size: .9rem; margin-bottom: 1.5rem; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); padding: 4rem 0;
}
.cta-banner h2 { font-family: var(--font-display); font-size: 2rem; color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- PAGE HERO (subpages) ---- */
.page-hero {
  background: linear-gradient(135deg, #0c1222, #1a2744); padding: 6rem 0 4rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
}
.page-hero-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: .75rem; }
.page-hero-desc { color: rgba(255,255,255,.65); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ---- DOCTOR PROFILE ---- */
.doctor-profile { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.doctor-image-wrapper { position: relative; padding: 1.5rem; padding-bottom: 0; }
.doctor-photo { border-radius: var(--radius-xl); width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 20%; }
.doctor-image-frame {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  border: 3px solid var(--primary); border-bottom: none; border-radius: var(--radius-xl) var(--radius-xl) 0 0; z-index: 1; pointer-events: none;
}
.doctor-credentials { color: var(--primary); font-weight: 600; font-size: .95rem; margin-bottom: 1rem; }
.doctor-info-col p { margin-bottom: 1rem; }
.doctor-specialties { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.specialty-tag {
  padding: .35rem .75rem; border-radius: 50px; background: var(--primary-light);
  color: var(--primary-dark); font-size: .8rem; font-weight: 500;
}

/* ---- VALUES GRID ---- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--white); padding: 2rem; border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200); text-align: center; transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; background: var(--primary-light); color: var(--primary);
  margin: 0 auto 1.25rem;
}
.value-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: .75rem; }
.value-card p { font-size: .9rem; color: var(--gray-500); }

/* ---- MEDICAID PAGE ---- */
.medicaid-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
.medicaid-content h3 { font-size: 1.2rem; color: var(--dark); margin: 2rem 0 .75rem; font-weight: 700; }
.check-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.check-list li {
  display: flex; align-items: center; gap: .5rem; font-size: .9rem;
  padding: .3rem 0;
}
.check-list li::before { content: '\2713'; color: var(--success); font-weight: 700; font-size: .85rem; flex-shrink: 0; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; background: rgba(16,185,129,.1); border-radius: 50%; }

/* ---- INSURANCE CARDS ---- */
.insurance-card {
  background: var(--white); padding: 2rem; border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200); margin-bottom: 1.5rem;
}
.insurance-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.plan-list { list-style: none; }
.plan-list li { display: flex; align-items: center; gap: .6rem; padding: .4rem 0; font-size: .9rem; border-bottom: 1px solid var(--gray-100); }
.plan-list li:last-child { border: none; }
.plan-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.plan-note { font-size: .8rem; color: var(--gray-500); margin-top: .75rem; }
.offer-highlight { background: linear-gradient(135deg, var(--dark), var(--dark-2)); border: none; color: var(--white); text-align: center; }
.offer-highlight h3 { color: var(--white); }
.offer-highlight p { color: rgba(255,255,255,.7); }
.mini-price { font-size: 3rem; font-weight: 900; font-family: var(--font-display); color: var(--primary); margin: .5rem 0; }

/* ---- PAYMENTS PAGE ---- */
.payments-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
.payments-main p { margin-bottom: 1rem; }
.payments-main h3 { font-size: 1.2rem; color: var(--dark); margin: 2rem 0 .75rem; font-weight: 700; }
.highlight-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0; }
.highlight-card {
  padding: 1.5rem; border-radius: var(--radius-lg); background: var(--gray-50);
  border: 1px solid var(--gray-200); text-align: center;
}
.highlight-icon {
  width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; background: var(--primary-light); color: var(--primary);
  margin: 0 auto .75rem;
}
.highlight-card h3 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .35rem; }
.highlight-card p { font-size: .8rem; color: var(--gray-500); }

/* ---- FAQ ---- */
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); transition: var(--transition); }
.faq-item:hover { border-color: var(--primary-light); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer;
  font-size: .95rem; font-weight: 600; color: var(--dark); text-align: left;
  font-family: var(--font-sans); transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-chevron { flex-shrink: 0; transition: transform .3s ease; color: var(--gray-400); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-answer p { padding: 0 1.5rem 1.25rem; font-size: .9rem; color: var(--gray-600); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-cta { margin-top: 3rem; padding: 2.5rem; background: var(--gray-50); border-radius: var(--radius-xl); text-align: center; }
.faq-cta h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--dark); margin-bottom: .5rem; }
.faq-cta p { color: var(--gray-500); margin-bottom: 1.5rem; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.contact-card { display: flex; gap: 1rem; padding: 1.25rem; border-radius: var(--radius-lg); background: var(--gray-50); margin-bottom: 1rem; }
.contact-card-icon { flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--primary-light); color: var(--primary); border-radius: 50%; }
.contact-card h3 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: .25rem; }
.contact-card p, .contact-card a { font-size: .9rem; color: var(--gray-600); line-height: 1.5; }
.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: .1rem .75rem; font-size: .85rem; margin-top: .25rem; }
.map-section { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ---- FOOTER ---- */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-icon { color: var(--primary); }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.5); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .4rem; font-size: .875rem; }
.footer-col a { color: rgba(255,255,255,.6); }
.footer-col a:hover { color: var(--primary); }
.footer-hours { font-size: .8rem; line-height: 1.6; margin-top: .5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; display: flex; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--primary); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid, .doctor-profile { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .navbar {
    background: var(--dark); backdrop-filter: none; -webkit-backdrop-filter: none;
    border-bottom-color: rgba(255,255,255,.07);
  }
  .logo-name { color: #fff; }
  .logo-sub { color: rgba(255,255,255,.45); }
  .nav-toggle span { background: #fff; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 360px; height: 100vh;
    background: var(--white); flex-direction: column; padding: 5rem 1.75rem 2rem;
    box-shadow: var(--shadow-xl); transition: right .35s ease; z-index: 999;
    align-items: flex-start; overflow-y: auto; -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .promo-bar { font-size: .75rem; padding: .5rem .75rem; }
  .promo-bar .container { gap: .5rem; }
  .nav-menu.open { right: 0; }
  .nav-links { flex-direction: column; width: 100%; }
  .nav-links a { padding: .75rem 0; font-size: 1rem; }
  .nav-actions { flex-direction: column; width: 100%; margin-left: 0; margin-top: 1rem; }
  .nav-actions .btn { width: 100%; }
  .dropdown-menu {
    position: static; transform: none; box-shadow: none; border: none;
    background: var(--gray-50); border-radius: var(--radius); padding: .25rem;
    opacity: 1; visibility: visible; pointer-events: all; margin: .25rem 0;
  }

  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-grid, .medicaid-grid, .payments-grid, .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; }
  .about-features { grid-template-columns: 1fr; }
  .service-detail-card { flex-direction: column; gap: 1rem; }

  .hero { min-height: 80vh; }
  .section { padding: 3.5rem 0; }
  .page-hero { padding: 5rem 0 3rem; }
}
