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

.header-name-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.header-schedule-btn {
  background: #c41e3a;
  color: #fce7e9;
  border: none;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.3;
  display: inline-block;
}

.header-schedule-btn:hover {
  background: #e74c3c;
  color: #fff;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0a2463;
  color: white;
  line-height: 1.6;
}

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

#services,
#gallery,
#reviews,
#service-areas,
#contact {
  scroll-margin-top: 138px;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #0a2463;
  border-bottom: 1px solid #1a3a52;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  padding: 20px 0;
  align-items: start;
}

.logo {
  display: contents;
}

.logo img {
  height: 300px;
  width: auto;
}

.logo h1 {
  font-size: 28px;
  margin-bottom: 4px;
  margin: 0;
}

.logo p {
  color: #dbeafe;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

nav a {
  color: #e2e8f0;
  transition: 0.3s;
  font-weight: bold;
}

nav a:hover {
  color: #c41e3a;
}

.nav-dropdown {
  position: relative;
}

.nav-drop-link::after {
  content: " \25BE";
  font-size: 10px;
  margin-left: 6px;
  opacity: 0.9;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  max-height: none;
  overflow: visible;
  display: none;
  background: #ffffff;
  border: 1px solid #d7e3f3;
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(13, 31, 56, 0.18);
  padding: 8px;
  z-index: 1100;
}

.nav-subdropdown {
  width: 100%;
}

.nav-subdropdown > .nav-drop-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-subdrop-link::after {
  content: "\25B8";
  font-size: 10px;
  margin-left: 8px;
  opacity: 0.9;
}

.nav-subdropdown > .nav-dropdown-menu {
  position: absolute;
  top: 0;
  left: calc(100% + 8px);
  display: none;
  width: 300px;
  min-width: 300px;
  max-height: none;
  overflow: visible;
  margin: 0;
  padding: 8px;
  background: #f7fbff;
  border-color: #dfe8f5;
  box-shadow: none;
  z-index: 1200;
}

.nav-subdropdown:hover > .nav-dropdown-menu,
.nav-subdropdown:focus-within > .nav-dropdown-menu {
  display: block;
}

body.nav-click-only .nav-subdropdown:hover > .nav-dropdown-menu,
body.nav-click-only .nav-subdropdown:focus-within > .nav-dropdown-menu {
  display: none;
}

body.nav-click-only .nav-subdropdown.is-open > .nav-dropdown-menu {
  display: block;
}

.nav-subsubmenu,
.nav-submenu a {
  font-size: 12px;
}

.nav-dropdown-menu > .nav-dropdown {
  width: 100%;
}

.nav-submenu {
  overflow: visible;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

body.nav-click-only .nav-dropdown:hover .nav-dropdown-menu,
body.nav-click-only .nav-dropdown:focus-within .nav-dropdown-menu {
  display: none;
}

body.nav-click-only .nav-dropdown.is-open > .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  color: #13304f;
  font-size: 13px;
  padding: 9px 11px;
  border-radius: 9px;
  white-space: normal;
  line-height: 1.35;
}

.nav-dropdown-menu a:hover {
  background: #eaf3ff;
  color: #0d1f38;
}

.nav-dropdown-menu .menu-group-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5d7290;
  margin: 10px 8px 4px;
  padding-top: 8px;
  border-top: 1px solid #e7effa;
}

.nav-dropdown-menu .menu-group-label:first-child {
  margin-top: 2px;
  padding-top: 0;
  border-top: none;
}

.nav-dropdown-wide .nav-dropdown-menu {
  min-width: 300px;
}

.hero {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(196,30,58,0.12), rgba(10,36,99,0.12));
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(196,30,58,0.15);
  border: 1px solid rgba(196,30,58,0.4);
  color: #c41e3a;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-size: 14px;
}

.hero h2 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero p {
  color: #cbd5e1;
  margin-bottom: 32px;
  font-size: 18px;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
}

.btn-primary {
  background: #c41e3a;
  color: white;
}

.btn-primary:hover {
  background: #e74c3c;
}

.btn-secondary {
  border: 1px solid #c41e3a;
}

.btn-secondary:hover {
  border-color: #e74c3c;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: #1a3a52;
  border: 1px solid #1a3a52;
  padding: 28px;
  border-radius: 24px;
}

.feature-card h3 {
  margin: 16px 0 12px;
  font-size: 22px;
}

.feature-card p {
  color: #94a3b8;
  font-size: 15px;
}

section {
  padding: 90px 0;
}

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

.section-title p {
  color: #c41e3a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 14px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 18px;
}

.section-title span {
  color: #94a3b8;
  max-width: 800px;
  display: block;
  margin: auto;
}

.services-grid,
.gallery-grid,
.reviews-grid,
.town-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: #1a3a52;
  border: 1px solid #1a3a52;
  border-radius: 24px;
  padding: 28px;
  transition: 0.3s;
}

.card:hover {
  border-color: rgba(196,30,58,0.8);
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 16px;
  font-size: 24px;
}

.card p {
  color: #94a3b8;
  font-size: 15px;
}

