/**
 * ASR Moving location landing pages (content only — no site header/footer).
 * Scoped under .asr-location-page to avoid theme conflicts.
 */
 
 .asr-location-page {
  --red: #e31e24;
  --red-dark: #b9151b;
  --red-light: #fff0f1;
  --blue: #2e3192;
  --blue-dark: #171b58;
  --blue-light: #f3f5ff;
  --ink: #151515;
  --ink-soft: #404040;
  --ink-light: #6b6b6b;
  --paper: #ffffff;
  --paper-warm: #f5f7ff;
  --line: #e4e7f3;
  --white: #ffffff;
  font-family: 'Archivo', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.ast-page-builder-template .site-content > .ast-container{
    display: block !important;
}
.asr-location-page .error-message{
    margin-bottom: 0;
}
html {
    scroll-behavior: smooth;
}
.input-container input{
    padding-left: 10px;
}
.asr-location-page .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.asr-location-page h1,
.asr-location-page h2,
.asr-location-page h3,
.asr-location-page h4 {
  font-family: 'ASR-Location-Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.asr-location-page a { color: var(--red); text-decoration: none; transition: color 0.2s; }
.asr-location-page a:hover { color: var(--red-dark); }
.asr-location-page .icon { display: inline-block; width: 1em; text-align: center; }

.asr-location-page .hero {
  background: linear-gradient(135deg, var(--blue-light) 0%, #ffffff 52%, #fff5f5 100%);
  padding: 86px 0 100px;
  position: relative;
  overflow: hidden;
}
.asr-location-page .hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 49, 146, 0.12), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.asr-location-page .hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.asr-location-page .hero-eyebrow {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.asr-location-page .hero h1 { font-size: clamp(40px, 6vw, 64px); margin-bottom: 24px; color: var(--blue-dark); }
.asr-location-page .hero h1 .accent { font-style: italic; color: var(--red); font-weight: 500; }
.asr-location-page .hero p.lead {
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 590px;
  line-height: 1.55;
}
.asr-location-page .hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.asr-location-page .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.asr-location-page .btn-primary { background: var(--red); color: white; }
.asr-location-page .btn-primary:hover { background: var(--red-dark); color: white; transform: translateY(-1px); }
.asr-location-page .btn-secondary { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.asr-location-page .btn-secondary:hover { background: var(--blue); color: white; }

.asr-location-page .hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.asr-location-page .hero-stat .num {
  font-family: 'ASR-Location-Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.asr-location-page .hero-stat .label {
  font-size: 13px;
  color: var(--ink-light);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.asr-location-page .hero-stat .num .fa-star { color: #f5b301; font-size: 0.75em; vertical-align: 0.05em; }

.asr-location-page .quote-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(36, 36, 36, 0.08), 0 4px 12px rgba(36, 36, 36, 0.04);
  border: 1px solid var(--line);
  position: relative;
}
.asr-location-page .quote-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--blue);
  border-radius: 12px;
  z-index: -1;
}
.asr-location-page .quote-card h3 { font-size: 22px; margin-bottom: 8px; color: var(--blue); }
.asr-location-page .quote-card .sub { font-size: 14px; color: var(--ink-light); margin-bottom: 24px; }
.asr-location-page .form-row { margin-bottom: 16px; }
.asr-location-page .form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-light);
  margin-bottom: 6px;
}
.asr-location-page .form-row input,
.asr-location-page .form-row select {
  width: 100%;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  background: var(--blue-light);
  transition: border-color 0.2s;
  height: 42px;
}
.asr-location-page .form-row input:focus,
.asr-location-page .form-row select:focus {
  outline: none;
  border-color: var(--red);
  background: white;
}
.asr-location-page .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.asr-location-page .btn-form { width: 100%; justify-content: center; margin-top: 8px; }
.asr-location-page .asr-quote-email-row { margin-top: 0; }

/* Quote form validation */
.asr-location-page .form-row input.error,
.asr-location-page .form-row select.error {
  border-color: var(--red);
  background: #fff0f1;
}
.asr-location-page .error-message {
  color: var(--red);
  font-size: 13px;
  margin-top: 4px;
  font-weight: 500;
}

/* Google Place Autocomplete (new Places API widget) */
.asr-location-page gmp-place-autocomplete input{
    padding-left: 10px !important;
}
.asr-location-page gmp-place-autocomplete.asr-gmp-autocomplete,
.asr-location-page .asr-gmp-autocomplete {
  display: block;
  width: 100%;
  box-sizing: border-box;
  color-scheme: light;
  background-color: var(--blue-light);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: 'ASR-Location-Archivo', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s, background-color 0.2s;
}
.asr-location-page gmp-place-autocomplete.asr-gmp-autocomplete:focus-within,
.asr-location-page .asr-gmp-autocomplete:focus-within {
  border-color: var(--red);
  background-color: var(--white);
  outline: none;
}
.asr-location-page gmp-place-autocomplete.asr-gmp-autocomplete.error,
.asr-location-page .asr-gmp-autocomplete.error {
  border-color: var(--red);
  background-color: #fff0f1;
}
.asr-location-page .pac-container { z-index: 10001 !important; }

/* jQuery UI datepicker in quote card */
.asr-location-page .ui-datepicker {
  border: 1px solid var(--line) !important;
  border-radius: 10px;
  padding: 10px;
  font-family: inherit;
  z-index: 10002 !important;
}
.asr-location-page .ui-datepicker td a {
  text-align: center;
  border-radius: 50%;
}

/* Popups appended to body on location templates only */
body.asr-location-template-active .ui-datepicker,
body.asr-location-template-active .ui-datepicker *,
body.asr-location-template-active .pac-container,
body.asr-location-template-active .pac-container *,
body.asr-location-template-active .asr-gmp-autocomplete {
  font-family: 'ASR-Location-Archivo', sans-serif;
}

.asr-location-page .trust-bar {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  padding: 28px 0;
}
.asr-location-page .trust-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.asr-location-page .trust-item { font-size: 14px; }
.asr-location-page .trust-item strong {
  display: block;
  font-family: 'ASR-Location-Fraunces', serif;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 4px;
}

.asr-location-page section { padding: 90px 0; }
.asr-location-page .section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.asr-location-page .section-title {
  font-size: clamp(32px, 4.5vw, 46px);
  margin-bottom: 20px;
  max-width: 800px;
  color: var(--blue);
}
.asr-location-page .section-lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: 48px;
}

