/* AMCPR site-wide enhancements: modern animated mobile menu + misc.
   Replaces Responsive Menu Pro's trigger/panel below the theme's 989px
   breakpoint. Brand red #d9230f. */

/* Hide the old plugin UI entirely */
#rmp_menu_trigger-9013,
#rmp-container-9013 { display: none !important; }

.amcpr-burger {
  display: none;
  position: fixed;
  top: 6px;
  right: 12px;
  z-index: 100001;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: #d9230f;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.amcpr-burger:active { transform: scale(0.94); }
.amcpr-burger:focus-visible { outline: 3px solid #211d1c; outline-offset: 2px; }
.amcpr-burger,
.amcpr-drawer a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
@media (max-width: 989px) {
  .amcpr-burger { display: block; }
}
.amcpr-burger span {
  display: block;
  position: absolute;
  left: 12px;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: #ffffff;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, top 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.amcpr-burger span:nth-child(1) { top: 15px; }
.amcpr-burger span:nth-child(2) { top: 22.5px; }
.amcpr-burger span:nth-child(3) { top: 30px; }
.amcpr-burger[aria-expanded="true"] span:nth-child(1) { top: 22.5px; transform: rotate(45deg); }
.amcpr-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.amcpr-burger[aria-expanded="true"] span:nth-child(3) { top: 22.5px; transform: rotate(-45deg); }

.amcpr-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(20, 18, 18, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.amcpr-menu-open .amcpr-menu-overlay { opacity: 1; pointer-events: auto; }

.amcpr-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100000;
  height: 100%;
  width: min(320px, 85vw);
  background: #ffffff;
  border-left: 4px solid #d9230f;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.3);
  transform: translateX(105%);
  /* visibility keeps the parked drawer from creating horizontal
     overflow/sideways scroll; the delay preserves the slide-out */
  visibility: hidden;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 0.38s;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.amcpr-menu-open .amcpr-drawer {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 0s;
}
/* belt & suspenders: no element may widen the page sideways on mobile */
@media (max-width: 989px) {
  html, body { overflow-x: hidden; }
}

.amcpr-drawer-head {
  padding: 22px 24px 16px;
  border-bottom: 1px solid #eee7e5;
}
.amcpr-drawer-head img { max-width: 200px; height: auto; display: block; }
.amcpr-drawer-head p {
  margin: 8px 0 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a807d;
}

.amcpr-drawer nav { padding: 10px 0 16px; flex: 1; }
.amcpr-drawer nav a {
  display: block;
  padding: 13px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #211d1c;
  text-decoration: none;
  border-left: 4px solid transparent;
  opacity: 0;
  transform: translateX(18px);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.amcpr-menu-open .amcpr-drawer nav a {
  animation: amcpr-link-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.06s + var(--i) * 0.045s);
}
@keyframes amcpr-link-in {
  to { opacity: 1; transform: translateX(0); }
}
.amcpr-drawer nav a:hover,
.amcpr-drawer nav a:focus-visible {
  background: #fbf1ef;
  border-left-color: #d9230f;
  color: #d9230f;
  outline: none;
}

.amcpr-drawer-cta {
  margin: 0 24px 28px;
  display: block;
  text-align: center;
  background: #d9230f;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.amcpr-drawer-cta:hover { background: #b71d0c; }

body.amcpr-menu-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .amcpr-burger span,
  .amcpr-drawer,
  .amcpr-menu-overlay { transition: none; }
  .amcpr-menu-open .amcpr-drawer nav a { animation: none; opacity: 1; transform: none; }
}

/* ============================================================
   Round 3 modernization
   ============================================================ */

/* --- Mobile / tablet header (<=989px, the menu breakpoint) --- */

/* Fixed brand bar: logo top-left, stays pinned on scroll, solid
   translucent white so content sliding under reads clearly. */
.amcpr-mobilebar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 99999;
  align-items: center;
  padding: 0 72px 0 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 3px solid #d9230f;
  box-shadow: 0 2px 14px rgba(33, 29, 28, 0.12);
}
.amcpr-mobilebar img { height: 38px; width: auto; display: block; }

@media (max-width: 989px) {
  .amcpr-mobilebar { display: flex; }
  body { padding-top: 60px; }

  /* Retire the dead grey utility strip (SEO text + social icons live
     in the drawer/footer era now) and the old centered logo block —
     the fixed bar carries the brand now */
  #wrapper-36 { display: none !important; }
  #wrapper-31 #col-31-1 { display: none !important; }
  #wrapper-31 { background: #ffffff; }

  /* Locations: card grid with tap-to-call pills */
  .feb18header1 { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 12px 14px 18px; }
  .feb18header1::before, .feb18header1::after { display: none; }
  .feb18header1 > .wpb_column { width: auto !important; float: none !important; padding: 0 !important; }
  .feb18header1 .vc_column-inner {
    background: #faf8f7;
    border: 1px solid #eee7e5;
    border-radius: 10px;
    padding: 12px 10px 14px !important;
    height: 100%;
    text-align: center;
  }
  .feb18header1 h3.locationTitle { font-size: 13px; letter-spacing: 0.04em; margin: 0 0 4px; }
  .feb18header1 p.locationDetail { margin: 0 0 8px; }
  .feb18header1 p.locationDetail a { font-size: 11.5px; line-height: 1.45; color: #6b6260; }
  .feb18header1 p.locationDetail br:first-child { display: none; }
  .feb18header1 a.locationPhone {
    display: inline-block;
    background: #d9230f;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
  }
}
@media (max-width: 640px) {
  .feb18header1 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .feb18header1 { grid-template-columns: 1fr; }
}

/* --- Services page: device columns as cards, models as chips --- */
.amservices .vc_column-inner {
  background: #ffffff;
  border: 1px solid #eee7e5;
  border-top: 4px solid #d9230f; /* red underline motif */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(33, 29, 28, 0.06);
  padding: 22px 20px !important;
  height: 100%;
}
.amservices h2 { font-size: 21px; margin: 0 0 4px; }
.amservices p strong { color: #6b6260; font-size: 13px; letter-spacing: 0.02em; }
.amservices p span[style*="underline"] {
  text-decoration: none !important;
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d9230f;
  border-bottom: 2px solid #d9230f;
  padding-bottom: 2px;
  margin-top: 6px;
}
.amservices ul {
  list-style: none;
  margin: 10px 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.amservices ul li {
  background: #f7f4f3;
  border: 1px solid #e9e2e0;
  border-radius: 999px;
  padding: 3px 11px;
  font-size: 12.5px;
  line-height: 1.5;
  color: #48423f;
  margin: 0 !important;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .amservices { margin-bottom: 16px; }
}

/* --- Footer: same content, modern treatment, red line kept --- */
#wrapper-32 { display: none; } /* old empty spacer row */
#wrapper-33 {
  /* #333 matches the matte baked into the dark logo GIF */
  background: #333333 !important;
  border-top: 4px solid #d9230f; /* the motif */
  padding: 40px 0 28px;
}
#wrapper-33 .widget_ultimatumwysiwyg p { color: #b3aaa7; font-size: 13.5px; line-height: 1.7; }
#wrapper-33 .widget_ultimatumwysiwyg img {
  float: none !important;
  display: block;
  margin: 0 0 18px !important;
  max-width: 240px;
  height: auto;
}
#wrapper-33 .widget_ultimatumwysiwyg p:last-child { margin-bottom: 0; }
#wrapper-26 {
  background: #2a2a2a !important;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
}
#wrapper-26 .textwidget { font-size: 12.5px; color: #8f8683; line-height: 2; }
#wrapper-26 .textwidget a {
  color: #d6cecb;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
#wrapper-26 .textwidget a:hover { color: #ffffff; border-bottom-color: #d9230f; }
@media (max-width: 767px) {
  #wrapper-26 .text-right { text-align: left !important; }
  #wrapper-33 { padding: 30px 0 22px; }
}

/* --- Blog pagination (static "Load More") --- */
.amcpr-post-hidden { display: none !important; }
.amcpr-post-reveal { animation: amcpr-post-in 0.45s ease both; }
@keyframes amcpr-post-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.amcpr-loadmore {
  display: block;
  margin: 6px auto 30px;
  background: #d9230f;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 34px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(217, 35, 15, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.amcpr-loadmore:hover { background: #b71d0c; }
.amcpr-loadmore:active { transform: scale(0.97); }
@media (prefers-reduced-motion: reduce) {
  .amcpr-post-reveal { animation: none; }
}

/* --- Local-SEO content block (city pages + iPad post) --- */
.amcpr-local-seo {
  background: #faf8f7;
  border-top: 4px solid #d9230f; /* red motif */
  padding: 40px 20px 46px;
}
.amcpr-local-inner {
  max-width: 820px;
  margin: 0 auto;
}
.amcpr-local-inner h2 {
  font-size: clamp(21px, 3.4vw, 27px);
  line-height: 1.2;
  margin: 0 0 16px;
  color: #211d1c;
  letter-spacing: -0.01em;
}
.amcpr-local-inner p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #48423f;
  margin: 0 0 14px;
  max-width: 68ch;
}
.amcpr-local-inner a { color: #d9230f; }
.amcpr-local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.amcpr-local-links a {
  display: inline-block;
  background: #d9230f;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.amcpr-local-links a:hover { background: #b71d0c; }
.amcpr-local-links a:nth-child(n+2) {
  background: #fff;
  color: #d9230f !important;
  border: 1.5px solid #eee7e5;
}
.amcpr-local-links a:nth-child(n+2):hover { border-color: #d9230f; }

/* --- Header location cards: keep the linked city name identical to the
   original heading (the <a> was inheriting a larger font) --- */
.locationTitle a {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-decoration: none;
}
.locationTitle a:hover { text-decoration: underline; }

/* --- Rendered Ultimate-Addons headings (store directory, page intros) --- */
.amcpr-uh {
  font-size: 18px;
  font-weight: 800;
  color: #d9230f;
  margin: 0 0 8px;
  line-height: 1.25;
}

/* ============================================================
   Header hover fix — theme jumps the linked city name to 24px
   ============================================================ */
.locationTitle a,
.locationTitle a:hover,
.locationTitle a:focus {
  font: inherit !important;
  color: inherit !important;
  letter-spacing: inherit !important;
}
.locationTitle a:hover { text-decoration: underline; }

/* ============================================================
   Modern location landing pages (.amcpr-loc replaces wrapper-2)
   ============================================================ */
.amcpr-loc {
  --red: #d9230f; --red-dark: #b71d0c; --ink: #211d1c; --sub: #5f5754;
  --line: #ece6e4; --ground: #faf8f7; --card: #fff;
  font: 16px/1.6 "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--ink);
}
.amcpr-loc * { box-sizing: border-box; }
.amcpr-wrap { max-width: 1080px; margin: 0 auto; padding-inline: 20px; }
.amcpr-loc h2 { font-size: clamp(23px, 3.4vw, 30px); line-height: 1.2; letter-spacing: -.015em; margin: 0 0 22px; text-align: center; }
.amcpr-loc section { padding-block: 46px; }

.amcpr-btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; text-decoration: none; padding: 13px 24px; border-radius: 10px; transition: background .2s, color .2s, border-color .2s, transform .12s; }
.amcpr-btn svg { width: 18px; height: 18px; }
.amcpr-btn:active { transform: scale(.97); }
.amcpr-btn-primary { background: var(--red); color: #fff; }
.amcpr-btn-primary:hover { background: var(--red-dark); }
.amcpr-btn-call { background: #211d1c; color: #fff; }
.amcpr-btn-call:hover { background: #000; }
.amcpr-btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.amcpr-btn-ghost:hover { border-color: var(--red); color: var(--red); }
.amcpr-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.amcpr-hero { background: linear-gradient(180deg,#fff 0%, var(--ground) 100%); border-bottom: 1px solid var(--line); text-align: center; padding: 34px 0 44px; }
.amcpr-crumbs { font-size: 13px; color: var(--sub); margin-bottom: 16px; }
.amcpr-crumbs a { color: var(--sub); text-decoration: none; }
.amcpr-crumbs a:hover { color: var(--red); }
.amcpr-hero h1 { font-size: clamp(28px, 5vw, 44px); line-height: 1.1; letter-spacing: -.02em; margin: 0 0 12px; text-wrap: balance; }
.amcpr-sub { font-size: clamp(16px,2.4vw,19px); color: var(--sub); max-width: 40ch; margin: 0 auto 22px; }
.amcpr-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px; justify-content: center; padding: 0; margin: 0 0 26px; }
.amcpr-chips li { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 600; color: var(--ink); }
.amcpr-chips svg { width: 15px; height: 15px; color: var(--red); }
.amcpr-hero .amcpr-cta-row { justify-content: center; }

/* Answer + intro read as one centered, left-aligned column (lead callout and
   body share the same width so nothing looks off-center). */
.amcpr-answer { text-align: center; }
.amcpr-answer .amcpr-lead { max-width: 760px; margin: 0 auto 22px; text-align: left; font-size: 18px; line-height: 1.6; font-weight: 500; background: #fff; border-left: 4px solid var(--red); border-radius: 0 8px 8px 0; padding: 16px 20px; box-shadow: 0 1px 4px rgba(33,29,28,.05); }
.amcpr-answer p { max-width: 760px; margin: 0 auto 14px; text-align: left; color: #423c3a; }
.amcpr-landmark { font-style: italic; color: var(--sub); }

.amcpr-services { background: var(--ground); }
.amcpr-svc-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.amcpr-svc { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; text-decoration: none; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px 10px; font-size: 13.5px; font-weight: 600; transition: border-color .2s, transform .12s, box-shadow .2s; }
.amcpr-svc:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(33,29,28,.08); }
.amcpr-svc img { width: 64px; height: 64px; object-fit: contain; }
.amcpr-devices { text-align: center; margin: 22px 0 0; color: var(--sub); font-size: 15px; }
.amcpr-devices a { color: var(--red); font-weight: 700; text-decoration: none; white-space: nowrap; }

.amcpr-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.amcpr-why-card { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: 12px; padding: 22px 20px; }
.amcpr-why-card .amcpr-ic { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px; background: #fbecea; color: var(--red); margin-bottom: 12px; }
.amcpr-why-card .amcpr-ic svg { width: 22px; height: 22px; }
.amcpr-why-card h3 { font-size: 17px; margin: 0 0 6px; }
.amcpr-why-card p { font-size: 14px; line-height: 1.55; color: var(--sub); margin: 0; }

.amcpr-compare { background: var(--ground); }
.amcpr-table-scroll { overflow-x: auto; max-width: 860px; margin: 0 auto; }
.amcpr-compare table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; min-width: 520px; }
.amcpr-compare th, .amcpr-compare td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.amcpr-compare thead th { background: var(--ink); color: #fff; font-size: 13px; letter-spacing: .02em; }
.amcpr-compare thead th:nth-child(2) { background: var(--red); }
.amcpr-compare tbody td:first-child { font-weight: 600; }
.amcpr-compare .amcpr-yes { color: #1c7a2e; font-weight: 600; }
.amcpr-compare .amcpr-no { color: #9a8f8c; }
.amcpr-compare tr:last-child td { border-bottom: none; }

.amcpr-visit-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; margin-bottom: 22px; }
.amcpr-visit-grid.amcpr-has-photo { grid-template-columns: 1fr 1fr; }
.amcpr-storefront { margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 8px 26px rgba(33,29,28,.12); }
.amcpr-storefront img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.amcpr-addr { font-size: 17px; line-height: 1.5; margin: 0 0 10px; }
.amcpr-phone-lg { display: inline-flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 800; color: var(--red); text-decoration: none; }
.amcpr-phone-lg svg { width: 20px; height: 20px; }
.amcpr-hours { border-collapse: collapse; margin: 14px 0 20px; }
.amcpr-hours th { text-align: left; font-weight: 700; padding: 4px 24px 4px 0; color: var(--ink); }
.amcpr-hours td { color: var(--sub); }
.amcpr-area { background: var(--ground); border: 1px solid var(--line); border-radius: 12px; padding: 22px; }
.amcpr-area h3 { font-size: 16px; margin: 0 0 14px; }
.amcpr-hoods { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.amcpr-hoods li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 5px 13px; font-size: 13px; color: #423c3a; }

.amcpr-steps-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.amcpr-steps-grid li { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px 22px; position: relative; }
.amcpr-step-n { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--red); color: #fff !important; font-weight: 800; font-size: 22px; line-height: 1; font-family: Arial, "Segoe UI", sans-serif; margin-bottom: 12px; }
.amcpr-steps-grid h3 { font-size: 17px; margin: 0 0 6px; }
.amcpr-steps-grid p { font-size: 14px; line-height: 1.55; color: var(--sub); margin: 0; }

.amcpr-faq { background: var(--ground); }
.amcpr-faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.amcpr-faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; }
.amcpr-faq-item h3 { font-size: 16.5px; margin: 0 0 6px; color: var(--ink); }
.amcpr-faq-item p { font-size: 14.5px; line-height: 1.6; color: #423c3a; margin: 0; }

.amcpr-finalcta { background: var(--ink); color: #fff; text-align: center; }
.amcpr-finalcta h2 { color: #fff; }
.amcpr-finalcta p { color: #cfc7c4; max-width: 52ch; margin: 0 auto 22px; }
.amcpr-finalcta .amcpr-cta-row { justify-content: center; }
.amcpr-finalcta .amcpr-btn-call { background: #fff; color: var(--ink); }
.amcpr-finalcta .amcpr-btn-call:hover { background: #eee; }

@media (max-width: 860px) {
  .amcpr-svc-grid { grid-template-columns: repeat(3,1fr); }
  .amcpr-why-grid { grid-template-columns: 1fr 1fr; }
  .amcpr-steps-grid { grid-template-columns: 1fr; }
  .amcpr-visit-grid.amcpr-has-photo { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .amcpr-loc section { padding-block: 34px; }
  .amcpr-svc-grid { grid-template-columns: repeat(2,1fr); }
  .amcpr-why-grid { grid-template-columns: 1fr; }
  .amcpr-cta-row .amcpr-btn { flex: 1 1 100%; justify-content: center; }
}

/* ============================================================
   Free Estimate page (.amcpr-est) — modern trust-forward layout
   ============================================================ */
.amcpr-est-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
  align-items: start;
}
.amcpr-est .amcpr-embed-form.amcpr-est-formcard {
  max-width: none;
  margin: 0;
  padding: 28px 26px 24px;
}
.amcpr-est-formhead {
  font-size: clamp(20px, 2.6vw, 25px) !important;
  text-align: left !important;
  margin: 0 0 6px !important;
  letter-spacing: -0.01em;
}
.amcpr-est-formsub {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: #5f5754;
  margin: 0 0 18px;
}
.amcpr-est-formsub svg { width: 15px; height: 15px; color: #d9230f; flex: none; }
.amcpr-est-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #8a807d;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid #f0eae8;
}
.amcpr-est-privacy svg { width: 15px; height: 15px; color: #1c7a2e; flex: none; }

.amcpr-est-side { display: grid; gap: 14px; }
.amcpr-est-badge {
  background: #fff;
  border: 1px solid #ece6e4;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.amcpr-est-badge img { width: 96px; height: auto; flex: none; }
.amcpr-est-badge p { margin: 0; font-size: 13.5px; line-height: 1.5; color: #5f5754; font-weight: 600; }
.amcpr-est-card {
  background: #fff;
  border: 1px solid #ece6e4;
  border-left: 4px solid #d9230f;
  border-radius: 12px;
  padding: 18px 20px;
}
.amcpr-est-card .amcpr-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #fbecea;
  color: #d9230f;
  margin-bottom: 10px;
}
.amcpr-est-card .amcpr-ic svg { width: 19px; height: 19px; }
.amcpr-est-card h3 { font-size: 15.5px; margin: 0 0 5px; color: #211d1c; }
.amcpr-est-card p { font-size: 13.5px; line-height: 1.6; color: #5f5754; margin: 0; }
.amcpr-est-card a { color: #d9230f; font-weight: 700; }

.amcpr-est .amcpr-hero { padding-bottom: 34px; }

@media (max-width: 900px) {
  .amcpr-est-grid { grid-template-columns: 1fr; }
  .amcpr-est-side { order: 2; }
}

/* The old dark-panel design left '.page-id-23 span,p,label {color:#fff}' in
   the theme CSS; re-declare the modern palette at higher specificity. */
.page-id-23 .amcpr-est p,
.page-id-23 .amcpr-est span { color: #48423f; }
.page-id-23 .amcpr-est .amcpr-sub { color: #5f5754; }
.page-id-23 .amcpr-est .amcpr-crumbs,
.page-id-23 .amcpr-est .amcpr-crumbs span { color: #5f5754; }
.page-id-23 .amcpr-est .amcpr-chips li { color: #211d1c; }
.page-id-23 .amcpr-est .amcpr-est-formsub { color: #5f5754; }
.page-id-23 .amcpr-est .amcpr-est-privacy { color: #8a807d; }
.page-id-23 .amcpr-est .nf-form-fields-required { color: #8a807d; }
.page-id-23 .amcpr-est .ninja-forms-req-symbol { color: #d9230f; }
.page-id-23 .amcpr-est .nf-field-label label,
.page-id-23 .amcpr-est label { color: #211d1c; }
.page-id-23 .amcpr-est .amcpr-est-card p,
.page-id-23 .amcpr-est .amcpr-est-badge p,
.page-id-23 .amcpr-est .amcpr-steps-grid p { color: #5f5754; }
.page-id-23 .amcpr-est input[type="submit"] { color: #fff; }
