:root {
  --navy: #0b2a5b;
  --orange: #f15a24;
  --soft-orange: #fff2ec;
  --white: #ffffff;
  --light: #f7f8fb;
  --text: #263238;
  --muted: #667085;
  --border: #e5e7eb;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.nav {
  max-width: 1180px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--navy); }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.nav-links { display: flex; gap: 22px; color: var(--navy); font-weight: 600; }

.btn {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(241,90,36,0.25);
}
.btn-small { padding: 10px 16px; }
.btn-outline { background: white; color: var(--navy); border: 2px solid var(--navy); box-shadow: none; }

.hero {
  max-width: 1180px;
  margin: auto;
  padding: 72px 24px 34px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(44px, 7vw, 76px);
  line-height: .95;
  margin: 10px 0 20px;
  color: var(--navy);
}

.hero-text { font-size: 19px; color: var(--muted); max-width: 690px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.8px;
  font-size: 13px;
}

.top-map-card, .info-box, .embed-box, .map-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(11,42,91,0.08);
}
.top-map-card h3, .info-box h3 { color: var(--navy); margin-top: 0; }

.mini-map-placeholder {
  min-height: 260px;
  border-radius: 20px;
  border: 2px dashed #c9d2df;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: white;
}

.quick-info {
  max-width: 1180px;
  margin: 0 auto 26px;
  padding: 0 24px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quick-info div {
  background: var(--navy);
  color: white;
  padding: 18px 20px;
  border-radius: 20px;
}
.quick-info strong { display: block; color: white; margin-bottom: 4px; }
.quick-info span { color: rgba(255,255,255,.86); font-size: 14px; }

.section {
  max-width: 1180px;
  margin: auto;
  padding: px 24px;
  text-align: center;
}

.section h2, .split-section h2, .contact-section h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin: 8px 0 22px;
}
.section-intro { color: var(--muted); max-width: 780px; margin: 0 auto; }

.service-grid.detailed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.service-card {
  text-align: left;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: white;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(11,42,91,0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(11,42,91,0.10);
}
.service-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  display: block;
}
.service-card h3 {
  color: var(--navy);
  margin: 22px 24px 8px;
  font-size: 24px;
}
.service-card p {
  margin: 0 24px 26px;
  color: var(--muted);
}

.appointment-section {
    background: linear-gradient(135deg, var(--soft-orange), white);
    max-width: none;
    text-align: center;
}

.appointment-section > * { max-width: 700px; margin-left: auto; margin-right: auto; }

.embed-box {
  min-height: 360px;
  display: grid;
  place-items: center;
  margin-top: 30px;
  background: white;
}
.booking-frame, .map-frame, .top-map-frame {
  width: 100%;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(11,42,91,0.08);
}

.split-section {
  max-width: 1180px;
  margin: auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 30px;
  align-items: center;
}
.checklist { padding-left: 0; list-style: none; }
.checklist li { margin: 10px 0; }
.checklist li::before { content: "✓"; color: var(--orange); font-weight: 900; margin-right: 10px; }
.note { color: var(--muted); font-size: 14px; }

.contact-section {
  max-width: 1180px;
  margin: auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.map-box {
  min-height: 390px;
  display: grid;
  place-items: center;
  color: var(--muted);
}
.contact-strip {
  background: var(--soft-orange);
  max-width: none;
}

footer {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 24px;
}

@media (max-width: 900px) {
  .nav { flex-wrap: wrap; }
  .nav-links { display: none; }
  .hero, .split-section, .contact-section { grid-template-columns: 1fr; }
  .quick-info { grid-template-columns: 1fr; }
  .service-grid.detailed { grid-template-columns: 1fr; }
}

.technology-section {
  background: linear-gradient(135deg, #ffffff, var(--soft-orange));
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px auto 36px;
  max-width: 900px;
}

.tech-badges span {
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.technology-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  text-align: left;
  box-shadow: 0 12px 28px rgba(11,42,91,0.06);
}

.tech-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--soft-orange);
  font-size: 28px;
  margin-bottom: 16px;
}

.technology-card h3 {
  color: var(--navy);
  margin: 0 0 10px;
}

.technology-card p {
  color: var(--muted);
  margin: 0;
}

.languages-section {
  background: white;
  color: white;
  padding: 58px 24px;
}

.languages-content {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.languages-section h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  margin: 8px 0 18px;
}

.languages-section p {
  color: rgba(255,255,255,.86);
  font-size: 18px;
}

