/* ============================================
   Mill Creek Family Dental — Stylesheet
   ============================================ */

:root {
  --primary:        #1a7a8a;
  --primary-dark:   #135e6b;
  --primary-light:  #d0eef2;
  --secondary:      #2ca87f;
  --secondary-light:#d4f0e6;
  --accent:         #5bb8ca;
  --text:           #1e2b36;
  --text-muted:     #5e7585;
  --bg:             #f8fafb;
  --bg-alt:         #edf5f7;
  --white:          #ffffff;
  --border:         #d6e8ed;
  --shadow-sm:      0 1px 4px rgba(26,122,138,.08);
  --shadow:         0 4px 20px rgba(26,122,138,.12);
  --shadow-lg:      0 12px 40px rgba(26,122,138,.18);
  --radius:         12px;
  --radius-lg:      20px;
  --transition:     0.25s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* Container */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  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 20px rgba(26,122,138,.3);
}
.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,.6);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.btn-lg  { padding: 15px 36px; font-size: 1rem; }
.btn-sm  { padding: 8px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============ Navigation ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(26,122,138,.12);
  backdrop-filter: blur(8px);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}
.site-header.scrolled .navbar { padding: 14px 0; }
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.site-header:not(.scrolled) .logo-name { color: var(--white); }
.logo-sub {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: .02em;
}
.site-header:not(.scrolled) .logo-sub { color: rgba(255,255,255,.75); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.site-header:not(.scrolled) .nav-link { color: rgba(255,255,255,.9); }
.nav-link:hover, .nav-link.active {
  background: var(--primary-light);
  color: var(--primary);
}
.site-header:not(.scrolled) .nav-link:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--text); }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f5460 0%, #1a7a8a 40%, #2ca87f 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 680px; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.2);
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.text-accent { color: #9de8d8; }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 20px 32px;
  width: fit-content;
}
.stat { text-align: center; padding: 0 28px; }
.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,.7); font-weight: 400; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.25); }
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 2;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ============ Trust Bar ============ */
.trust-bar {
  background: var(--bg);
  padding: 40px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.trust-icon { color: var(--primary); display: flex; align-items: center; }

/* ============ Section Base ============ */
.section { padding: 96px 0; }
.section-alt { background: var(--bg); }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============ About ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img-placeholder {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--secondary);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
}
.about-content { padding-right: 20px; }
.about-text {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.97rem;
  line-height: 1.8;
}
.team-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
}
.team-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); }
.team-avatar {
  width: 56px; height: 56px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.team-info h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.team-info p { font-size: 0.82rem; color: var(--text-muted); }

/* ============ Services ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  cursor: default;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon--blue  { background: var(--primary-light); color: var(--primary); }
.service-icon--teal  { background: #d0f0f5; color: #0d8fa0; }
.service-icon--green { background: var(--secondary-light); color: var(--secondary); }
.service-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.service-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.services-cta {
  text-align: center;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.services-cta p { font-size: 1rem; color: var(--text-muted); margin-bottom: 20px; }

/* ============ New Patients ============ */
.new-patients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.new-patients-steps h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 32px;
}
.step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}
.step-num {
  width: 36px; height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-content h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.step-content p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.new-patients-info { display: flex; flex-direction: column; gap: 24px; }
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.info-card-icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}
.info-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.info-card p  { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; }
.insurance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
  list-style: none;
  margin-bottom: 14px;
}
.insurance-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.insurance-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}
.info-note {
  font-size: 0.82rem !important;
  color: var(--primary) !important;
  background: var(--primary-light);
  padding: 10px 14px;
  border-radius: 8px;
  margin: 0 !important;
}
.form-downloads { display: flex; flex-direction: column; gap: 10px; }
.form-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.form-link:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}
.form-link svg { color: var(--primary); flex-shrink: 0; }

/* ============ Testimonials ============ */
.section-testimonials {
  background: linear-gradient(135deg, #0f5460, #1a7a8a);
}
.section-testimonials .section-eyebrow {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
}
.section-testimonials .section-title { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testimonial-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,.9);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--white); }
.testimonial-author span  { font-size: 0.78rem; color: rgba(255,255,255,.6); }

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-check {
  flex-direction: row !important;
  align-items: center;
  gap: 10px !important;
}
.form-check input { width: 18px; height: 18px; cursor: pointer; flex-shrink: 0; }
.form-check label { font-weight: 400 !important; cursor: pointer; }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  gap: 16px;
}
.form-success svg { color: var(--secondary); }
.form-success h3 { font-size: 1.4rem; font-weight: 700; }
.form-success p { color: var(--text-muted); }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.contact-detail p, .contact-detail a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-detail a:hover { color: var(--primary); }
.hours-table { font-size: 0.85rem; color: var(--text-muted); border-collapse: collapse; }
.hours-table td { padding: 3px 0; }
.hours-table td:first-child { padding-right: 20px; font-weight: 500; }
.map-placeholder {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--primary);
}
.map-placeholder p { font-size: 0.88rem; color: var(--text-muted); }

/* ============ CTA Banner ============ */
.cta-banner {
  background: linear-gradient(135deg, #135e6b, #1a7a8a, #2ca87f);
  padding: 80px 0;
}
.cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.75;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ Footer ============ */
.site-footer {
  background: var(--text);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub  { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-size: 0.85rem; font-weight: 700; color: var(--white); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-contact li, .footer-contact li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-col ul li a:hover, .footer-contact li a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.35); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ============ Animations ============ */
.fade-in, .fade-in-left, .fade-in-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left  { transform: translateX(-40px); }
.fade-in-right { transform: translateX(40px); }
.fade-in.visible, .fade-in-left.visible, .fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Stagger children */
.services-grid .service-card:nth-child(2) { transition-delay: .08s; }
.services-grid .service-card:nth-child(3) { transition-delay: .16s; }
.services-grid .service-card:nth-child(4) { transition-delay: .04s; }
.services-grid .service-card:nth-child(5) { transition-delay: .12s; }
.services-grid .service-card:nth-child(6) { transition-delay: .20s; }
.trust-items .trust-item:nth-child(2) { transition-delay: .08s; }
.trust-items .trust-item:nth-child(3) { transition-delay: .16s; }
.trust-items .trust-item:nth-child(4) { transition-delay: .24s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: .1s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: .2s; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-content { padding-right: 0; }
  .about-img-wrapper { max-width: 500px; }
  .about-img-placeholder { aspect-ratio: 3/2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .stat { padding: 12px 20px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 80px 24px 40px;
    box-shadow: -8px 0 30px rgba(0,0,0,.15);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { color: var(--text) !important; width: 100%; }
  .nav-toggle span { background: var(--text) !important; }
  .site-header:not(.scrolled) .nav-toggle span { background: var(--white) !important; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .new-patients-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { width: 100%; justify-content: center; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .trust-items { flex-direction: column; align-items: stretch; }
}
