/* ============================================================
   Best Choice Dental — site.css
   Design: Warm Clinical Modernism
   Palette: deep teal (#2a6b72) primary, warm gold (#c9973a) accent,
            off-white (#faf8f5) background, charcoal (#2a2420) text
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:       #2a6b72;
  --teal-dark:  #1c4a50;
  --teal-light: #3d8f97;
  --gold:       #c9973a;
  --gold-dark:  #a87a2c;
  --bg:         #faf8f5;
  --bg-alt:     #f2ede6;
  --text:       #2a2420;
  --text-mid:   #5a4f47;
  --text-light: #8a7e78;
  --border:     #e0d8d0;
  --white:      #ffffff;
  --radius:     6px;
  --shadow-sm:  0 1px 4px rgba(42,36,32,.08);
  --shadow-md:  0 4px 16px rgba(42,36,32,.12);
  --shadow-lg:  0 8px 32px rgba(42,36,32,.16);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --max-w:      1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section-label {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}
.section-divider {
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-teal  { background: var(--teal); color: #fff; }
.btn-teal:hover  { background: var(--teal-dark); box-shadow: var(--shadow-md); }
.btn-gold  { background: var(--gold); color: var(--text); }
.btn-gold:hover  { background: var(--gold-dark); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.1); }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--teal-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: .45rem 0;
  transition: max-height .3s, opacity .3s;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.top-bar a { color: var(--gold); font-weight: 600; }
.top-bar a:hover { color: #fff; }
.top-bar svg { width: 13px; height: 13px; vertical-align: middle; margin-right: .3rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s, top .3s;
}
.navbar.scrolled {
  background: rgba(250,248,245,.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
}
.navbar.scrolled .top-bar { display: none; }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  transition: color .3s;
}
.navbar.scrolled .logo-name { color: var(--teal-dark); }
.logo-sub {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color .3s;
}
.navbar.scrolled .logo-sub { color: var(--text-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  position: relative;
  transition: color .2s;
}
.navbar.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .2s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: #fff; }
.navbar.scrolled .nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--gold) !important; }
.navbar.scrolled .nav-links a.active { color: var(--teal-dark) !important; font-weight: 700; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .25rem;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background .3s, transform .3s, opacity .3s;
}
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  gap: .25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .75rem .5rem;
  border-bottom: 1px solid var(--bg-alt);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .btn { margin-top: .75rem; justify-content: center; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links, .navbar-inner .btn { display: none; }
  .navbar-inner { padding: .85rem 1.25rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/bestchoicedental/assets/img/hero.webp');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,74,80,.88) 0%, rgba(28,74,80,.55) 55%, rgba(28,74,80,.12) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 10rem 0 5rem;
  max-width: 580px;
}
.hero-eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero h1 em { font-style: normal; color: #e8c07a; }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--teal);
  color: #fff;
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }

/* ---------- About Section ---------- */
.about { padding: 5rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-float-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.1rem 1.4rem;
  max-width: 210px;
}
.float-stars { display: flex; gap: 3px; margin-bottom: .4rem; }
.float-stars svg { width: 13px; height: 13px; fill: var(--gold); }
.float-quote { font-size: .78rem; color: var(--text-mid); line-height: 1.4; font-style: italic; }
.float-attr { font-size: .7rem; color: var(--text-light); margin-top: .4rem; font-weight: 600; }

.about-text { padding-left: 1rem; }
.about-text h2 { font-size: 2.4rem; margin-bottom: 1.1rem; }
.about-text p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.75; }
.check-list { list-style: none; margin: 1.25rem 0 2rem; display: flex; flex-direction: column; gap: .6rem; }
.check-list li { display: flex; align-items: flex-start; gap: .65rem; font-size: .9rem; color: var(--text-mid); }
.check-list li svg { width: 16px; height: 16px; fill: none; stroke: var(--teal); stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap .2s;
}
.link-arrow:hover { gap: .7rem; }
.link-arrow svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-float-card { right: .5rem; }
  .about-text { padding-left: 0; }
}