.about {
  background: #0a2463;
  border-top: 1px solid #1a3a52;
  border-bottom: 1px solid #1a3a52;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
}

.stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-box {
  background: #0a2463;
  border: 1px solid #1a3a52;
  border-radius: 20px;
  padding: 24px;
  flex: 1;
  min-width: 180px;
}

.stat-box h4 {
  color: #c41e3a;
  font-size: 36px;
}

.gallery-box {
  overflow: hidden;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.before,
.after {
  padding: 24px;
  text-align: center;
}

.before {
  background: #1a3a52;
  border-right: 1px solid #2d4a6f;
}

.after {
  background: #0f2d5a;
}

.placeholder {
  background: #1a3a52;
  height: 180px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  color: #cbd5e1;
  font-size: 14px;
}

.review-widget {
  background: #08111f;
  border: 1px solid #1a3a52;
  border-radius: 24px;
  padding: 12px;
  margin-top: 40px;
  overflow: hidden;
}

.review-widget iframe {
  width: 100%;
  min-height: 680px;
  border: none;
  display: block;
}

.service-areas-copy {
  max-width: 980px;
  margin: 0 auto 28px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}

.location-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #e2e8f0;
  border: 1px solid #1a3a52;
  background: rgba(15, 45, 90, 0.45);
  font-weight: 600;
  transition: all 0.2s ease;
}

.location-link:hover {
  color: #ffffff;
  border-color: #c41e3a;
  background: rgba(196, 30, 58, 0.18);
}

.location-link .pin {
  color: #c41e3a;
  font-size: 16px;
  line-height: 1;
}

.town-card {
  margin-top: 20px;
  width: 100%;
  background: #c41e3a;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 14px;
  font-weight: bold;
  cursor: pointer;
}

.town-card:hover {
  background: #e74c3c;
}

a.town-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.town-card:hover {
  text-decoration: none;
}

a.town-card button {
  margin-top: 20px;
  width: 100%;
  background: #c41e3a;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 14px;
  font-weight: bold;
  cursor: pointer;
}

.town-card button:hover {
  background: #e74c3c;
}

.cta {
  background: #c41e3a;
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 44px;
  margin-bottom: 24px;
}

