:root {
      --navy: #283747;
      --deep-navy: #1D2D44;
      --white: #ffffff;
      --soft: #F5F7FA;
      --gray: #5D6978;
      --line: #D9E1EA;
      --accent: #007BFF;
      --gold: #B89B5E;
      --shadow: 0 28px 70px rgba(29,45,68,0.12);
    }

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

    body {
      font-family: Montserrat, Arial, Helvetica, sans-serif;
      background: var(--white);
      color: var(--deep-navy);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
    }

    .page {
      min-height: 100vh;
    }

    header {
      padding: 22px 7%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--line);
      background: rgba(255,255,255,0.96);
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
    }

    .brand {
      display: flex;
      align-items: center;
    }

    .brand-logo {
      width: 255px;
      max-width: 54vw;
      height: auto;
      display: block;
      object-fit: contain;
    }

    nav a {
      margin-left: 28px;
      text-decoration: none;
      color: var(--deep-navy);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.055em;
      text-transform: uppercase;
      transition: opacity .18s ease, transform .18s ease;
    }

    nav a:hover {
      opacity: 0.68;
      transform: translateY(-1px);
    }

    .hero {
      padding: 76px 7% 84px;
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 70px;
      align-items: center;
      background:
        radial-gradient(circle at 82% 14%, rgba(40,55,71,0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    }

    .eyebrow {
      color: var(--navy);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    h1 {
      font-size: clamp(2.55rem, 5.1vw, 4.75rem);
      line-height: 1.02;
      letter-spacing: -0.058em;
      color: var(--deep-navy);
      margin-bottom: 24px;
      max-width: 650px;
    }

    .hero p {
      font-size: 1.12rem;
      color: var(--gray);
      max-width: 560px;
      margin-bottom: 34px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 15px 24px;
      border-radius: 999px;
      font-weight: 800;
      text-decoration: none;
      font-size: 0.88rem;
      letter-spacing: 0.015em;
      transition: 0.2s ease;
    }

    .btn-primary {
      background: var(--navy);
      color: var(--white);
      box-shadow: 0 16px 32px rgba(40,55,71,0.22);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
    }

    .btn-secondary {
      color: var(--navy);
      border: 1px solid rgba(29,45,68,0.18);
      background: var(--white);
    }

    .quote-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 26px;
      padding: 34px;
      box-shadow: var(--shadow);
    }

    .quote-card h2 {
      font-size: 1.45rem;
      margin-bottom: 10px;
      color: var(--deep-navy);
    }

    .quote-card p {
      font-size: 0.93rem;
      margin-bottom: 22px;
      color: var(--gray);
    }

    form {
      display: grid;
      gap: 14px;
    }

    input, select, textarea {
      width: 100%;
      padding: 14px 15px;
      border: 1px solid var(--line);
      border-radius: 12px;
      font: inherit;
      color: var(--deep-navy);
      background: var(--white);
      outline: none;
      transition: border-color .18s ease, box-shadow .18s ease;
    }

    input:focus, select:focus, textarea:focus {
      border-color: rgba(40,55,71,0.55);
      box-shadow: 0 0 0 4px rgba(40,55,71,0.08);
    }

    textarea {
      min-height: 96px;
      resize: vertical;
    }

    button {
      border: none;
      cursor: pointer;
      width: 100%;
      margin-top: 4px;
    }

    .section {
      padding: 72px 7%;
    }

    .section-title {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-title h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.1;
      letter-spacing: -0.04em;
      margin-bottom: 14px;
    }

    .section-title p {
      color: var(--gray);
      font-size: 1.04rem;
    }

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

    .card {
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 28px;
      background: var(--white);
      transition: transform .18s ease, box-shadow .18s ease;
    }

    .card:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 45px rgba(29,45,68,0.08);
    }

    .card h3 {
      margin-bottom: 10px;
      color: var(--deep-navy);
      font-size: 1.14rem;
    }

    .card p {
      color: var(--gray);
      font-size: 0.96rem;
    }

    .trust {
      background:
        linear-gradient(135deg, var(--navy), var(--deep-navy));
      color: var(--white);
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 54px;
      align-items: center;
    }

    .trust h2 {
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .trust p {
      color: rgba(255,255,255,0.78);
      margin-top: 18px;
      font-size: 1.05rem;
    }

    .trust-list {
      display: grid;
      gap: 16px;
    }

    .trust-item {
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 18px;
      padding: 22px;
      background: rgba(255,255,255,0.06);
    }

    .trust-item strong {
      display: block;
      margin-bottom: 6px;
      color: var(--white);
    }

    .trust-item span {
      color: rgba(255,255,255,0.72);
      font-size: 0.94rem;
    }

    .contact-strip {
      margin: 72px 7%;
      padding: 40px;
      border-radius: 26px;
      background: var(--soft);
      border: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: center;
      box-shadow: 0 18px 50px rgba(29,45,68,0.06);
    }

    .contact-strip h2 {
      font-size: 1.8rem;
      margin-bottom: 6px;
    }

    .contact-strip p {
      color: var(--gray);
    }

    footer {
      padding: 42px 7%;
      border-top: 1px solid var(--line);
      color: var(--gray);
      font-size: 0.78rem;
      background: #ffffff;
    }

    footer strong {
      color: var(--navy);
    }

    @media (max-width: 900px) {
      header {
        align-items: flex-start;
        gap: 18px;
        flex-direction: column;
      }

      nav a {
        margin: 0 18px 0 0;
      }

      .hero,
      .trust {
        grid-template-columns: 1fr;
      }

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

      .contact-strip {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #f7f8fa;
  border-top: 1px solid #d9dee5;
  padding: 60px 24px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer strong {
  color: #10233e;
}

.service-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.city-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.city-col a {
  color: #1f4f8c;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.city-col a:hover {
  opacity: 0.7;
}

.footer-bottom {
  margin-top: 30px;
}

.footer-bottom p {
  margin-bottom: 14px;
  color: #4a5565;
  line-height: 1.7;
}

.footer-disclaimer {
  font-size: 0.9rem;
  opacity: 0.85;
}


footer p a, header a {
  color: #1D2D44; 
  text-decoration: none; 
  font-weight: 700; 
}

footer p a:hover, header a:hover {
  color: #007BFF; 
  text-decoration: underline;
}


.footer-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  margin: 10px 0 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border: 1px solid #d8e0ea;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1D2D44;
  background: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  color: #007BFF;
  border-color: #007BFF;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.status.success {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #E9FFF3;
  border: 1px solid #7EE2B8;
  color: #067647;
  font-weight: 600;
  line-height: 1.5;
}

.status.error {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #FFF1F1;
  border: 1px solid #FFB3B3;
  color: #B42318;
  font-weight: 600;
  line-height: 1.5;
}

.home-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 16px;
}

.home-trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid #d8e0ea;
  border-radius: 14px;
  background: #f7f9fc;
  color: #12233a;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 600px) {
  .home-trust-strip {
    grid-template-columns: 1fr;
  }
}

.home-privacy-box {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid #d8e0ea;
  border-radius: 16px;
  background: #f7f9fc;
  color: #42526b;
  font-size: 13px;
  line-height: 1.55;
}

.home-privacy-box strong {
  color: #12233a;
  font-weight: 700;
}

#quote {
  scroll-margin-top: 300px;
}

.home-review-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1D2D44;
  margin: 10px 0 12px;
}

.sms-consent-box{
    margin-top:15px;
    padding:15px;
    border:1px solid #d8dee9;
    border-radius:10px;
    background:#fafbfd;
    width:100%;
    box-sizing:border-box;
    overflow-wrap:break-word;
}

.sms-consent-label{
    display:block;
    width:100%;
    line-height:1.6;
    font-size:14px;
}

.sms-consent-label input{
    margin-right:8px;
    vertical-align:top;
}