.asr-location-page .about-local { background: var(--paper-warm); }
.asr-location-page .about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.asr-location-page .about-grid p { color: var(--ink-soft); margin-bottom: 18px; font-size: 16.5px; }
.asr-location-page .local-facts {
  background: white;
  border-left: 5px solid var(--red);
  padding: 28px 32px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(46, 49, 146, 0.08);
}
.asr-location-page .local-facts h4 {
  font-family: 'ASR-Location-Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.asr-location-page .local-facts ul { list-style: none; }
.asr-location-page .local-facts li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.asr-location-page .local-facts li:last-child { border-bottom: none; }
.asr-location-page .local-facts li span:first-child { color: var(--ink-light); font-weight: 500; }
.asr-location-page .local-facts li span:last-child { color: var(--ink); font-weight: 600; text-align: right; }

.asr-location-page .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.asr-location-page .service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.asr-location-page .service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.3s;
}
.asr-location-page .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(46, 49, 146, 0.12);
  border-color: rgba(46, 49, 146, 0.24);
}
.asr-location-page .service-card:hover::before { width: 100%; }
.asr-location-page .service-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.asr-location-page .service-icon i { font-size: 22px; color: var(--blue); }
.asr-location-page .service-card h3 { font-size: 22px; margin-bottom: 12px; color: var(--blue); }
.asr-location-page .service-card p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 16px; }
.asr-location-page .service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.asr-location-page .service-link .fa-arrow-right { font-size: 12px; transition: transform 0.2s; }
.asr-location-page .service-card:hover .service-link .fa-arrow-right { transform: translateX(4px); }

.asr-location-page .route-section { background: var(--paper-warm); }
.asr-location-page .route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.asr-location-page .route-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(46, 49, 146, 0.06);
}
.asr-location-page .route-card h3 { font-size: 22px; margin-bottom: 10px; color: var(--blue); }
.asr-location-page .route-card p { color: var(--ink-soft); font-size: 15.5px; }

.asr-location-page .neighborhoods {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
}
.asr-location-page .neighborhoods .section-title { color: white; }
.asr-location-page .neighborhoods .section-lead { color: rgba(255, 255, 255, 0.75); }
.asr-location-page .neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.asr-location-page .neighborhood-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 24px;
  border-radius: 6px;
  transition: all 0.2s;
}
.asr-location-page .neighborhood-tile:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--red);
  transform: translateY(-2px);
}
.asr-location-page .neighborhood-tile h4 {
  color: white;
  font-family: 'ASR-Location-Archivo', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}