/* ---------- Services ---------- */
.services { padding: 5rem 0; background: var(--bg-alt); }
.services-header { max-width: 520px; margin-bottom: 3rem; }
.services-header h2 { font-size: 2.4rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(42,107,114,.2);
}
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  transition: color .2s;
}
.service-card:hover h3 { color: var(--teal); }
.service-card p { font-size: .875rem; color: var(--text-mid); line-height: 1.65; }
.services-footer { margin-top: 2.5rem; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Office ---------- */
.office { padding: 5rem 0; }
.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.office-text h2 { font-size: 2.4rem; margin-bottom: 1.1rem; }
.office-text p { color: var(--text-mid); margin-bottom: 1.75rem; line-height: 1.75; }
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: 2rem;
}
.info-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.info-card-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .35rem;
}
.info-card p { font-size: .85rem; color: var(--text-mid); line-height: 1.55; white-space: pre-line; }
.office-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) {
  .office-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .office-img { order: -1; }
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 5rem 0; background: var(--bg-alt); }
.testimonials-header { text-align: center; max-width: 520px; margin: 0 auto 3rem; }
.testimonials-header h2 { font-size: 2.4rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.t-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.t-stars svg { width: 14px; height: 14px; fill: var(--gold); }
.t-text {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.t-name { font-size: .78rem; font-weight: 700; color: var(--teal); letter-spacing: .04em; }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('/bestchoicedental/assets/img/smile.webp');
  background-size: cover;
  background-position: center top;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,74,80,.88);
}
.cta-content { position: relative; z-index: 2; color: #fff; }
.cta-eyebrow { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.cta-content h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto 2rem; line-height: 1.7; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ---------- Footer ---------- */
.footer { background: #1a4046; color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 0;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.footer-brand-sub {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer-col-title {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: rgba(255,255,255,.65); }
.footer-contact-list svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; stroke: var(--gold); fill: none; stroke-width: 2; }
.footer-contact-list a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-contact-list a:hover { color: #fff; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }
.footer-legal { display: flex; gap: 1.25rem; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Inner Page Hero ---------- */
.page-hero {
  background: var(--teal-dark);
  padding: 6.5rem 0 2rem;
}
@media (max-width: 1024px) {
  .page-hero {
    padding: 5.5rem 0 1.75rem;
  }
}
@media (max-width: 768px) {
  .page-hero {
    padding: 5rem 0 1.5rem;
  }
  .page-hero h1 { font-size: 1.6rem; }
  .page-hero p { font-size: .9rem; }
}
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: #fff; margin-bottom: .6rem; }
.page-hero p { color: rgba(255,255,255,.72); max-width: 560px; font-size: 1rem; line-height: 1.65; }

/* ---------- Services Page ---------- */
.services-page { padding: 4rem 0; }
.services-page .max-w { max-width: 860px; }
.service-category { margin-bottom: 3.5rem; }
.category-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem; }
.category-bar { width: 4px; height: 2.5rem; border-radius: 2px; background: var(--teal); flex-shrink: 0; }
.category-header h2 { font-size: 1.8rem; }
.service-items { display: flex; flex-direction: column; gap: .85rem; }
.service-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: border-color .2s, box-shadow .2s;
}
.service-item:hover { border-color: rgba(42,107,114,.35); box-shadow: var(--shadow-md); }
.service-item h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.service-item p { font-size: .875rem; color: var(--text-mid); line-height: 1.65; }

/* ---------- New Patients Page ---------- */
.np-mission { padding: 4rem 0; background: var(--bg-alt); }
.np-mission blockquote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.np-mission cite { display: block; font-size: .85rem; font-style: normal; color: var(--text-light); margin-top: .75rem; text-align: center; }

.np-steps { padding: 4rem 0; }
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 860px; }
.step-card { background: #fff; border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); display: flex; gap: 1.25rem; }
.step-num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--border); line-height: 1; flex-shrink: 0; }
.step-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.step-card p { font-size: .875rem; color: var(--text-mid); line-height: 1.65; }
@media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr; } }

