/* =========================
   Global
========================= */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

section {
  padding: 60px 20px;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: #004aad;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.section-heading {
  margin-bottom: 40px;
}

.footer-copy {
  text-align: center;
  margin-top: 20px;
}

.map-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 25px;
}

/* =========================
   Header / Navigation
========================= */
header {
  background: #004aad;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  padding: 8px 12px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
}

nav a:hover {
  text-decoration: underline;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #ffffff;
  min-width: 230px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  overflow: hidden;
  z-index: 1000;
  text-align: left;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-content a {
  color: #222;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-content a:hover {
  background: #f4f6f8;
}

.dropdown.open .dropdown-content {
  display: block;
}

@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/* =========================
   Hero
========================= */
.hero {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  max-width: 850px;
  margin: 0 auto;
}

/* =========================
   Promo Video
========================= */
#promo-video {
  margin: 0;
  padding: 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  z-index: 2;
  padding: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.video-overlay h2 {
  font-size: 2.5rem;
  margin: 0 0 10px;
}

.video-overlay p {
  font-size: 1.2rem;
  margin: 0 0 15px;
}

.call-button {
  display: inline-block;
  background-color: red;
  color: #fff;
  padding: 12px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  margin: 0 auto;
  transition: background 0.3s ease;
}

.call-button:hover {
  background-color: #cc0000;
}

/* =========================
   Breadcrumbs
========================= */
.breadcrumbs {
  background: #f5f7fa;
  border-bottom: 1px solid #e3e8ee;
  padding: 10px 20px;
}

.breadcrumbs-container {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 14px;
  color: #555;
}

.breadcrumbs a {
  color: #004aad;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  margin: 0 6px;
}

/* =========================
   City Banner
========================= */
.city-banner {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #0f2f52;
}

.city-banner-image {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   Footer
========================= */
footer {
  background: #004aad;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

footer a {
  color: #fff;
}

/* =========================
   General Form Defaults
========================= */
form {
  max-width: 600px;
  margin: 20px auto;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

form button {
  background: #004aad;
  color: #fff;
  border: none;
  padding: 14px 20px;
  cursor: pointer;
  border-radius: 6px;
}

form button:hover {
  background: #0066dd;
}

/* =========================
   Estimate Form Section
========================= */
.estimate-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #163a63 0%, #245d94 100%);
}

.estimate-card {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  padding: 0 0 36px;
}

.estimate-accent {
  height: 8px;
  background: linear-gradient(90deg, #f4b400 0%, #ffcc33 100%);
}

.estimate-card h2 {
  text-align: center;
  font-size: 2rem;
  color: #163a63;
  margin: 30px 20px 10px;
}

.estimate-subtitle {
  text-align: center;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 22px;
  padding: 0 20px;
}

.estimate-contact-bar {
  margin: 0 30px 28px;
  padding: 14px 18px;
  background: #f3f8fc;
  border: 1px solid #d6e5f3;
  border-radius: 10px;
  text-align: center;
  font-size: 1rem;
  color: #234;
}

.estimate-contact-bar a {
  color: #163a63;
  font-weight: 700;
  margin-left: 8px;
}

.estimate-contact-bar a:hover {
  text-decoration: underline;
}

.estimate-contact-bar a::before {
  content: "☎";
  color: #e63946;
  margin-right: 8px;
  font-size: 18px;
  font-weight: bold;
}

.estimate-trust {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.estimate-trust li {
  font-weight: 600;
  color: #163a63;
  font-size: 15px;
}

.estimate-trust li::before {
  content: "✔";
  color: #2ecc71;
  margin-right: 8px;
  font-size: 18px;
  font-weight: bold;
}

.estimate-form {
  padding: 0 30px;
  max-width: none;
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.estimate-form input,
.estimate-form textarea {
  width: 100%;
  padding: 15px 16px;
  font-size: 16px;
  font-family: inherit;
  color: #222;
  background: #fff;
  border: 1px solid #ccd6e0;
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
  margin: 0;
}

.estimate-form input::placeholder,
.estimate-form textarea::placeholder {
  color: #7a7a7a;
}

.estimate-form input:focus,
.estimate-form textarea:focus {
  outline: none;
  border-color: #245d94;
  box-shadow: 0 0 0 4px rgba(36, 93, 148, 0.12);
  background: #fcfeff;
}

.estimate-form textarea {
  resize: vertical;
  min-height: 140px;
}

.estimate-button {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 17px 20px;
  background: linear-gradient(90deg, #f4b400 0%, #ffcc33 100%);
  color: #163a63;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 10px 20px rgba(244, 180, 0, 0.25);
}

.estimate-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(244, 180, 0, 0.3);
}

.estimate-button:active {
  transform: translateY(0);
}

.estimate-note {
  text-align: center;
  margin: 14px 0 0;
  font-size: 13px;
  color: #666;
}

.estimate-reassurance {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin: 0 0 14px;
}

.honeypot-field {
  display: none;
}

.form-success-message {
  max-width: 760px;
  margin: 0 auto 20px;
  padding: 14px 18px;
  background: #eaf8ec;
  border: 1px solid #b9e2c0;
  color: #1f5f2c;
  border-radius: 10px;
  font-size: 15px;
  text-align: center;
}

/* =========================
   Bottom Lead Form
========================= */
.bottom-lead-form {
  background: #004aad;
  padding: 35px 20px 50px;
}

.bottom-lead-container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.bottom-lead-container h2 {
  color: #fff;
  font-size: 2rem;
  margin: 0 0 10px;
}

.bottom-lead-container p {
  color: #dfeaf7;
  margin: 0 0 22px;
  font-size: 1rem;
}

.bottom-form {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.bottom-form input,
.bottom-form textarea {
  width: 100%;
  padding: 15px 16px;
  font-size: 16px;
  font-family: inherit;
  color: #222;
  background: #ffffff;
  border: 1px solid #ccd6e0;
  border-radius: 10px;
  box-sizing: border-box;
  margin: 0;
}

.bottom-form input::placeholder,
.bottom-form textarea::placeholder {
  color: #7a7a7a;
}

.bottom-form input:focus,
.bottom-form textarea:focus {
  outline: none;
  border-color: #245d94;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.bottom-form textarea {
  resize: vertical;
  min-height: 130px;
}

.bottom-form button {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 16px 20px;
  background: linear-gradient(90deg, #f4b400 0%, #ffcc33 100%);
  color: #163a63;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(244, 180, 0, 0.25);
}

.bottom-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(244, 180, 0, 0.3);
}

.bottom-form .honeypot-field {
  display: none;
}

/* =========================
   Features Section Home
========================= */
#features {
  background: #f9f9f9;
}

#features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 20px;
}

#features .card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

#features .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

#features img {
  width: 90%;
  max-width: 240px;
  height: auto;
  margin: 0 auto 25px;
  border-radius: 10px;
  border: 2px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#features h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #004aad;
}

#features p {
  font-size: 1rem;
  color: #444;
}

/* =========================
   SEO Content
========================= */
.seo-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  line-height: 1.75;
  font-size: 17px;
  color: #333;
}

.main-seo-heading {
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 20px;
  color: #111;
}

.seo-content h2 {
  margin-top: 35px;
  margin-bottom: 12px;
  font-size: 24px;
  color: #111;
}

.seo-content ul {
  padding-left: 22px;
  margin: 15px 0 20px;
}

.seo-content li {
  margin-bottom: 8px;
}

/* =========================
   Map Section
========================= */
.map-section {
  max-width: 1000px;
  margin: 50px auto 60px;
  padding: 0 20px;
}

.map-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #163a63;
}

.map-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* =========================
   Service Areas Footer SEO
========================= */
.service-areas-bottom {
  max-width: 900px;
  margin: 40px auto 10px;
  padding: 0 20px;
  text-align: center;
}

.service-areas-bottom h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #163a63;
}