.language-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.language-list span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 18px;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

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

@media (max-width: 560px) {
  .technology-grid { grid-template-columns: 1fr; }
  .language-list { grid-template-columns: 1fr; }
}

/* V5 premium technology icons and added conversion sections */
.premium-tech {
  grid-template-columns: repeat(3, 1fr);
}

.premium-tech .technology-card img {
  width: 74px;
  height: 74px;
  display: block;
  margin-bottom: 16px;
}

.tech-icon {
  display: none;
}

.reviews-section {
  max-width: 1180px;
  margin: auto;
  padding: 64px 24px;
}

.reviews-content {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
}

.reviews-section h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin: 8px 0 18px;
}

.review-score-card {
  background: var(--navy);
  color: white;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(11,42,91,0.14);
}

.review-score-card h3 {
  margin: 8px 0;
  font-size: 28px;
}

.review-score-card p {
  color: rgba(255,255,255,.84);
}

.stars {
  color: #f15a24 !important;
  font-size: 26px;
  letter-spacing: 3px;
}

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

.testimonial-grid article {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(11,42,91,0.05);
}

.testimonial-grid p {
  color: var(--muted);
  margin-top: 0;
}

.testimonial-grid strong {
  color: var(--navy);
}

.insurance-section {
  background: #ffffff;
}

@media (max-width: 900px) {
  .premium-tech { grid-template-columns: repeat(2, 1fr); }
  .reviews-content { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

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


.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  justify-items: center;
  align-items: start;
}

.doctor-card {
  text-align: center;
  width: 260px;
}

.doctor-photo {
  width: 260px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin: 15px auto 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.doctor-bio {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-top: 10px;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.doctor-card {
    transition: transform 0.3s ease;
}

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

.doctor-photo {
    transition: transform 0.3s ease;
}

.doctor-card:hover .doctor-photo {
    transform: scale(1.03);
}

.quick-info span {
    display: block;
    margin-top: 6px;
    line-height: 1.4;
}
.quick-info span {
    display: block;
    margin-top: 8px;
    line-height: 1.5;
}

.quick-info a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.quick-info a:hover {
    opacity: 0.8;
    text-decoration: underline;
}





/* FIX REVIEWS SECTION */
.reviews-section {
  background: white !important;
}

.reviews-content {
  display: block !important;
  background: white !important;
}

.reviews-content > div:first-child {
  background: white !important;
  color: var(--navy) !important;
  margin-bottom: 24px;
}

.reviews-content > div:first-child p {
  color: var(--muted) !important;
}

.review-score-card {
  background: var(--navy) !important;
  color: white !important;
  margin-bottom: 28px;
}

.review-score-card p {
  color: rgba(255,255,255,.84) !important;
}

.stars {
  color: #f15a24 !important;
}

.testimonial-grid {
  background: white !important;
}

.testimonial-grid article {
  background: white !important;
}

/* FORCE TECHNOLOGY AREA WHITE */
section#technology,
section#technology .section {
  background: #ffffff !important;
  color: var(--navy) !important;
}

section#technology .eyebrow {
  color: #f15a24 !important;
}

section#technology h2,
section#technology p {
  color: var(--navy) !important;
}

section#technology .section-intro {
  color: var(--muted) !important;
}

.tech-badges {
    background: white !important;
}


.technology-grid,
.premium-tech,
.technology-section {
    background: white !important;
}
.service-grid,
.service-grid.detailed,
.services-section {
    background: white !important;
}
#appointments .embed-box,
#appointments .booking-box,
#appointments .appointment-box {
    background: white !important;
    color: var(--navy) !important;
}
#about .info-box {
    background: white !important;
}

#about .doctor-grid {
    background: white !important;
}
/* MAKE DOCTOR CARDS WHITE */
#about .doctor-card {
  background: white !important;
  color: var(--navy) !important;
  border: 1px solid var(--border) !important;
}

#about .doctor-card strong,
#about .doctor-card p {
  color: var(--navy) !important;
}
.doctor-card {
    padding: 30px !important;
    min-height: 650px !important;
}

.doctor-photo {
    width: 100% !important;
    max-width: 320px !important;
    display: block;
    margin: 0 auto 20px auto;
}
#location,
#location .contact-section,
#location .map-box,
#location .info-box,
#location > div {
  background: white !important;
  color: var(--navy) !important;
}