.np-forms { padding: 4rem 0; background: var(--bg-alt); }
.forms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; max-width: 700px; margin: 1.5rem 0 1rem; }
.form-item {
  background: #fff;
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.form-item:hover { border-color: var(--teal); color: var(--teal); }
.form-item svg { width: 15px; height: 15px; stroke: var(--teal); fill: none; stroke-width: 2; flex-shrink: 0; }
@media (max-width: 560px) { .forms-grid { grid-template-columns: 1fr; } }

.np-info { padding: 4rem 0; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 860px; }
.info-block { background: #fff; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.info-block svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2; margin-bottom: .75rem; }
.info-block h3 { font-size: 1rem; margin-bottom: .4rem; }
.info-block p { font-size: .875rem; color: var(--text-mid); line-height: 1.65; }
@media (max-width: 560px) { .info-grid { grid-template-columns: 1fr; } }

/* ---------- Contact Page ---------- */
.contact-section { padding: 4rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: 2rem; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(42,107,114,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 2; }
.contact-item-label { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: .25rem; }
.contact-item p, .contact-item a { font-size: .9rem; color: var(--text-mid); line-height: 1.6; }
.contact-item a:hover { color: var(--teal); }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); height: 420px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-section { padding: 4rem 0; background: var(--bg-alt); }
.contact-form-wrap { max-width: 680px; }
.contact-form-wrap h2 { font-size: 2rem; margin-bottom: .5rem; }
.contact-form-wrap .sub { color: var(--text-light); font-size: .9rem; margin-bottom: 2rem; }

/* ---------- Appointment Page ---------- */
.appt-section { padding: 4rem 0; }
.appt-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; }
.appt-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.appt-call-card {
  background: var(--teal);
  border-radius: var(--radius);
  padding: 1.75rem;
  color: #fff;
}
.appt-call-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.appt-call-card p { font-size: .875rem; color: rgba(255,255,255,.72); margin-bottom: 1.25rem; line-height: 1.6; }
.appt-call-card a { display: flex; align-items: center; gap: .6rem; font-size: 1.15rem; font-weight: 700; color: var(--gold); transition: color .2s; }
.appt-call-card a:hover { color: #fff; }
.appt-call-card svg { width: 20px; height: 20px; }
.appt-hours-card { background: #fff; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.appt-hours-card h3 { font-size: 1rem; margin-bottom: 1rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .875rem; color: var(--text-mid); padding: .3rem 0; border-bottom: 1px solid var(--bg-alt); }
.hours-row:last-child { border-bottom: none; }
.hours-row .val { font-weight: 600; color: var(--text); }
.hours-row .val.closed { color: var(--text-light); }
.appt-addr { font-size: .8rem; color: var(--text-light); margin-top: .85rem; line-height: 1.55; }

@media (max-width: 900px) { .appt-grid { grid-template-columns: 1fr; } }

/* ---------- Forms (shared) ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.form-title { font-size: 1.4rem; margin-bottom: .25rem; }
.form-sub { font-size: .85rem; color: var(--text-light); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,107,114,.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.radio-group { display: flex; gap: 1.5rem; padding: .25rem 0; }
.radio-group label { display: flex; align-items: center; gap: .45rem; font-size: .9rem; color: var(--text-mid); font-weight: 400; text-transform: none; letter-spacing: 0; cursor: pointer; }
.radio-group input[type="radio"] { accent-color: var(--teal); width: 15px; height: 15px; }
.form-note { font-size: .78rem; color: var(--text-light); text-align: center; margin-top: .75rem; }
.btn-full { width: 100%; justify-content: center; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* Success state */
.success-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(42,107,114,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.success-icon svg { width: 32px; height: 32px; stroke: var(--teal); fill: none; stroke-width: 2; }
.success-card h2 { font-size: 1.8rem; margin-bottom: .75rem; }
.success-card p { color: var(--text-mid); max-width: 400px; margin: 0 auto 1.5rem; line-height: 1.7; }

/* ---------- CTA section (inner pages) ---------- */
.inner-cta { padding: 3.5rem 0; background: var(--teal); text-align: center; color: #fff; }
.inner-cta h2 { font-size: 1.8rem; margin-bottom: .75rem; }
.inner-cta p { color: rgba(255,255,255,.72); margin-bottom: 1.75rem; max-width: 440px; margin-left: auto; margin-right: auto; }

/* ---------- Utilities ---------- */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.text-center { text-align: center; }
.hidden { display: none !important; }