.asr-location-page .neighborhood-tile p { color: rgba(255, 255, 255, 0.6); font-size: 13.5px; line-height: 1.4; }

.asr-location-page .why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.asr-location-page .why-card { text-align: left; padding: 8px; }
.asr-location-page .why-num {
  font-family: 'ASR-Location-Fraunces', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.asr-location-page .why-card h3 { font-size: 22px; margin-bottom: 10px; color: var(--blue); }
.asr-location-page .why-card p { color: var(--ink-soft); font-size: 15.5px; }

.asr-location-page .testimonials { background: var(--paper-warm); }
.asr-location-page .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.asr-location-page .testimonial {
  background: white;
  padding: 32px;
  border-radius: 14px;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(46, 49, 146, 0.06);
}
.asr-location-page .testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: 'ASR-Location-Fraunces', serif;
  font-size: 80px;
  color: var(--red);
  line-height: 1;
  font-weight: 700;
}
.asr-location-page .testimonial-stars { color: #f5b301; margin-bottom: 14px; font-size: 14px; letter-spacing: 2px; }
.asr-location-page .testimonial p {
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 20px;
  font-size: 15.5px;
  line-height: 1.6;
}
.asr-location-page .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.asr-location-page .author-initial {
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'ASR-Location-Fraunces', serif;
}
.asr-location-page .author-name { font-weight: 600; font-size: 15px; }
.asr-location-page .author-loc { font-size: 13px; color: var(--ink-light); }

.asr-location-page .faq-list { max-width: 860px; margin: 0 auto; }
.asr-location-page .faq-item { border-bottom: 1px solid var(--line); padding: 4px 0; }
.asr-location-page .faq-question {
  width: 100%;
  background: none !important;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: 'ASR-Location-Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.asr-location-page .faq-question:hover { color: var(--blue-dark); }
.asr-location-page .faq-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  font-size: 12px;
  color: var(--blue);
}
.asr-location-page .faq-item.open .faq-icon {
  background: var(--red);
  color: white;
  border-color: var(--red);
  transform: rotate(45deg);
}
.asr-location-page .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.asr-location-page .faq-answer-inner {
  padding: 0 0 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 760px;
}
.asr-location-page .faq-item.open .faq-answer { max-height: 400px; }

.asr-location-page .cta-band {
  background: linear-gradient(135deg, var(--red), var(--blue));
  color: white;
  padding: 70px 0;
  text-align: center;
}
.asr-location-page .cta-band h2 { color: white; font-size: clamp(30px, 4vw, 42px); margin-bottom: 16px; }
.asr-location-page .cta-band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.asr-location-page .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.asr-location-page .cta-band .btn-primary { background: white; color: var(--red); }
.asr-location-page .cta-band .btn-primary:hover { background: var(--blue-dark); color: white; }
.asr-location-page .cta-band .btn-secondary { color: white; border-color: white; }
.asr-location-page .cta-band .btn-secondary:hover { background: white; color: var(--blue); }

.asr-location-page .other-locations { background: var(--paper); }
.asr-location-page .location-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.asr-location-page .location-pill {
  background: white;
  border: 1px solid var(--line);
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.asr-location-page .location-pill:hover { background: var(--blue); color: white; border-color: var(--blue); }

.asr-location-page .mobile-sticky-cta { display: none; }

@media (max-width: 900px) {
  .asr-location-page .hero-grid,
  .asr-location-page .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .asr-location-page .hero { padding: 48px 0 64px; }
}

@media (max-width: 760px) {
  .asr-location-page section { padding: 60px 0; }
  .asr-location-page .form-grid { grid-template-columns: 1fr; }
  .asr-location-page .mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
  }
  .asr-location-page .mobile-sticky-cta a {
    padding: 14px 8px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .asr-location-page .mobile-sticky-cta a:first-child { background: var(--blue); color: white; }
  .asr-location-page .mobile-sticky-cta a:last-child { background: var(--red); color: white; }
  
  .asr-location-page .hero-stats {
    justify-content: center;
  }
  .asr-location-page .hero-cta-row {
    gap: 12px;
    justify-content: center;
  }
  
  
  
}
