.location-services-intro{
    margin-top: 100px; /* the 100px down you asked for */
    padding-left: var(--main-side-padding);
    padding-right: var(--main-side-padding);
    box-sizing: border-box;
    display: grid;
    gap: 16px;
  }
  
  .location-services-title{
    margin: 0;
    text-align: center;
    font-family: "DM Serif Display", sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    color: #111;
  }
  
  
  .location-accent{
    color: rgb(18,167,203);
  }
  
  .location-services-subtitle{
    margin: 0 auto;          /* centers the paragraph block */
    text-align: center;
    max-width: 980px;
    font-family: "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
    color: #4a4a4a;
  }
  
  /* keep the padding sane on smaller screens */
  @media (max-width: 900px){
    .location-services-intro{
      padding-left: 24px;
      padding-right: 24px;
    }
  }
  
  /* =========================
   Trusted Choice (Chandler)
   ========================= */

.trusted-choice{
    background-image: url("/static/img/Frame-35-scaled.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
    padding-top: 60px;
    padding-bottom: 80px;
    padding-left: var(--main-side-padding);
    padding-right: var(--main-side-padding);
    box-sizing: border-box;
  }
  
  .trusted-choice-inner{
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    justify-items: center;
    row-gap: 18px;
  }
  
  .trusted-choice-title{
    margin: 0;
    text-align: center;
    color: #fff;
    font-family: "DM Serif Display", sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.05;
    max-width: 500px;
  }
  
  .trusted-choice-subtitle{
    margin: 0;
    text-align: center;
    color: rgba(255,255,255,0.92);
    max-width: 980px;
  
    font-family: "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    max-width: 800px;
  }
  
  .trusted-choice-pills{
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
  
  .trusted-pill{
    font-family: "DM Serif Display", sans-serif;
    font-weight: 400;
    font-size: 18px;
  
    padding: 16px 22px;
    min-width: 180px;
    text-align: center;
  
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(236,234,234,0.18);
    color: #fff;
  
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  /* responsive */
  @media (max-width: 900px){
    .trusted-choice{
      padding-left: 24px;
      padding-right: 24px;
    }
    .trusted-choice-title{ font-size: 38px; }
    .trusted-pill{ min-width: 160px; }
  }
  
/* =========================
   Location Map (reusable)
   ========================= */

   .location-map-section{
    background: #fff;
    padding-top: 12px;     /* white strip above the map */
    padding-bottom: 80px;
  }
  
  /* no side padding; full width */
  .location-map-wrap{
    width: 100%;
  }
  
  /* full bleed map */
  .location-map{
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
  }
  
  /* responsive */
  @media (max-width: 900px){
    .location-map{ height: 380px; }
  }
  

  /* =========================
   Location Contact Section
   ========================= */


.location-contact{
    background: #fff;
    padding-top: 90px;
    padding-left: var(--main-side-padding);
    padding-right: var(--main-side-padding);
    padding-bottom: 160px;
    box-sizing: border-box;
  }
  
  .location-contact-inner{
    max-width: 1100px;  /* “much wider” but still centered */
    margin: 0 auto;
  }
  
  .location-contact-title{
    margin: 0;
    max-width: 600px;
    font-family: "DM Serif Display", sans-serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.05;
    color: #111;
    text-align: left;
  }
  
  
  .location-contact-subtitle{
    margin: 12px 0 28px 0;
    font-family: "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #6c6c6c;
    text-align: left;
  }
  
  /* widen the existing home-page form */
  .contact-form--wide{
    max-width: 1100px;
    margin: 0 auto;
    padding: 44px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  }
  
  .contact-form--wide{ border-radius: 0; } /* no radius */

  /* make fields wider / more breathable */
  .form-contact-fields--wide{
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
  }
  
  /* your home form already styles inputs; just make them a touch taller */
  .contact-form--wide input,
  .contact-form--wide select,
  .contact-form--wide textarea{
    min-height: 58px;
  }
  
  /* responsive */
  @media (max-width: 980px){
    .location-contact{
      padding: 70px 24px 220px;
    }
    .location-contact-title{
      font-size: 38px;
    }
    .form-contact-fields--wide{
      grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 12px;
    }
  }
  