.cta p {
  max-width: 800px;
  margin: auto auto 32px;
  font-size: 18px;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

a[aria-label="Facebook"] {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  min-width: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

a[aria-label="Facebook"] img {
  width: 30px;
  height: 30px;
  display: block;
}

footer {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid #1a3a52;
  color: #9ca3af;
  font-size: 14px;
}

@media (max-width: 768px) {
  .navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    text-align: center;
  }

  .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .logo img {
    height: 50px;
  }

  .logo h1 {
    font-size: 18px;
  }

  .logo p {
    font-size: 11px;
  }

  .header-name-row {
    justify-content: center;
  }

  .header-schedule-btn {
    font-size: 12px !important;
    padding: 7px 13px !important;
  }

  header {
    position: static;
  }

  nav {
    justify-content: center;
    gap: 14px;
    font-size: 14px;
  }

  .nav-subdropdown > .nav-dropdown-menu {
    position: static;
    width: calc(100% - 12px);
    left: auto;
    margin: 6px 0 6px 12px;
    display: none;
  }

  body.nav-click-only .nav-subdropdown.is-open > .nav-dropdown-menu {
    display: block;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h2 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .feature-grid,
  .before-after {
    grid-template-columns: 1fr;
  }

  section {
    padding: 56px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .about-grid {
    gap: 32px;
  }

  .stats {
    gap: 12px;
  }

  .stat-box {
    min-width: unset;
    flex: 1 1 calc(50% - 6px);
  }

  .stat-box h4 {
    font-size: 28px;
  }

  .cta h2 {
    font-size: 28px;
  }

  .cta p {
    font-size: 16px;
  }

  .footer-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .review-widget iframe {
    min-height: 560px;
  }

  .service-areas-copy {
    font-size: 16px;
    text-align: left;
  }

  .location-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 52px;
  }

  .logo h1 {
    font-size: 17px;
  }

  nav {
    gap: 10px;
    font-size: 13px;
  }

  .nav-subdropdown > .nav-dropdown-menu {
    position: static;
    width: calc(100% - 8px);
    left: auto;
    margin: 6px 0 6px 8px;
    display: none;
  }

  body.nav-click-only .nav-subdropdown.is-open > .nav-dropdown-menu {
    display: block;
  }

  .nav-subdropdown > .nav-drop-link {
    gap: 10px;
  }

  .hero {
    padding: 44px 0;
  }

  .hero h2 {
    font-size: 26px;
  }

  section {
    padding: 44px 0;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .card h3 {
    font-size: 20px;
  }

  .cta h2 {
    font-size: 24px;
  }

  .stat-box {
    flex: 1 1 100%;
  }

  .review-widget iframe {
    min-height: 500px;
  }
}

/* Updated light theme + header/footer refresh */
body {
  background: #f6f8fc;
  color: #10243f;
}

header {
  background: #0d1f38;
  border-bottom: 1px solid #1f3655;
}

.topbar {
  background: #091427;
  border-bottom: 1px solid #1f3655;
  color: #c8d6ea;
  font-size: 13px;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-links a {
  color: #e5efff;
  opacity: 0.95;
}

.topbar-links a:hover {
  color: #7dc3ff;
}

.logo img {
  height: 86px;
  width: auto;
  grid-row: 1 / 3;
  grid-column: 1;
  align-self: center;
}

.logo > div {
  grid-row: 1;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo h1 {
  color: #f4f8ff;
}

nav a {
  color: #e5efff;
}

nav a:hover {
  color: #7dc3ff;
}

.hero {
  background: linear-gradient(135deg, #eef4ff, #dde9ff);
}

.hero p,
.card p,
.service-areas-copy,
.section-title span {
  color: #46607f;
}

section:nth-of-type(odd) {
  background: #f6f8fc;
}

section:nth-of-type(even) {
  background: #ffffff;
}

.about {
  background: #ffffff;
  border-top: 1px solid #d7e3f3;
  border-bottom: 1px solid #d7e3f3;
}

.card,
.feature-card,
.review-widget,
.location-link,
.stat-box {
  background: #ffffff;
  border: 1px solid #d7e3f3;
  color: #10243f;
}

.card:hover,
.feature-card:hover,
.location-link:hover {
  border-color: #7dc3ff;
}

.footer-buttons .btn {
  border: none;
}

footer {
  background: #0d1f38;
  border-top: 1px solid #1f3655;
  color: #c8d6ea;
  padding: 44px 20px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  text-align: left;
}

.footer-grid h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-grid p,
.footer-grid a {
  color: #d5e3f7;
  font-size: 14px;
  line-height: 1.6;
}

.footer-grid a:hover {
  color: #7dc3ff;
}

.footer-copy {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #1f3655;
  color: #a7bedc;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 768px) {
  .topbar-inner {
    min-height: unset;
    padding: 10px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-links {
    gap: 10px;
  }

  .footer-grid {
    text-align: center;
  }
}

/* Second pass polish: nav clarity, footer spacing, section contrast */
.topbar,
body,
p,
a,
li,
span,
input,
button,
textarea {
  font-family: "Nunito Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo h1,
.section-title h2,
.hero h2,
.cta h2 {
  font-family: "Sora", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.015em;
}

h1 {
  font-weight: 750;
  line-height: 1.08;
}

h2 {
  font-weight: 720;
  line-height: 1.16;
}

h3 {
  font-weight: 700;
  line-height: 1.24;
}

p,
.card p,
.hero p,
.service-areas-copy,
.footer-grid p {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.002em;
}

.section-title p {
  font-weight: 800;
  letter-spacing: 0.14em;
}

.btn,
nav a {
  font-weight: 780;
  letter-spacing: 0.02em;
  text-transform: none;
}

.navbar {
  padding: 14px 0;
}

nav {
  gap: 20px;
  grid-row: 2;
  grid-column: 2;
}

#services,
#service-areas {
  background: #ffffff;
}

#reviews,
.about {
  background: #f1f5fc;
}

.about .about-lead {
  color: #203754;
  font-weight: 600;
}

#gallery.before-after-gallery {
  background: #eaf1fb;
}

#contact.cta {
  background: linear-gradient(145deg, #bf1938, #8f122a);
}

footer {
  padding: 40px 20px 20px;
}

.footer-grid {
  gap: 18px;
}

.footer-copy {
  margin-top: 18px;
  padding-top: 12px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 176px;
  }

  #services,
  #gallery,
  #reviews,
  #service-areas,
  #contact {
    scroll-margin-top: 176px;
  }

  h1 {
    line-height: 1.1;
  }

  h2 {
    line-height: 1.2;
  }

  p,
  .card p,
  .hero p,
  .service-areas-copy,
  .footer-grid p {
    font-size: 15px;
    line-height: 1.62;
  }

  nav {
    width: 100%;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  nav a {
    font-size: 13px;
    padding: 6px 10px;
  }

  .nav-dropdown {
    width: auto;
  }

  footer {
    padding: 28px 16px 16px;
  }

  .footer-grid {
    gap: 10px;
  }

  .footer-grid h3 {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .footer-grid p,
  .footer-grid a {
    font-size: 13px;
    line-height: 1.45;
  }

  .footer-copy {
    margin-top: 12px;
    padding-top: 10px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  html {
    scroll-padding-top: 190px;
  }

  #services,
  #gallery,
  #reviews,
  #service-areas,
  #contact {
    scroll-margin-top: 190px;
  }

  h1,
  h2,
  h3 {
    letter-spacing: -0.01em;
  }

  p,
  .card p,
  .hero p,
  .service-areas-copy,
  .footer-grid p {
    font-size: 14px;
    line-height: 1.58;
  }

  nav {
    padding: 6px;
    gap: 4px;
  }

  nav a {
    font-size: 12px;
    padding: 7px 8px;
  }

  .nav-dropdown-menu a {
    font-size: 12px;
    padding: 8px 10px;
  }

  .nav-dropdown-menu .menu-group-label {
    font-size: 10px;
    margin: 8px 6px 4px;
    padding-top: 6px;
  }

  .footer-grid {
    gap: 8px;
  }
}
