/* ==========================================================================
   Wellpoint Dental Group — styles.css
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Lato:wght@400;700;900&display=swap');

:root {
  --primary: #1A3C5E;
  --accent: #4ABFB0;
  --bg-light: #F7FAFA;
  --text: #1A1A1A;
  --white: #FFFFFF;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  line-height: 1.2;
}

h1 { font-size: 58px; font-weight: 800; }
h2 { font-size: 42px; font-weight: 700; }
h3 { font-size: 28px; font-weight: 600; }

p { font-size: 17px; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 90px 0;
}

.section-alt {
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 56px;
}

.section-title-wrap p {
  max-width: 680px;
  margin: 16px auto 0;
  text-align: center;
  color: #4a4a4a;
}

.underline-accent {
  width: 70px;
  height: 4px;
  background-color: var(--accent);
  border-radius: 4px;
  margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  border-radius: 6px;
  font-weight: 700;
  padding: 14px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: #3aa89a;
  border-color: #3aa89a;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  z-index: 1000;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.nav-logo img {
  height: 65px;
  width: auto;
  background-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.nav-cta {
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

.page-hero {
  min-height: 380px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(26, 60, 94, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero .hero-content h1 {
  margin-bottom: 12px;
}

.hero-content p {
  color: #eef4f4;
  font-size: 19px;
  margin-bottom: 34px;
}

.breadcrumb {
  color: #cfe8e4;
  font-size: 15px;
}

.breadcrumb a { color: var(--accent); }

/* ==========================================================================
   Why Choose Us / Icon Cards
   ========================================================================== */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.icon-card {
  background-color: var(--white);
  border-top: 4px solid var(--accent);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 40px 26px;
  text-align: center;
  transition: transform 0.3s ease;
}

.icon-card:hover {
  transform: translateY(-6px);
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-circle svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary);
}

.icon-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.icon-card p {
  font-size: 15px;
  color: #4a4a4a;
}

/* ==========================================================================
   Cards (services, generic)
   ========================================================================== */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-body h3 {
  margin-bottom: 12px;
}

.card-body p {
  color: #4a4a4a;
  font-size: 15.5px;
  flex-grow: 1;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* ==========================================================================
   Stats
   ========================================================================== */

.stats-section {
  background-color: var(--primary);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--white);
  font-size: 15.5px;
  font-weight: 700;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 34px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.testimonial-header img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 900;
  color: var(--primary);
  font-size: 16px;
}

.stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 2px;
}

.testimonial-card p.review-text {
  font-size: 15.5px;
  color: #333;
  font-style: italic;
}

/* ==========================================================================
   Insurance
   ========================================================================== */

.insurance-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}