.service-areas-bottom p {
  color: #555;
  margin-bottom: 20px;
}

.service-area-links {
  list-style: none;
  padding: 0;
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.service-area-links li a {
  display: block;
  padding: 12px;
  background: #f5f7fa;
  border-radius: 8px;
  text-decoration: none;
  color: #004aad;
  font-weight: 600;
}

.service-area-links li a:hover {
  background: #e8eef7;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  section {
    padding: 45px 15px;
  }

  header {
    position: sticky;
    top: 0;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    padding: 10px 8px;
    font-size: 14px;
  }

  nav a,
  .dropdown-toggle {
    display: inline-block;
    padding: 4px 2px;
  }

  .dropdown-content {
    left: 0;
    transform: none;
    min-width: 220px;
  }

  .video-wrapper video {
    min-height: 260px;
  }

  .video-overlay {
    padding: 14px;
  }

  .video-overlay h2 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .video-overlay p {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .call-button {
    font-size: 0.95rem;
    padding: 10px 16px;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .estimate-section {
    padding: 50px 15px;
  }

  .estimate-card h2 {
    font-size: 1.7rem;
  }

  .estimate-contact-bar {
    margin-left: 18px;
    margin-right: 18px;
  }

  .estimate-form {
    padding: 0 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bottom-lead-form {
    padding: 30px 15px 40px;
  }

  .bottom-lead-container h2 {
    font-size: 1.7rem;
  }

  #features .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #features .card {
    padding: 30px 20px;
  }

  #features img {
    max-width: 180px;
  }

  #features h3 {
    font-size: 1.4rem;
  }

  .seo-content {
    font-size: 16px;
    margin: 45px auto;
  }

  .main-seo-heading {
    font-size: 28px;
  }

  .seo-content h2,
  .map-section h2,
  .service-areas-bottom h2 {
    font-size: 1.7rem;
  }

  .service-area-links {
    grid-template-columns: 1fr;
  }

  form {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  form input,
  form textarea,
  form button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  nav {
    font-size: 13px;
    gap: 6px 10px;
  }

  .dropdown-content {
    min-width: 200px;
  }

  .video-wrapper video {
    min-height: 220px;
  }

  .video-overlay {
    padding: 12px;
  }

  .video-overlay h2 {
    font-size: 1.3rem;
  }

  .video-overlay p {
    font-size: 0.88rem;
  }

  .call-button {
    font-size: 0.9rem;
    padding: 9px 14px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .estimate-card h2,
  .bottom-lead-container h2 {
    font-size: 1.5rem;
  }

  .estimate-subtitle,
  .bottom-lead-container p,
  .estimate-reassurance {
    font-size: 0.95rem;
  }

  .main-seo-heading {
    font-size: 25px;
  }

  .seo-content h2,
  .map-section h2,
  .service-areas-bottom h2 {
    font-size: 1.5rem;
  }
}