#location h2,
#location h3,
#location p,
#location strong {
  color: var(--navy) !important;
}
#location p,
#location a,
#location span {
  color: var(--navy) !important;
}
#location .eyebrow,
.contact-section .eyebrow {
    color: #ff6b35 !important;
    opacity: 1 !important;
}
#about div {
    background: white !important;
}
#about p,
#about li,
#about h2 {
    color: var(--navy) !important;
}
#about .eyebrow {
    color: #ff6b35 !important;
}
#insurance .info-grid,
#insurance .info-grid div {
  background: white !important;
  color: var(--navy) !important;
}

#insurance .info-grid h3,
#insurance .info-grid p {
  color: var(--navy) !important;
}
#contact.contact-strip {
  max-width: none !important;
  width: 100% !important;
  background: #fff2ec !important;
  padding: 70px 40px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  text-align: center !important;
}
#location.contact-section {
  border: 2px solid #f15a24 !important;
  border-radius: 24px !important;
  padding: 60px 48px !important;
  margin: 60px auto !important;
  max-width: 900px !important;
  background: white !important;
}


/* MOBILE FIXES */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .site-header,
  .nav {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
  }

  .hero,
  .split-section,
  .contact-section,
  .quick-info,
  .technology-grid,
  .service-grid,
  .doctor-grid,
  .review-grid,
  .info-grid {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  section {
    padding: 45px 18px !important;
  }

  h1,
  h2 {
    font-size: 34px !important;
    line-height: 1.1 !important;
    text-align: center;
  }

  .eyebrow,
  .section-intro,
  p {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .service-card,
  .doctor-card,
  .technology-card,
  .review-card,
  .embed-box,
  .map-box {
    width: 100% !important;
    max-width: 100% !important;
    margin: 18px auto !important;
  }

  img,
  iframe {
    max-width: 100% !important;
  }

  .map-frame,
  .top-map-frame,
  .booking-frame {
    width: 100% !important;
    height: 360px !important;
  }

  .doctor-photo {
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    margin: 0 auto 20px !important;
  }

  .btn,
  .btn-small {
    display: inline-block;
    text-align: center;
  }

  footer {
    text-align: center;
    padding: 30px 18px !important;
  }
}
/* SERVICES SPACING FIX */

#services {
    margin-top: -160px !important;
    padding-top: 0 !important;
}

.quick-info {
    margin-bottom: 0 !important;
}

.hero {
    margin-bottom: 0 !important;
}

/* MOBILE FIX: blue boxes + service image text overlap */
@media (max-width: 768px) {

  .quick-info {
    display: block !important;
    gap: 0 !important;
    padding: 0 18px 25px !important;
  }

  .quick-info div {
    width: 100% !important;
    margin: 0 0 12px 0 !important;
    padding: 22px 24px !important;
    border-radius: 22px !important;
    box-sizing: border-box !important;
  }

  .quick-info div:last-child {
    margin-bottom: 0 !important;
  }

  .service-card {
    overflow: visible !important;
  }

  .service-card img {
    width: 100% !important;
    height: 220px !important;
    object-fit: contain !important;
    display: block !important;
    padding: 20px !important;
    box-sizing: border-box !important;
  }

  .service-card h3 {
    margin-top: 22px !important;
  }

  .service-card p {
    position: static !important;
    margin: 0 24px 28px !important;
    line-height: 1.45 !important;
  }
}
@media (max-width: 768px) {

  .top-map-card,
  .office-card,
  .map-card {
    margin-top: 40px !important;
  }

}
@media (max-width: 768px) {
  #services {
    margin-top: -650px !important;
    padding-top: 0 !important;
  }
}

/* MOBILE MENU */
.mobile-menu-btn {
  display: none;
}

@media (max-width: 768px) {
  .nav {
    position: relative !important;
  }

  .mobile-menu-btn {
    display: block !important;
    position: absolute !important;
    right: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 30px !important;
    background: white !important;
    color: var(--navy) !important;
    border: 1px solid var(--border) !important;
    border-radius: 14px !important;
    padding: 10px 14px !important;
    cursor: pointer !important;
  }

  .nav-links {
    display: none !important;
    position: absolute !important;
    top: 85px !important;
    right: 18px !important;
    width: 230px !important;
    background: white !important;
    padding: 16px !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 28px rgba(11,42,91,.15) !important;
    text-align: center !important;
    z-index: 9999 !important;
  }

  .nav-links.show {
    display: grid !important;
    gap: 12px !important;
  }
}


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

section {
  scroll-margin-top: 40px;
}