.insurance-badge {
  background-color: var(--white);
  border: 2px solid var(--accent);
  color: var(--primary);
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  font-size: 15px;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta-section {
  background-color: var(--accent);
  text-align: center;
  padding: 90px 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-section p {
  color: #eafffb;
  font-size: 18px;
  margin-bottom: 30px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo img {
  height: 55px;
  margin-bottom: 16px;
}

.footer-tagline {
  color: #cfe0e8;
  font-size: 15px;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #e4eef2;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 24px 0;
  font-size: 14px;
  color: #c3d3da;
}

/* ==========================================================================
   Scroll to top
   ========================================================================== */

.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 900;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
}

/* ==========================================================================
   Fade in on scroll
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   About page
   ========================================================================== */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col img {
  border-radius: 10px;
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.two-col .text-block h2 {
  text-align: left;
}

.two-col .text-block .underline-accent {
  margin: 16px 0 24px;
}

.mission-statement {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 19px;
  color: #333;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar {
  text-align: center;
  padding: 20px;
}

.pillar .icon-circle {
  background-color: var(--primary);
}

.pillar .icon-circle svg {
  stroke: var(--accent);
}

.pillar h3 { margin-bottom: 12px; }
.pillar p { color: #4a4a4a; font-size: 15.5px; }

.locations-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.locations-teaser img {
  border-radius: 10px;
  height: 340px;
  object-fit: cover;
  width: 100%;
}

/* ==========================================================================
   Services page
   ========================================================================== */

.services-intro {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 18px;
  color: #333;
}

.services-grid-7 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* ==========================================================================
   Patients page
   ========================================================================== */

.patients-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.patients-block.reverse {
  direction: rtl;
}

.patients-block.reverse > * {
  direction: ltr;
}

.patients-block img {
  border-radius: 10px;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 16px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
  font-size: 18px;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.plan-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 30px;
  border-top: 4px solid var(--accent);
}

.plan-card h3 { margin-bottom: 12px; font-size: 22px; }
.plan-card p { font-size: 15px; color: #4a4a4a; }

.forms-box {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  border: 2px dashed var(--accent);
}

.forms-box h3 { margin-bottom: 14px; }
.forms-box p { margin-bottom: 24px; color: #4a4a4a; }

/* FAQ Accordion */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 26px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question .plus {
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question .plus {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
}

.faq-item.open .faq-answer {
  padding: 0 26px 22px;
}

.faq-answer p {
  color: #4a4a4a;
  font-size: 15.5px;
}

/* ==========================================================================
   Locations page
   ========================================================================== */

.locations-intro {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 18px;
  color: #333;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.location-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: translateY(-6px);
}

.location-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.location-card .card-body h3 {
  margin-bottom: 4px;
  color: var(--accent);
}

.location-detail {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.location-detail svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.map-embed {
  margin-top: 60px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ==========================================================================
   Team page
   ========================================================================== */

.founder-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: center;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 50px;
  margin-bottom: 70px;
}

.silhouette {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: var(--bg-light);
  border: 4px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.silhouette svg {
  width: 55%;
  height: 55%;
  fill: var(--primary);
  opacity: 0.35;
}

.founder-card .founder-title {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 17px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.team-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 34px;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card .silhouette {
  width: 130px;
  margin: 0 auto 20px;
}

.team-card h3 { margin-bottom: 4px; font-size: 20px; }

.team-card .role {
  color: var(--accent);
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 14px;
}

.team-card p.bio {
  font-size: 14.5px;
  color: #4a4a4a;
}

.support-staff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 70px;
}

.support-staff img {
  border-radius: 10px;
  height: 360px;
  object-fit: cover;
  width: 100%;
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}

.contact-form-wrap {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 44px;
}

.form-group {
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #dfe8ea;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--text);
  background-color: var(--bg-light);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.radio-group {
  display: flex;
  gap: 30px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.radio-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.error-msg {
  color: #c0392b;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: #c0392b;
}

.form-group.invalid .error-msg {
  display: block;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  color: var(--white);
  margin-bottom: 18px;
}

.info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 15.5px;
}

.info-row:last-child { margin-bottom: 0; }

.info-row svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-row a {
  color: var(--white);
  transition: color 0.3s ease;
}

.info-row a:hover {
  color: var(--accent);
}

.contact-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 10px;
  display: block;
  box-shadow: var(--shadow);
}

/* Modal */

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background-color: var(--white);
  border-radius: 10px;
  max-width: 480px;
  width: 100%;
  padding: 44px;
  text-align: center;
  border-top: 6px solid var(--accent);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-box h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.modal-box p {
  color: #333;
  font-size: 15.5px;
  margin-bottom: 28px;
}

.modal-box .btn-primary {
  width: 100%;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .services-grid, .services-grid-7, .team-grid, .locations-grid, .testimonial-grid, .plan-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-card .silhouette { max-width: 240px; margin: 0 auto; }
}

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }

  section { padding: 56px 0; }
  .cta-section { padding: 56px 0; }
  .stats-section { padding: 50px 0; }

  .nav-menu {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background-color: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    width: 100%;
  }

  .nav-menu.open {
    max-height: 600px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
    padding: 10px 24px 0;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links a.active {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-cta {
    padding: 20px 24px 24px;
    width: 100%;
  }

  .nav-cta .btn { width: 100%; }

  .hamburger { display: flex; }

  .grid-4, .grid-3, .services-grid, .services-grid-7, .team-grid, .locations-grid, .testimonial-grid, .plan-cards, .pillars-grid {
    grid-template-columns: 1fr;
  }

  .two-col, .locations-teaser, .patients-block, .contact-layout, .support-staff {
    grid-template-columns: 1fr;
  }

  .patients-block.reverse {
    direction: ltr;
  }

  .patients-block img { order: -1; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .hero { min-height: 480px; }
  .page-hero { min-height: 320px; }

  .founder-card { padding: 30px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
}
