/*
Theme Name: DMV Moving Help — Proprietary
Author: DMV Moving Help
Author URI: https://dmvmovinghelp.com
License: Private / Proprietary
License URI: https://dmvmovinghelp.com/terms
Text Domain: dmv-moving-help
*/

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f7f7;
  color: #111;
}

a {
  color: #0056b3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Basic utility classes */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #d21f3c;
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: #0047ab;
  color: #fff;
}

/* Header */
/* =======================
   HEADER BASE STYLES
   ======================= */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e2e2;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;   /* was 0.75rem 0 */
  gap: 1rem;
}

/* Branding (logo + text) */
.site-branding {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo img {
  max-height: 60px;
  width: auto;
}

.site-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-title a {
  color: inherit;
  text-decoration: none;
}

.site-tagline {
  font-size: 0.8rem;
  color: #555;
}

/* =======================
   DESKTOP NAVIGATION
   ======================= */

.main-navigation {
  margin-left: auto;
}

.main-navigation ul.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-navigation .menu a {
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  color: #222;
}

.main-navigation .menu a:hover {
  color: #d21f3c; /* subtle red hover */
}

/* Dropdowns (desktop) */
.main-navigation .menu > li {
  position: relative;
}

.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  list-style: none;
  padding: 0.4rem 0;
  margin: 0;
  display: none;
  z-index: 9999;
}

.main-navigation .sub-menu li {
  padding: 0;
}

.main-navigation .sub-menu a {
  display: block;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Arrow indicator for items with dropdowns (e.g. Services) */
.main-navigation .menu > li.menu-item-has-children > a::after {
  content: "▾";
  margin-left: 0.35rem;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Show dropdown on hover/focus */
.main-navigation .menu > li.menu-item-has-children:hover > .sub-menu,
.main-navigation .menu > li.menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

/* =======================
   HEADER CTA BUTTONS (DESKTOP ONLY)
   ======================= */

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1.5rem;
}

/* Phone pill */
.header-phone-link {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #0047ab;                       /* DMV blue */
  padding: 0.35rem 0.85rem;             /* creates the pill shape */
  border-radius: 999px;
  background: rgba(0, 71, 171, 0.06);   /* soft, subtle blue background */
  border: 1px solid rgba(0, 71, 171, 0.18);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

/* Add a subtle phone icon */
.header-phone-link::before {
  content: "📞";
  margin-right: 0.4rem;
  font-size: 0.9rem;
}

/* Hover effect */
.header-phone-link:hover {
  background: rgba(0, 71, 171, 0.12);
  border-color: rgba(0, 71, 171, 0.3);
  text-decoration: none;
}

.header-quote-btn {
  background: #d21f3c;               /* DMV red */
  color: #fff;
  border-radius: 999px;              /* pill shape, not circle */
  padding: 0.45rem 1.35rem;          /* wider, not too tall */
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(210, 31, 60, 0.35);
  border: none;
  white-space: nowrap;
}

.header-quote-btn:hover {
  background: #b81932;               /* slightly darker on hover */
  box-shadow: 0 8px 20px rgba(210, 31, 60, 0.45);
  transform: translateY(-1px);
}

.header-quote-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(210, 31, 60, 0.3);
}

/* Mobile nav toggle (hamburger) */
.nav-toggle {
  display: none; /* shown only on mobile */
  border: none;
  background: none;
  padding: 0.25rem;
  margin-left: auto;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: #222;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* X animation */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile styles */
@media (max-width: 768px) {

  .header-inner {
    gap: 0.5rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

/* Drop-down nav under header */
  .main-navigation {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e2e2e2;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
    display: none;
    padding: 0.75rem 0;
  }

  .main-navigation.is-open {
    display: block;
  }

  .main-navigation .menu {
    flex-direction: column;
    gap: 0;
  }

  .main-navigation .menu li {
    padding: 0.4rem 1.25rem;
  }

  .main-navigation .menu a {
    display: block;
    width: 100%;
  }
  
    /* Mobile dropdown sub-menu inside list (no absolute) */
  .main-navigation .sub-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    display: none;
  }

  .main-navigation .menu > li.menu-item-has-children.open > .sub-menu {
    display: block;
  }

  /* Hide desktop CTAs on mobile – sticky bar handles it */
  .header-cta {
    display: none;
  }

  /* Brand + toggle on same row */
  .site-branding {
    flex: 1;
  }
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  padding: 3rem 0 2.5rem;

  /* DESKTOP: photo + soft gradient overlay */
  background:
    linear-gradient(
      135deg,
      rgba(0, 71, 171, 0.90),   /* DMV blue, darker on left */
      rgba(210, 31, 60, 0.88)   /* DMV red, softer on right */
    ),
    url('https://dmvmovinghelp.com/staging/wp-content/themes/dmv-movers/images/home-hero-crew-desktop.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Subtle extra overlay – darkens the left where headline lives */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 5% 20%,                /* bright spot top-left */
    rgba(0, 0, 0, 0.35),
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

/* Make sure hero content sits above overlay */
.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;   /* was center, then flex-start */
}

.hero-inner {
  position: relative;
  z-index: 1;          /* sits above background */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* subtle darkening just behind content, especially on small screens */
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.15), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero-eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.hero-title {
  font-size: 2.2rem;
  line-height: 1.1;
  margin: 0.5rem 0;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1rem;
  max-width: 32rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-badge {
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-phone-note {
  font-size: 0.85rem;
  opacity: 0.9;
}



.hero-reviews {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: 0.9rem;
}

.hero-reviews-stars {
  color: #ffb400;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.hero-reviews-text {
  margin: 0 0 0.35rem;
}

.hero-reviews-meta {
  margin: 0;
  color: #e3e3e3;
  font-size: 0.8rem;
}

/* =========================================
   Homepage Hero – photo + gradient overlay
   ========================================= */

/* Desktop / tablet default */
.hero {
  /* keep your existing padding & text colors */
  color: #fff;
  padding: 3rem 0 2.5rem;

  /* layered background: gradient on top of the photo */
  background-image:
    linear-gradient(135deg, rgba(0, 71, 171, 0.88), rgba(210, 31, 60, 0.88)),
    url("https://dmvmovinghelp.com/staging/wp-content/themes/dmv-movers/images/home-hero-crew-desktop.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mobile – swap to the tall image */
@media (max-width: 768px) {
  .hero {
    background-image:
      linear-gradient(145deg, rgba(0, 40, 110, 0.93), rgba(210, 31, 60, 0.9)),
      url("https://dmvmovinghelp.com/staging/wp-content/themes/dmv-movers/images/home-hero-crew-mobile.jpg");
    background-position: center top;
  }
}

/* Quote */
.quote-card {
  background: #fff;
  color: #111;
  border-radius: 0.75rem;
  padding: 1.4rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.quote-card h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.quote-card p {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0;
}

/* Grid layout for fields */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.8rem;
  row-gap: 0.7rem;
}

.quote-grid .full {
  grid-column: 1 / -1;
}

/* Labels + inputs */
.quote-card label {
  font-size: 0.8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.2rem;
}

.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.45rem 0.6rem;
  border-radius: 0.375rem;
  border: 1px solid #d0d0d0;
  font-size: 0.9rem;
}

.quote-card textarea {
  min-height: 60px;
  resize: vertical;
}

.quote-footnote {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #777;
}


/* Mobile fix: prevent date field overlapping Move Type */
@media (max-width: 768px) {
  /* Target the CF7 date input specifically */
  .wpcf7-form input[type="date"] {
    padding-right: 0px; /* reduce from default */
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* CF7 request-quote placeholders */
.wpcf7-form-control::placeholder {
  color: #9aa0a6;
  opacity: 1;
}

/* Date field placeholder color (desktop hint mm/dd/yyyy) */
input[type="date"] {
  color: #9aa0a6;
}

/* Once date has a value, use normal text color */
input[type="date"]:valid {
  color: inherit;
}

/* Request Quote date placeholder overlay (mobile-safe) */
.rq-date-wrap {
  position: relative;
}

.rq-date-wrap .rq-date-placeholder {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9aa0a6;
  pointer-events: none;
  z-index: 2;
  font-size: inherit;
  line-height: 1;
}

/* Hide the placeholder when focused or has value */
.rq-date-wrap.is-focused .rq-date-placeholder,
.rq-date-wrap.has-value .rq-date-placeholder {
  display: none;
}

/* Desktop: hide the native mm/dd/yyyy hint so only our "Select a date" shows */
@media (min-width: 769px) {
  .rq-date-wrap input[type="date"] {
    color: transparent;
    -webkit-text-fill-color: transparent; /* Chrome/Safari */
    caret-color: transparent;
  }

  /* When focused OR has a value, show the date normally */
  .rq-date-wrap.is-focused input[type="date"],
  .rq-date-wrap.has-value input[type="date"] {
    color: inherit;
    -webkit-text-fill-color: inherit;
    caret-color: auto;
  }
}


/* Sections */
.section {
  padding: 2.5rem 0;
  background: #f7f7f7;
}

.section.alt {
  background: #ffffff;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #555;
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 2rem;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.25rem;
}

.feature-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.08),   /* subtle inner shadow */
    0 6px 18px rgba(0, 0, 0, 0.06);        /* outer soft lift */
  transition: all 0.2s ease;
  position: relative;   /* add this */
  overflow: hidden;     /* add this */
}

/* Premium top accent border */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;  /* visually thin but smooth gradient */
  background: linear-gradient(
    to right,
    #d21f3c,
    #0047ab
  );
  opacity: 0.65;     /* subtle but noticeable */
  border-radius: 0.75rem 0.75rem 0 0; /* match card rounding */
}

/* Hover spotlight effect inside service cards */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 0,
    rgba(255, 255, 255, 0.55),
    transparent 55%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card h3 {
  margin-top: 0;
  font-size: 1rem;
}

.feature-pill {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d21f3c;
  margin-bottom: 0.3rem;
}

.section.alt .feature-grid {
  margin-bottom: 2.5rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.testimonial-stars {
  color: #ffb400;
  margin-bottom: 0.5rem;
}

/* =========================================
   Testimonial Slider – Fade Between Reviews
   ========================================= */

.testimonials-section {
  /* optional: very light background band */
  background: #f7f7f7;
}

/* Slider wrapper */
.testimonial-slider {
  position: relative;
  max-width: 760px;
  margin: 2rem auto 0;
}

/* Base card styling – reuse your existing card look */
.testimonial-slider .testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  pointer-events: none;
}

/* Active slide */
.testimonial-slider .testimonial-card.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Make sure the slider area always has some height (prevents layout jump) */
.testimonial-slider {
  min-height: 190px; /* you can tweak 180–230px if needed */
}

/* Dots / indicators */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(0,0,0,0.18);
  cursor: pointer;
  transition: all 0.2s ease;
}

.testimonial-dot.is-active {
  width: 18px;
  background: linear-gradient(135deg, #0047ab, #d21f3c);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .testimonials-section .section-subtitle {
    max-width: 28rem;
    margin-inline: auto;
  }

  .testimonial-slider {
    margin-top: 1.75rem;
  }
}

/* Testimonial Slider Chevrons */
.testimonial-slider {
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y; /* allow vertical scroll, still lets us detect horizontal */
}

.testimonial-slider {
  position: relative;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.15);
  background: rgba(255,255,255,.92);
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}

.testimonial-arrow--prev { left: 10px; }
.testimonial-arrow--next { right: 10px; }

.testimonial-arrow:active {
  transform: translateY(-50%) scale(0.98);
}

/* Slightly smaller on mobile */
@media (max-width: 768px) {
  .testimonial-arrow {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
}


/* Testimonial slider arrows */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: transparent;        /* ✅ transparent */
  border: none;
  box-shadow: none;

  color: #111;                    /* icon color */
  font-size: 28px;                /* arrow size */
  line-height: 1;

  padding: 12px;                  /* big tap target */
  cursor: pointer;

  opacity: 0.55;                  /* subtle by default */
  transition: opacity .2s ease, transform .2s ease;

  z-index: 5;
}

/* Left / Right placement */
.testimonial-arrow--prev {
  left: 8px;
}

.testimonial-arrow--next {
  right: 8px;
}

/* Hover / focus feedback (desktop) */
.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}

/* Active press */
.testimonial-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

/* Mobile polish */
@media (max-width: 768px) {
  .testimonial-arrow {
    font-size: 24px;
    padding: 14px;
    opacity: 0.7;
  }
}


.testimonial-arrow--prev,
.testimonial-arrow--next {
  transform: translateY(-50%) translateY(18px);
}


/* Footer */
.site-footer {
  background: #111;
  color: #eee;
  margin-top: 2rem;
}

.footer-inner {
  padding: 2rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  font-size: 0.9rem;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
}

.footer-bottom {
  font-size: 14px;
  opacity: 0.85;
}

.footer-bottom a {
  font-weight: 600;
  text-decoration: none;
}

.footer-separator {
  margin: 0 8px;
  opacity: 0.6;
}

/* Footer Upgrade */
.footer-col {
  font-size: 0.92rem;
  color: #ddd;
  line-height: 1.55;
}

.footer-about {
  margin-top: 0.35rem;
  margin-bottom: 0.75rem;
  color: #ccc;
  max-width: 28rem;
}

.footer-phone a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.footer-phone a:hover {
  text-decoration: underline;
}

.footer-hours {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-site a {
  color: #ddd;
  text-decoration: none;
}
.footer-site a:hover {
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.35rem;
}
.footer-links a {
  color: #ddd;
  text-decoration: none;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-coverage {
  color: #ccc;
  max-width: 24rem;
  margin: 0 0 0.75rem;
}

.footer-coverage-sub {
  color: #bbb;
  font-size: 0.85rem;
  max-width: 24rem;
}

/* Mobile stack cleanly */
@media (max-width: 768px) {
  .footer-col {
    text-align: center;
  }
  .footer-links {
    text-align: center;
  }
}


/* Footer social icons  */
.footer-social{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.footer-social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  text-decoration:none;
}

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

.footer-social-link:hover{
  opacity:.85;
}

/* Mobile: slightly larger tap targets */
@media (max-width:768px){
  .footer-social-link{
    width:40px;
    height:40px;
  }
}

/* Center social icons on mobile */
@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }
}

.footer-text-link{
  font-weight: 800;
  text-decoration: underline;
  white-space: nowrap;
}

@media (max-width:768px){
  .footer-text-link{ padding:2px 0; }
}


/* Desktop/tablet: 3 columns */
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

/* Mobile: collapse into stacked blocks */
@media (max-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;   /* stack */
    gap: 18px;
  }

  /* Make each column feel like a clean "card block" */
  .site-footer .footer-col {
    padding: 14px 12px;
    border: 1px solid rgba(255,255,255,0.12); /* adjust if footer bg is light */
    border-radius: 12px;
  }

  /* Improve readability + reduce visual noise */
  .site-footer .footer-title {
    margin-bottom: 8px;
  }

  .site-footer .footer-links {
    margin-top: 8px;
  }

  /* Center align content (optional but usually looks best on mobile) */
  .site-footer .footer-col {
    text-align: center;
  }

  .site-footer .footer-links {
    padding-left: 0;
    list-style: none;
  }

  .site-footer .footer-links li {
    margin: 8px 0;
  }
}

/* Desktop footer column alignment */
@media (min-width: 769px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* Column 1: left */
  .site-footer .footer-col:nth-child(1) {
    text-align: left;
  }

  /* Column 2: CENTER IT */
  .site-footer .footer-col:nth-child(2) {
    text-align: center;
  }

  /* Column 3: right (optional but recommended for balance) */
  .site-footer .footer-col:nth-child(3) {
    text-align: right;
  }
}


/* Hero trust badges row */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
  max-width: 32rem;
}

.hero-trust-pill {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.hero-trust-title {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Social icons row */
.hero-social-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  align-items: center;
}

/* Circle container */
.hero-social-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
}

/* Force small icon size */
.hero-social-icon img {
  width: 20px !important;
  height: 20px !important;
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.hero-social-icon img {
  filter: brightness(0) invert(1);
}

/* Hover effect */
.hero-social-icon:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.3);
}

@media (min-width: 769px) {
  .quote-card {
    padding: 1.1rem 1.2rem; /* was ~ 1.1rem-1.25rem */
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

@media (min-width: 900px) {
  .services-hero {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .trust-strip {
    margin-inline: auto;
    text-align: center;
  }
}

/* Contact Form 7 styling inside quote card */
.quote-card .wpcf7 {
  margin-top: 0.5rem;
}

.quote-card .wpcf7-form p {
  margin: 0;
}

.quote-card .wpcf7-form .quote-grid > div {
  margin-bottom: 0.5rem;
}

.quote-card .wpcf7-form .wpcf7-submit {
  width: 100%;
}

/* CF7 response messages */
.quote-card .wpcf7-response-output {
  margin: 0.75rem 0 0;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.8rem;
}

/* Success */
.quote-card .wpcf7-form.sent .wpcf7-response-output {
  border-color: #28a745;
  background: #e6f4ea;
  color: #155724;
}

/* Validation / error */
.quote-card .wpcf7-form.invalid .wpcf7-response-output,
.quote-card .wpcf7-form.failed .wpcf7-response-output {
  border-color: #dc3545;
  background: #fdeaea;
  color: #721c24;
}

/* CF7 spinner */
.quote-card .wpcf7-spinner {
  margin-left: 0.5rem;
}
  
  .services-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #d0d0d0, transparent);
  margin: 1.75rem 0 1.75rem;
  opacity: 0.8;
}

  .service-card-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #0047ab;
  text-decoration: none;
}

.service-card-link:hover {
  text-decoration: underline;
  }
  
  .service-subline {
  font-size: 0.85rem;
  color: #666;
  margin: -0.2rem 0 0.05rem;  /* reduced bottom spacing */
  line-height: 1.4;
}

.service-subline {
  display: block;
  margin-top: 0.2rem;
  opacity: 0.85;
}
  
  /* Add clean styling */ 
  .top-rated-banner {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 52rem;
}

.top-rated-line1 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  color: #7a5e00;
}

.top-rated-line2 {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0.35rem 0 0;
  opacity: 0.9;
  color: #7a5e00;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .top-rated-line1 {
    font-size: 0.95rem;
  }
  .top-rated-line2 {
    font-size: 0.9rem;
  }
}
  
/* Service cards: icon styling */
.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  transition: all 0.2s ease;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #e8f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: background 0.18s ease, transform 0.18s ease;
}

/* Put this AFTER the service-icon block */
.icon-apartments { background: #e8f0ff; }
.icon-homes      { background: #eaf8ef; }
.icon-offices    { background: #f3ecff; }
.icon-labor      { background: #fff3e6; }
.icon-delivery   { background: #e6f7f8; }
.icon-extras     { background: #eef3f9; }

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
  stroke: #0047ab;
  transition: stroke 0.18s ease, transform 0.18s ease;
}

.services-hero {
  max-width: 48rem;  /* controls readable width */
  margin-bottom: 0.75rem;
}

.services-hero h1 {
  margin-bottom: 0.35rem !important;  /* tighten gap */
  font-size: 2rem;
  line-height: 1.2;
}

.services-hero .subtitle {
  margin-top: 0 !important;
  margin-bottom: 0.75rem !important;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #555;
}

/* Process Section Grid Fix */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.process-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* How Our Process Works – 2x2 grid on desktop */
.process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 769px) {
  .section.alt {
    padding-bottom: 4rem;
  }
}

/* On small screens, let it stack like normal */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Process CTA Fix ----- */
.process-cta {
  text-align: center;
  margin-top: 2.5rem;      /* creates clean space below the step grid */
  margin-bottom: 2rem;     /* prevents footer from crowding it */
}

.process-cta .btn {
  margin-bottom: 0.75rem;
}

.process-cta-note {
  font-size: 0.9rem;
  margin-top: 0;
}

.step-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.step-icon svg {
  width: 44px;
  height: 44px;
  display: block;
}

/* Desktop: extra space under process cards so CTA never overlaps */
@media (min-width: 769px) {
  .section.alt .feature-grid::after {
    content: "";
    display: block;
    height: 4rem; /* desktop needs a bit more space than mobile */
  }
}

/* Mobile: stack all steps */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra safety space under the step cards on mobile */
@media (max-width: 768px) {
  .section.alt .feature-grid::after {
    content: "";
    display: block;
    height: 3.5rem;   /* pushes CTA further down below Step 4 */
  }
}

@media (max-width: 768px) {
  .section.alt {
    padding-bottom: 3rem;
  }
}

/* ✅ Center "Our Process" section on MOBILE */
@media (max-width: 768px) {

  /* 1) Force the eyebrow line centered (higher specificity than generic p styles) */
  .home-process p.process-eyebrow {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 42rem; /* optional: keeps long line readable */
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* 2) If ANY global styles are shifting the grid, hard reset them */
  .home-process .feature-grid {
    /* Force a clean centered layout regardless of whether your theme used flex/grid */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 auto !important;
    padding: 0 !important;

    /* Kill any offsets that push right */
    transform: none !important;
    left: auto !important;
    right: auto !important;
  }

  /* 3) Center each card and remove any inherited “push-right” spacing */
  .home-process .feature-card{
    box-sizing: border-box !important;

    /* reduce card width so it feels more “square” */
    width: calc(100% - 28px) !important;   /* trims both sides (14px each) */
    max-width: 360px !important;           /* was 420px */

    margin: 0 auto 16px !important;

    /* optional: slightly tighter padding so it doesn’t look wide */
    padding-left: 14px !important;
    padding-right: 14px !important;

    /* common culprits */
    float: none !important;
    clear: both !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
  }
}

@media (max-width: 768px) {

  /* Lock title + subtitle to same visual width as cards */
  .home-process .section-title,
  .home-process .section-subtitle {
    max-width: 360px !important;   /* MATCH card max-width */
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

}


/* keep pill, title, body stacked nicely */
.feature-card .feature-pill {
  margin-bottom: 0.35rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  flex: 1;
}

.feature-card {
  box-shadow: 0 8px 26px rgba(0,0,0,0.06);
  border-radius: 0.75rem;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.04),
    0 10px 28px rgba(0, 0, 0, 0.12);
  background: #ffffff;
}

/* Icon micro-animation inside service cards */
.feature-card:hover .service-icon {
  background: #dce7ff;      /* slightly brighter */
  transform: translateY(-2px);
}

.feature-card:hover .service-icon svg {
  stroke: #003a8f;           /* deeper DMV blue */
  transform: scale(1.06);    /* tiny upscale (not too much) */
}

/* Fix spacing inside service cards */
.feature-card .service-subline {
  margin-top: -0.15rem;   /* tightens space above subline */
  margin-bottom: 0.35rem; /* reduces gap before divider */
}

.feature-card .card-divider {
  margin: 0.35rem 0 0.65rem; /* perfect rhythm above and below */
}

.feature-card p {
  margin-top: 0;
  margin-bottom: 0.35rem; /* reduces long gap after paragraph */
  line-height: 1.55;
}

/* Gradient premium divider inside service cards */
.service-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.10) 40%,
    rgba(0,0,0,0.10) 60%,
    rgba(0,0,0,0) 100%
  );
  margin: 0.4rem 0 0.7rem;
}

.trust-strip-strong {
  font-weight: 600;
}

/* Global trust-strip pill */
.trust-strip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;

  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: #fff7d1;          /* soft highlight */
  border: 1px solid #ffeaa7;

  font-size: 0.9rem;
  color: #7a5e00;
  line-height: 1.4;

  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.trust-strip .trust-main {
  font-weight: 600;
}

.trust-strip .trust-sub {
  font-size: 0.9em;
  opacity: 0.9;
}
  
 /* Services page heading block */
.services-header {
  position: relative;        /* NEW */    
  max-width: 52rem;
  margin: 0 auto 1.75rem;   /* slightly tighter spacing */
}

/* H1 */
.services-header .section-title {
  text-align: left;
  margin: 0 0 0.35rem;      /* reduce gap under H1 */
  font-size: 2rem;
  line-height: 1.2;
}

/* Subtitle */
.services-header .section-subtitle {
  text-align: left;
  margin: 0 0 0.65rem;      /* tighter to match mobile spacing */
  font-size: 0.97rem;       /* slightly smaller for mobile readability */
  line-height: 1.5;
  color: #555;
}

/* The intro paragraph directly below trust-strip */
.services-header .section-intro {
  text-align: left;
  max-width: 40rem;  /* was 42rem */
  margin: 0.9rem 0 0.9rem;  /* balanced spacing above and below */
  font-size: 0.98rem;
  line-height: 1.6;
  color: #444;
}

/* Long SEO paragraph below the divider */
.services-intro {
  max-width: 40rem;          /* match intro paragraph width */
  margin: 1.4rem auto 0;     /* spacing from divider, no huge gap below */
  font-size: 0.98rem;
  line-height: 1.6;
  color: #444;
  text-align: left;
}

/* ===============================
   Services Hero Banner (Photo)
   =============================== */

.services-hero-banner {
  margin: 1.5rem 0 1.75rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  background: #000;            /* nice fade while loading */
}

.services-hero-banner picture,
.services-hero-banner img {
  display: block;
  width: 100%;
  height: 100%;
}

.services-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* crop nicely for both ratios */
}

/* Desktop aspect (1920×800) */
@media (min-width: 769px) {
  .services-hero-banner {
    aspect-ratio: 1920 / 800;
  }
}

/* Mobile aspect (1080×1400) */
@media (max-width: 768px) {
  .services-hero-banner {
    aspect-ratio: 1080 / 1400;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.hero-img-desktop,
.hero-img-mobile {
  display: block;
  width: 100%;
  height: auto;
}

/* Desktop default: show desktop, hide mobile */
.hero-img-desktop { display: block; }
.hero-img-mobile  { display: none; }

@media (max-width: 768px) {
  /* On mobile: swap them */
  .hero-img-desktop { display: none; }
  .hero-img-mobile  { display: block; }
}

/* Home hero – mobile layout fix */
@media (max-width: 768px) {
  .home .hero-inner {
    grid-template-columns: 1fr;   /* stack text + form */
    gap: 1.5rem;
  }

  .home .hero {
    padding: 2.25rem 0 2rem;      /* a bit less vertical padding */
  }
}

/* Home hero – use mobile background on small screens */
@media (max-width: 768px) {
  .home .hero {
    background-image:
      linear-gradient(135deg, rgba(0, 71, 171, 0.88), rgba(210, 31, 60, 0.9)),
      url('https://dmvmovinghelp.com/staging/wp-content/themes/dmv-movers/images/home-hero-crew-mobile.jpg');
    background-size: 120%;              /* still fills the area */
    background-position: center 10%;  /* “pulls” the truck/crew into view */
    background-repeat: no-repeat;
    padding-top: 2.5rem;                 /* a bit more breathing room */
    padding-bottom: 2.5rem;
  }

  /* Slightly simpler overlay on mobile so it doesn’t get too dark */
  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.35),
      transparent 45%
    );
  }
}
/* ===============================
   Services – Crew Feature Photo
   =============================== */

.services-crew-feature {
  max-width: 1100px;
  margin: 3rem auto 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.services-crew-feature img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .services-crew-feature {
    margin: 2rem 1rem 1.25rem;
    border-radius: 0.85rem;
  }
}

/* ----------------------------------------------------
   FIX CTA WRAPPING ON BOTH MOBILE & DESKTOP
   Adds space below the steps grid and above the CTA
----------------------------------------------------- */

/* Desktop + Tablet */
.section.alt .feature-grid {
  margin-bottom: 3rem !important;
}

.section.alt .cta-wrapper {
  text-align: center;
  margin-top: 3rem !important;
}

.section.alt .cta-wrapper .btn {
  margin-top: 0;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .section.alt .feature-grid {
    margin-bottom: 2.5rem !important;
  }
  .section.alt .cta-wrapper {
    margin-top: 2.5rem !important;
  }
}

/* trust-strip spacing here is on top of the global style */
.services-header .trust-strip {
  margin-top: 0.4rem;
  margin-bottom: 1.4rem;
}

/* Final, override-all positioning for the truck visual */
.services-hero-visual {
  position: absolute;
  right: 2.5rem;      /* nudge inward from right edge */
  bottom: 1.75rem;    /* lift it up a bit */
  max-width: 260px;
  opacity: 0.95;
  pointer-events: none;
  z-index: 3;         /* make sure it sits ABOVE service cards */
}

/* Keep SVG responsive inside the wrapper */
.services-hero-visual img,
.services-hero-visual svg {
  max-width: 100%;
  height: auto;
}

/* =========================================
   Mobile Sticky CTA – force hidden on desktop
   ========================================= */

/* Default: hide everywhere */
.mobile-sticky-cta {
  display: none !important;
}

/* Mobile only: show + style */
@media (max-width: 768px) {
  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1rem;
    background: #111827;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.35);
  }

  .mobile-sticky-cta a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }

  .mobile-sticky-cta .cta-phone {
    opacity: 0.9;
  }

  .mobile-sticky-cta .btn-quote {
    background: #d21f3c;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    white-space: nowrap;
  }
}

/* Hide the truck on mobile */
@media (max-width: 768px) {
  .services-hero-visual {
    display: none;
  }
}

/* =========================================
   Homepage Intro – match Services page feel
   ========================================= */

.home-intro-wrap {
  padding-top: 2.75rem;
  padding-bottom: 1.75rem;
}

/* Container + max width */
.home-intro {
  max-width: 48rem;
  margin: 0 auto 0.75rem;
  text-align: center;
}

/* Title (matches services-page H1 energy) */
.home-intro-title {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

/* Body paragraph – readable spacing */
.home-intro-body {
  margin: 0.55rem auto;       /* <-- fixes paragraphs touching */
  font-size: 0.98rem;
  line-height: 1.6;
  color: #444;
  max-width: 40rem;           /* tighter readable width */
}

/* =========================================
   Mobile Adjustments
   ========================================= */
@media (max-width: 768px) {
  .home-intro-wrap {
    padding-top: 2.25rem;
    padding-bottom: 1.5rem;
  }

  /* force centered layout on mobile */
  .home-intro {
    padding: 0 1.25rem;        /* prevents text from hitting edge */
    text-align: center !important;
  }

  .home-intro-title {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  .home-intro-body {
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0.5rem 0;         /* cleaner separation */
  }
}

/* =========================================
   Homepage Services – match Services page feel
   ========================================= */

.home-services {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

/* Header above the cards */
.home-services-header {
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.home-services-header .section-title {
  margin: 0 0 0.4rem;
  font-size: 1.9rem;
  line-height: 1.2;
}

.home-services-header .section-subtitle {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #555;
}

/* Tighten spacing between this section and the next one on mobile */
@media (max-width: 768px) {
  .home-services {
    padding-top: 2.25rem;
    padding-bottom: 2.5rem;
  }

  .home-services-header .section-title {
    font-size: 1.7rem;
  }

  .home-services-header .section-subtitle {
    font-size: 0.95rem;
  }
}

/* Force center alignment for homepage services header */
.home-services-header {
  text-align: center !important;
}

.home-services-header .section-title,
.home-services-header .section-subtitle {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* =========================================
   Divider + Micro Trust Line (after intro)
   ========================================= */

/* =========================================
   Premium Glow Divider (DMV Red + Blue)
   ========================================= */

.section-divider {
  width: 100%;
  max-width: 760px;
  height: 3px;  /* thicker */
  margin: 2.75rem auto 1.5rem;
  border-radius: 999px;

  background: linear-gradient(
    to right,
    rgba(210, 31, 60, 0) 0%,     /* DMV red fades in */
    rgba(210, 31, 60, 0.55) 28%,
    rgba(0, 71, 171, 0.55) 72%,  /* DMV blue blend */
    rgba(0, 71, 171, 0) 100%
  );

  box-shadow: 0 0 16px rgba(210, 31, 60, 0.25),
              0 0 22px rgba(0, 71, 171, 0.25); /* glow */
}

@media (max-width: 768px) {
  .section-divider {
    height: 2px;
    margin: 2rem auto 1rem;
    box-shadow: 0 0 12px rgba(210, 31, 60, 0.18),
                0 0 18px rgba(0, 71, 171, 0.18);
  }
}

/* =========================================
   Glassy Micro-Trust Pill (Final Version)
   ========================================= */

.micro-trust {
  display: block;  /* was inline-block – this is the key fix */
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55); /* glass base */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 4px 18px rgba(0,0,0,0.08),
    0 0 18px rgba(210, 31, 60, 0.15),
    0 0 22px rgba(0, 71, 171, 0.15); /* DMV red + blue glow */
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  text-align: center;

  margin: 1.5rem auto 2.2rem;  /* centers the pill horizontally */
  max-width: 90%;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .micro-trust {
    font-size: 0.92rem;
    padding: 0.85rem 1.25rem;
    max-width: 92%;
  }
}

/* =========================================
   Home Services Section – align with Services page
   ========================================= */

.home-services-header {
  max-width: 44rem;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.home-services-header .section-title {
  margin-bottom: 0.35rem;
}

.home-services-header .section-subtitle {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.5;
  color: #555;
}

/* Optional: slightly tighter gap before the grid on home */
.home-services .feature-grid {
  margin-top: 1.9rem;
}

/* Small accent badges under service titles */
.home-services .service-accent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;

  background: rgba(0, 71, 171, 0.06);  /* soft DMV blue tint */
  border: 1px solid rgba(0, 71, 171, 0.15);

  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0047ab;

  margin: 0.25rem 0 0.6rem;  /* nice breathing room under h3 / before body text */
}

/* Tiny dot inside the badge for extra polish */
.home-services .service-accent-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d21f3c, #0047ab); /* DMV red → blue */
}

/* =========================================
   HOMEPAGE PROCESS SECTION – PREMIUM STYLE
   ========================================= */

/* Number pill (1, 2, 3, 4) */
.home-process .step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0047ab, #d21f3c);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* Tiny divider under the step heading */
.home-process .process-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0)
  );
  margin: 0.35rem 0 0.8rem;
}

/* Slightly larger card padding (matches Services page) */
.home-process .feature-card {
  padding: 1.5rem 1.4rem 1.25rem;
}

/* Hover consistency */
.home-process .feature-card:hover .step-num {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

/* Mobile refinements */
@media (max-width: 768px) {
  .home-process .step-num {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }

  .home-process .feature-card {
    padding: 1.35rem 1.25rem 1.1rem;
  }
}

/* =========================================
   HOMEPAGE PROCESS – TIMELINE CONNECTOR
   ========================================= */

/* Make the grid a timeline container */
.home-process .feature-grid {
  position: relative;
}

/* Desktop: force 4-in-a-row + connector line */
@media (min-width: 900px) {
  .home-process .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  /* Horizontal line connecting all 4 steps */
  .home-process .feature-grid::before {
    content: "";
    position: absolute;
    top: 64px; /* adjust if needed to sit just behind the pills */
    left: 7%;
    right: 7%;
    height: 2px;
    background: linear-gradient(
      to right,
      rgba(0, 71, 171, 0.0),
      rgba(0, 71, 171, 0.28),
      rgba(210, 31, 60, 0.32),
      rgba(0, 71, 171, 0.28),
      rgba(0, 71, 171, 0.0)
    );
    z-index: 0;
  }

  /* Keep cards above the line */
  .home-process .feature-card {
    position: relative;
    z-index: 1;
  }

  /* Little timeline dot under each step number */
  .home-process .feature-card::after {
    content: "";
    position: absolute;
    top: 57px;  /* tweak together with ::before top value */
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid #d21f3c;
    box-shadow: 0 0 0 3px rgba(210, 31, 60, 0.18);
  }
}

/* Mobile: keep it clean (no line, dots disappear automatically) */
@media (max-width: 899px) {
  .home-process .feature-grid::before {
    display: none;
  }
}

/* =========================================
   HOMEPAGE PROCESS – MICRO INTRO + GRADIENT
   ========================================= */

/* Soft gradient background only for this section */
.home-process {
  position: relative;
  background: radial-gradient(
      circle at top left,
      rgba(0, 71, 171, 0.06),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(210, 31, 60, 0.06),
      transparent 55%
    ),
    #ffffff;
}

/* Slight padding tweak so it breathes like a premium band */
.home-process.section.alt {
  padding-top: 1.75rem;
  padding-bottom: 3.25rem;
}

/* Micro intro above "Our Process" */
.process-eyebrow {
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0047ab;
  font-weight: 600;
  margin: 0 0 0.7rem;
  opacity: 0.9;
}

/* Tighten space between eyebrow / title / subtitle */
.home-process .section-title {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.home-process .section-subtitle {
  margin-top: 0;
  margin-bottom: 1.7rem;
}

/* Mobile refinements */
@media (max-width: 768px) {
  .home-process.section.alt {
    padding-top: 2.4rem;
    padding-bottom: 2.6rem;
  }

  .process-eyebrow {
    font-size: 0.82rem;
    padding: 0 1.2rem;
  }

  .home-process .section-subtitle {
    margin-bottom: 1.5rem;
  }
}

/* ===============================
   Process Section – Step Labels
   =============================== */

.home-process .step-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #777;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

/* tighten spacing so label stays connected visually */
.home-process .step-num {
  margin-bottom: 0.15rem;
}

/* =========================================
   Process Section (Eyebrow, Layout, Structure)
   ========================================= */

.home-process {
  position: relative;
  background: radial-gradient(circle at top left, #f3f6ff 0, transparent 45%),
              radial-gradient(circle at bottom right, #fff5f7 0, transparent 50%),
              #ffffff;
}

.process-eyebrow {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 0.4rem;
}

/* Step number badge – DMV gradient ring */
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* gradient ring */
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #d21f3c, #0047ab) border-box;
  border: 2px solid transparent;

  font-size: 1.1rem;
  font-weight: 700;
  color: #0047ab;  /* or #d21f3c if you prefer red numbers */
  margin: 0 auto 0.35rem;
}

/* Mobile slightly smaller */
@media (max-width: 768px) {
  .step-num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Step label */
.home-process .step-label {
  text-align: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #666;
  margin-bottom: 0.6rem;
}

/* Divider under step head */
.home-process .process-divider {
  height: 1px;
  width: 40%;
  max-width: 80px;
  margin: 0.3rem auto 0.7rem;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,71,171,0.35) 40%,
    rgba(210,31,60,0.35) 100%
  );
  opacity: 0.9;
}

/* Desktop timeline stems */
@media (min-width: 769px) {
  .home-process .step-num::before,
  .home-process .step-num::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-image: linear-gradient(
      to bottom,
      rgba(0,71,171,0.25) 25%,
      transparent 25%
    );
    background-size: 2px 8px;
  }

  .home-process .step-num::before {
    top: -16px;
    height: 16px;
  }

  .home-process .step-num::after {
    bottom: -16px;
    height: 16px;
  }
}

/* Mobile: vertical dotted timeline */
@media (max-width: 768px) {

  .home-process .feature-grid {
    display: block;
    padding-left: 2.7rem;
    position: relative;
  }

  .home-process .feature-grid::before {
    content: "";
    position: absolute;
    left: 1.55rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-image: linear-gradient(
      to bottom,
      rgba(0,71,171,0.35) 25%,
      transparent 25%
    );
    background-size: 2px 10px;
  }

  /* Step number becomes a node */
  .home-process .step-num {
    position: absolute;
    left: 0.8rem;
    top: 0.4rem;
  }

  /* Shift text right so it doesn’t overlap */
  .home-process .step-label,
  .home-process .process-divider,
  .home-process h3,
  .home-process p {
    margin-left: 2.6rem;
  }

  .home-process .feature-card {
    margin-bottom: 2rem;
    padding-left: 0.5rem;
  }
}

/* Hover glow */
.home-process .feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-process .feature-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.12),
    0 0 18px rgba(0,71,171,0.18),
    0 0 18px rgba(210,31,60,0.12);
}

/* ===================================
   Home Process – Premium Hover Effect
   =================================== */

.home-process .feature-card {
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-process .feature-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.14),
    0 0 26px rgba(0, 71, 171, 0.18),
    0 0 22px rgba(210, 31, 60, 0.16);
}

/* =========================================
   Review video — polished + constrained (merged)
   Replace previous review-video CSS with this block
   ========================================= */

.review-video-section {
  background: radial-gradient(circle at top left, #f3f6ff 0, transparent 55%),
              radial-gradient(circle at bottom right, #fff5f7 0, transparent 55%),
              #ffffff;
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

.review-video-inner {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,0.85fr);
  gap: 2.25rem;
  align-items: start;
}

/* left copy */
.review-video-copy { max-width: 40rem; margin: 0; }
.review-video-eyebrow { text-transform: uppercase; letter-spacing: .12em; color:#666; font-weight:600; margin:0 0 .45rem; font-size:.82rem; }
.review-video-title { font-size:1.6rem; margin:0 0 .5rem; color:#111; line-height:1.18; }
.review-video-sub { margin:0 0 1rem; color:#444; line-height:1.6; }

/* right: framed video column */
.review-video-media { display:flex; align-items:center; justify-content:center; }

/* framed card — DMV gradient border + glow */
.review-video-frame {
  position: relative;
  width: 100%;
  max-width: 460px;        /* desktop cap; scales down on smaller viewports */
  padding: 6px;            /* gradient border thickness */
  border-radius: 12px;
  background:
    linear-gradient(#ffffff,#ffffff) padding-box,
    linear-gradient(135deg,#d21f3c 15%, #0047ab 85%) border-box;
  box-shadow:
    0 18px 42px rgba(0,0,0,0.18),
    0 0 22px rgba(0,71,171,0.12),
    0 0 18px rgba(210,31,60,0.10);
  overflow: hidden;
  display:block;
}

/* actual video element: keep 9:16 aspect and cover the frame */
.review-video-frame video,
.review-video-frame iframe {
  width: 100%;
  aspect-ratio: 9 / 16;    /* ensures portrait proportion */
  height: auto;
  display: block;
  object-fit: cover;       /* crop cleanly without distortion */
  border-radius: 8px;
  background:#000;
}

/* add a soft play overlay purely visual */
.review-video-frame .play-overlay {
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:64px; height:64px; border-radius:999px;
  background: rgba(0,0,0,0.35); color:#fff; display:flex;
  align-items:center; justify-content:center; font-size:22px;
  pointer-events:none; opacity:0; transition:opacity .18s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.review-video-frame:hover .play-overlay { opacity:1; }

/* caption under framed video */
.review-video-caption { margin-top:.6rem; font-size:.88rem; color:#666; text-align:center; }

/* ===== sizing rules to prevent tall video from overpowering left copy ===== */
/* Desktop wide screens: cap height relative to viewport */
@media (min-width: 1100px) {
  .review-video-frame { max-height: 62vh; }         /* keeps video visually balanced */
  .review-video-frame video { height: 100%; }      /* allow height-based scaling */
}

/* Fallback pixel cap (helps older browsers) */
.review-video-frame { max-height: 920px; }

/* Tablet & mobile: stack and scale down */
@media (max-width: 1024px) {
  .review-video-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .review-video-copy { text-align: center; margin: 0 auto; max-width: 34rem; }
  .review-video-title, .review-video-sub { text-align: center; }
  .review-video-highlights { margin-inline:auto; max-width:22.5rem; text-align:left; }
  .review-video-frame { max-width: 360px; padding:5px; }
  .review-video-frame video { aspect-ratio: 9/16; max-height: 70vh; }
}

/* small mobile tweaks */
@media (max-width: 480px) {
  .review-video-frame { border-radius: 10px; max-height: 58vh; }
}

/* very wide screens: allow a slightly larger framed video */
@media (min-width: 1300px) {
  .review-video-frame { max-width: 520px; }
}

/* =========================================
   HOME TESTIMONIALS – PREMIUM UPGRADE
   ========================================= */

.home-testimonials {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

/* Eyebrow above the title */
.testimonials-eyebrow {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0047ab;
  opacity: 0.75;
  margin: 0 0 0.75rem;
}

/* Subtitle under the title */
.testimonials-subtitle {
  text-align: center;
  max-width: 38rem;
  margin: 0.35rem auto 2rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #555;
}

/* Premium DMV gradient divider above the cards */
.home-testimonials::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 760px;
  height: 3px;
  margin: 0 auto 2.2rem;
  border-radius: 999px;

  background: linear-gradient(
    to right,
    rgba(210, 31, 60, 0) 0%,
    rgba(210, 31, 60, 0.55) 28%,
    rgba(0, 71, 171, 0.55) 72%,
    rgba(0, 71, 171, 0) 100%
  );

  box-shadow: 
    0 0 16px rgba(210, 31, 60, 0.22),
    0 0 20px rgba(0, 71, 171, 0.22);
}

/* Testimonial cards upgraded (soft lift + glow on hover) */
.testimonial-card {
  border-radius: 0.75rem;
  padding: 1.35rem;
  background: #fff;
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.06),
    0 0 0 rgba(0,0,0,0);
  transition: all 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.12),
    0 0 16px rgba(0, 71, 171, 0.12),
    0 0 14px rgba(210, 31, 60, 0.12);
}

.hero .hero-watch-link {
  color: #F2F0EF;
  font-weight: 600;
  text-decoration: none;
  background: rgba(210,31,60,0.25);
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(210,31,60,0.45);
  backdrop-filter: blur(4px);
}
.hero .hero-watch-link:hover {
  text-decoration: underline;
}

/* ===============================
   Review section — corrected layout
   (paste AFTER previous review rules)
   =============================== */

.review-section .container {
  display: grid;
  grid-template-columns: 1fr 420px; /* left content / right video */
  gap: 2.25rem;
  align-items: start;
  align-content: start;
}

/* Right column becomes a vertical stack (video then caption) */
.review-video {
  display: flex;
  flex-direction: column;    /* <-- ensure caption sits below video */
  align-items: center;
  justify-content: flex-start;
}

/* video frame styling — matches site card aesthetic */
.review-video .video-frame {
  width: 100%;
  max-width: 420px;            /* desktop video column width */
  aspect-ratio: 9 / 16;        /* keeps portrait aspect */
  height: auto;
  max-height: 62vh;            /* caps height on large screens */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12), 0 8px 22px rgba(0,71,171,0.08);
  border: 6px solid rgba(255,255,255,0.95);
  background: #000;
  display: block;
}

/* Make the <video> fill the frame */
.review-video .video-frame video,
.review-video .video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Caption centered under the video */
.review-video .video-caption {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: #666;
  text-align: center;
  width: 100%;
  max-width: 420px;
}

/* Tablet and mobile: stack columns, make video full-width but keep aspect */
@media (max-width: 1024px) {
  .review-section .container {
    grid-template-columns: 1fr;  /* stack left + right */
  }

  .review-video .video-frame {
    max-width: 640px;
    width: 100%;
    max-height: 80vh; /* large but constrained */
    aspect-ratio: 9 / 16;
    margin: 0 auto;
  }

  .review-video .video-caption {
    max-width: 640px;
  }
}

/* Small mobile tweaks */
@media (max-width: 480px) {
  .review-video .video-frame {
    border-radius: 12px;
    max-height: 77vh;
  }

  .review-section .container {
    gap: 1.2rem;
  }
}

/* ===== Review column balance & CTA styling (desktop) ===== */
@media (min-width: 1100px) {
  .review-section .container {
    align-items: stretch; /* stretch columns to same height */
  }

  /* vertically center left copy content inside the stretched column */
  .review-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
    padding-right: 0.6rem; /* small breathing space */
  }

  /* cap video height so it doesn't tower the left column */
  .review-video .video-frame {
    max-height: 620px;   /* tweak this value (480–560px) as needed to match your copy height */
  }
}

/* Small site-friendly styles for bullets, quote, CTAs */
.review-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 0.65rem;
  color: #444;
  font-weight: 500;
}
.review-highlights li {
  margin-bottom: 0.45rem;
  padding-left: 1.25rem;
  position: relative;
}
.review-highlights li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0a7a38;
  font-weight: 700;
}

/* Quote */
.review-quote {
  margin: 0.6rem 0;
  padding-left: 1rem;
  border-left: 3px solid rgba(0,71,171,0.12);
  color: #333;
  font-style: italic;
  font-weight: 600;
}
.review-quote cite {
  display: block;
  margin-top: 0.35rem;
  font-style: normal;
  color: #666;
  font-weight: 600;
}

/* CTA buttons inline block */
.review-cta-wrap {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}
.review-cta { padding: 0.55rem 1rem; font-weight:700; border-radius: 999px; text-decoration:none; }
.review-cta-outline {
  background: transparent;
  color: #0047ab;
  border: 2px solid rgba(0,71,171,0.12);
  padding: 0.45rem 0.95rem;
}


.review-section .btn-secondary {
  background: #d21f3c !important;
  color: #ffffff !important;
  border-color: #d21f3c !important;
  opacity: 1 !important;
}

/* =========================================
   Desktop-only: subtle gradient behind video
   ========================================= */
@media (min-width: 1100px) {
  .review-section .review-video {
    padding: 1.4rem;
    border-radius: 1.2rem;
    background: linear-gradient(
      135deg,
      rgba(210, 31, 60, 0.06) 0%,
      rgba(0, 71, 171, 0.06) 100%
    );
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  }
}

/* =========================================
   Testimonials – Google Trust Footer
   ========================================= */

.testimonials-footer {
  text-align: center;
  margin-top: 2rem;
}

/* Google trust line with tiny badge */
.testimonials-google-trust {
  font-size: 0.95rem;
  color: #444;
  margin: 0 0 0.4rem;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Tiny Google "G" badge (no image needed) */
.google-badge {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;

  background: radial-gradient(circle at 30% 30%, #ffffff33, transparent 60%),
              conic-gradient(
                #4285f4 0deg 90deg,   /* blue */
                #ea4335 90deg 180deg, /* red */
                #fbbc05 180deg 270deg,/* yellow */
                #34a853 270deg 360deg /* green */
              );
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

/* Link with subtle pulse on hover */
.testimonials-google-link a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0047ab;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

/* Underline on hover + pulse animation */
.testimonials-google-link a:hover {
  text-decoration: underline;
  animation: google-link-pulse 0.7s ease-out;
}

/* Small pulse animation */
@keyframes google-link-pulse {
  0% {
    transform: translateY(0);
    text-shadow: none;
  }
  40% {
    transform: translateY(-1px);
    text-shadow: 0 0 8px rgba(0,71,171,0.26);
  }
  100% {
    transform: translateY(0);
    text-shadow: none;
  }
}

@keyframes pricing-cta-pulse {
  0% {
    transform: translateY(-1px) scale(1);
    box-shadow:
      0 8px 22px rgba(0,0,0,0.12),
      0 0 16px rgba(0,71,171,0.18),
      0 0 16px rgba(210,31,60,0.14);
  }
  40% {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
      0 12px 30px rgba(0,0,0,0.18),
      0 0 22px rgba(0,71,171,0.26),
      0 0 22px rgba(210,31,60,0.22);
  }
  100% {
    transform: translateY(-1px) scale(1);
    box-shadow:
      0 9px 24px rgba(0,0,0,0.14),
      0 0 18px rgba(0,71,171,0.2),
      0 0 18px rgba(210,31,60,0.16);
  }
}

/* Mobile fix – center Google rating line cleanly */
@media (max-width: 768px) {
  .home-testimonials .testimonials-footer {
    text-align: center;
  }

  .home-testimonials .testimonials-google-trust {
    display: block;                /* no flex – let it behave like normal text */
    width: 100%;
    text-align: center;            /* center the whole line */
    margin: 0 auto 0.4rem;
  }

  .home-testimonials .testimonials-google-trust .google-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.35rem;         /* small space before "5.0 rating on Google" */
    vertical-align: middle;
  }
}

/* =========================================
   WHY HIRE US – Comparison Section
   ========================================= */

.why-hire-us {
  background: radial-gradient(circle at top left, #f3f6ff 0, transparent 55%),
              radial-gradient(circle at bottom right, #fff5f7 0, transparent 55%),
              #ffffff;
  padding-top: 2.75rem;
  padding-bottom: 3rem;
  text-align: center;
}

.why-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: #0047ab;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.why-subtitle {
  max-width: 36rem;
  margin: 0.4rem auto 2rem;
  color: #555;
  font-size: 0.95rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-card {
  background: #fff;
  border-radius: 0.85rem;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* DMV gradient top border */
.dmv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, #d21f3c, #0047ab);
}

.why-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.why-title.dmv {
  color: #0047ab;
}

.why-title.other {
  color: #b71c1c;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.why-list li {
  margin-bottom: 0.6rem;
  padding-left: 1.4rem;
  position: relative;
}

/* DMV (✔) checkmark */
.why-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.dmv-card .why-list li::before {
  content: "✔";
  color: #0a7a38;
}

/* Typical Movers (✖) warning */
.other-card .why-list li::before {
  content: "✖";
  color: #d21f3c;
}

/* Mobile stack */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   WHY US — Comparison Grid (Upgraded)
========================================= */

.why-us-section {
  padding-top: 2.75rem;
  padding-bottom: 3rem;
  background: #ffffff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 2.25rem;
}

/* Cards */
.why-us-card {
  background: #fff;
  border-radius: 0.9rem;
  padding: 1.5rem 1.4rem;
  box-shadow:
    inset 0 1px 2px rgba(0,0,0,0.05),
    0 10px 26px rgba(0,0,0,0.06);
  transition: transform .25s cubic-bezier(.22,1,.36,1),
              box-shadow .25s cubic-bezier(.22,1,.36,1);
  position: relative;
}

/* A — Hover Lift + Glow */
.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.12),
    0 0 22px rgba(0,71,171,0.16),
    0 0 22px rgba(210,31,60,0.16);
}

/* F — Soft Accent Behind DMV Column */
.dmv-card {
  background: radial-gradient(circle at top left,
              rgba(0,71,171,0.07), transparent 60%)
              ,
              radial-gradient(circle at bottom right,
              rgba(210,31,60,0.06), transparent 65%)
              ,
              #ffffff;
}

/* Titles */
.why-us-title {
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
  font-weight: 700;
  text-align: left;
}

/* Lists */
.why-us-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.55;
}

.why-us-list li {
  margin-bottom: 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Winner Badge (C) */
.winner-badge {
  position: absolute;
  top: -12px;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #0047ab, #d21f3c);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

/* CTA below grid (D) */
.why-us-cta {
  margin-top: 2.2rem;
  text-align: center;
}

.why-us-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 1rem;
  display: inline-block;
}

.cta-note {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .winner-badge {
    left: 50%;
    transform: translateX(-50%);
  }
}


/* Temporarily hide Why Hire section */
.why-us-grid,
#why-us-grid,
.why-us-section {
  display: none !important;
}

/* =========================================
   Pricing & Availability Section
   ========================================= */

.pricing-section {
  background: radial-gradient(circle at top left, #f3f6ff 0, transparent 55%),
              radial-gradient(circle at bottom right, #fff5f7 0, transparent 55%),
              #ffffff;
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}

.pricing-eyebrow {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #0047ab;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.pricing-subtitle {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

/* Left: Pricing card */
.pricing-card {
  background: #fff;
  border-radius: 0.9rem;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  border-top: 4px solid;
  border-image: linear-gradient(90deg, #d21f3c, #0047ab) 1;
}

.pricing-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.pricing-list li {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  color: #444;
}

.pricing-note {
  font-size: 0.85rem;
  color: #666;
}

/* Right: Availability */
.availability-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.7rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.10),
              0 0 20px rgba(0,71,171,0.08);
  border-top: 4px solid;
  border-image: linear-gradient(90deg, #0047ab, #d21f3c) 1;
}

.availability-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.availability-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 0.25rem;
  display: block;
}

.availability-form input,
.availability-form select {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid #d0d0d0;
  border-radius: 0.5rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}

.availability-btn {
  width: 100%;
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
}

.availability-footnote {
  font-size: 0.85rem;
  color: #555;
  text-align: center;
  margin-top: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .pricing-card,
  .availability-card {
    padding: 1.4rem 1.25rem;
  }
}

.availability-result{
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
}
.availability-result--good{ border-color: rgba(0,128,0,.25); }
.availability-result--warm{ border-color: rgba(255,165,0,.35); }
.availability-result--hot{  border-color: rgba(220,20,60,.35); }
.availability-result--error{ border-color: rgba(220,20,60,.35); }


/* Availability button loading state */
.btn-check-date.is-loading {
  position: relative;
  opacity: 0.95;
  cursor: wait;
}

.btn-check-date.is-loading::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border: 2px solid rgba(255,255,255,.5);
  border-top-color: rgba(255,255,255,1);
  border-radius: 50%;
  animation: dmvSpin .8s linear infinite;
  vertical-align: -2px;
}

@keyframes dmvSpin {
  to { transform: rotate(360deg); }
}

/* Availability card — normalize input/select heights (especially iOS date fields) */
.availability-form input,
.availability-form select {
  box-sizing: border-box;
  width: 100%;
  min-height: 52px;          /* adjust to match your selects */
  padding: 14px 16px;        /* match your select padding */
  font-size: 16px;           /* prevents iOS zoom + helps consistency */
  line-height: 1.2;
}

/* iOS/Safari date input quirks when empty */
.availability-form input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
}

/* Make the displayed date text align/behave consistently */
.availability-form input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
  line-height: 1.2;
}

/* Optional: if you notice the inner editable area looks off on iOS */
.availability-form input[type="date"]::-webkit-datetime-edit {
  padding: 0;
}

/* Desktop only: normalize mm/dd/yyyy color */
@media (min-width: 769px) {
  .availability-form input[type="date"]:not([value]),
  .availability-form input[type="date"]:not(:focus):not([value]) {
    color: #9aa0a6;
    -webkit-text-fill-color: #9aa0a6; /* Chrome / Safari */
  }

  /* When focused or has value, restore normal color */
  .availability-form input[type="date"]:focus,
  .availability-form input[type="date"][value] {
    color: inherit;
    -webkit-text-fill-color: initial;
  }
}


/* ============================
   Mobile-only date placeholder
   ============================ */
@media (max-width: 768px) {
  .availability-form input[type="date"] {
    position: relative;
    color: transparent; /* hide iOS date text */
  }

  .availability-form input[type="date"]::before {
    content: attr(data-placeholder);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa0a6;
    pointer-events: none;
  }

  /* When user selects a date */
  .availability-form input[type="date"][value] {
    color: inherit;
  }

  .availability-form input[type="date"][value]::before {
    content: '';
  }
}

/* Default = placeholder look */
.availability-form select {
  color: #9aa0a6; /* placeholder gray */
}

/* When user selects a real option (value not empty) */
.availability-form select option:not([value=""]) {
  color: #111;
}

/* When a real option is selected */
.availability-form select:has(option:checked:not([value=""])) {
  color: #111;
}

/* =========================================
   Pricing Section – Phase 2 Enhancements
   ========================================= */

/* "Most Popular" badge */
.badge-popular {
  display: inline-block;
  margin: 0 0.35rem;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #d21f3c, #0047ab);
  color: #fff;
  font-weight: 700;
  vertical-align: middle;
  white-space: nowrap;
}

/* Trust line under pricing grid */
.pricing-trust-line {
  text-align: center;
  max-width: 40rem;
  margin: 1.75rem auto 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  opacity: 0.95;
}

/* Card hover polish */
.pricing-card,
.availability-card {
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card:hover,
.availability-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 32px rgba(0,0,0,0.16),
    0 0 20px rgba(0,71,171,0.14),
    0 0 18px rgba(210,31,60,0.12);
}

/* Extra glow only on the availability card */
.availability-card:hover {
  border-image: linear-gradient(90deg, #0047ab, #d21f3c) 1;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .pricing-trust-line {
    font-size: 0.88rem;
    padding: 0 1.25rem;
    margin-top: 1.5rem;
  }
}

/* =========================================
   Pricing – Demand Bar + Response Microcopy
   ========================================= */

.pricing-demand {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #555;
}

/* label row: "Today’s availability" + status */
.pricing-demand-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.pricing-demand-status {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  background: rgba(210, 31, 60, 0.06);
  color: #b81932;
}

/* progress-style bar */
.pricing-demand-bar {
  position: relative;
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.pricing-demand-bar .fill {
  position: absolute;
  inset: 0;
  width: 72%; /* visual “filling fast” – tweak if you like */
  background: linear-gradient(90deg, #00b894, #ffd32a, #d21f3c);
  box-shadow: 0 0 10px rgba(210, 31, 60, 0.35);
}

/* micro copy under the bar */
.pricing-response-time {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  color: #666;
  line-height: 1.4;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .pricing-demand {
    margin-top: 0.85rem;
  }

  .pricing-response-time {
    font-size: 0.8rem;
  }
}

/* =========================================
   Pricing FAQ – Accordion
   ========================================= */

.pricing-faq {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

.pricing-faq-title {
  text-align: center;
  font-size: 1.45rem;
  margin-bottom: 1.7rem;
  font-weight: 700;
  color: #111;
}

/* Accordion wrapper */
.pricing-faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Each FAQ card */
.faq-item {
  border-radius: 0.85rem;
  background: #ffffff;
  box-shadow:
    0 8px 24px rgba(0,0,0,0.04),
    0 1px 0 rgba(0,0,0,0.02);
  overflow: hidden;
}

/* Question button */
.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  color: #111;
}

/* Question text wraps nicely */
.faq-question span:first-child {
  flex: 1;
}

/* + / – icon */
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 71, 171, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0047ab;
  background: #f3f6ff;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

/* Answer body */
.faq-answer {
  padding: 0 1.1rem 0.85rem;
  border-top: 1px solid rgba(0,0,0,0.04);
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Expanded state */
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(90deg);
  background: linear-gradient(135deg, #0047ab, #d21f3c);
  color: #fff;
  border-color: transparent;
}

/* Hover on desktop */
@media (hover: hover) {
  .faq-question:hover {
    background: #f8f9ff;
  }
}

/* Mobile layout tweaks */
@media (max-width: 768px) {
  .pricing-faq {
    padding-top: 2.25rem;
    padding-bottom: 2.5rem;
  }

  .pricing-faq-title {
    font-size: 1.3rem;
    margin-bottom: 1.4rem;
  }

  .faq-question {
    padding: 0.85rem 0.9rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 0.9rem 0.85rem;
    font-size: 0.93rem;
  }
}

/* =========================================
   Pricing FAQ – "Still have questions?" CTA
   ========================================= */

.pricing-faq-cta {
  text-align: center;
  margin-top: 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  opacity: 0.92;
}

.pricing-faq-cta a {
  color: #0047ab;
  text-decoration: none;
  font-weight: 700;
}

.pricing-faq-cta a:hover {
  text-decoration: underline;
  color: #d21f3c;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .pricing-faq-cta {
    font-size: 0.95rem;
    margin-top: 1.6rem;
    padding: 0 1rem;
  }
}

/* =========================================
   Pricing FAQ – CTA Pill Row (Call + Email)
   ========================================= */

.pricing-faq-cta-wrap {
  text-align: center;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;

  /* scroll-in base state (works with your JS) */
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s ease-out,
    transform 0.45s ease-out;
}

/* When JS adds this, it fades/slides in */
.pricing-faq-cta-wrap.cta-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Row that holds both buttons */
.pricing-faq-cta-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* Base pill layout shared by both */
.pricing-faq-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

/* Primary CALL/TEXT pill – DMV gradient */
.pricing-faq-cta--primary {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #d21f3c, #0047ab) border-box;
  border: 1.5px solid transparent;
  background-clip: padding-box, border-box;
  color: #111827;

  box-shadow:
    0 8px 22px rgba(0,0,0,0.12),
    0 0 16px rgba(0,71,171,0.18),
    0 0 16px rgba(210,31,60,0.14);
}

/* Link inside primary pill */
.pricing-faq-cta--primary a {
  color: #0047ab;
  text-decoration: none;
  font-weight: 700;
}

/* Primary hover */
.pricing-faq-cta--primary:hover {
  box-shadow:
    0 10px 26px rgba(0,0,0,0.16),
    0 0 20px rgba(0,71,171,0.22),
    0 0 20px rgba(210,31,60,0.18);
  transform: translateY(-1px);
  animation: pricing-cta-pulse 0.7s ease-out;
}

.pricing-faq-cta--primary a:hover {
  text-decoration: underline;
}

/* Ghost EMAIL button – desktop only look */
.pricing-faq-cta--ghost {
  background: transparent;
  border: 1.5px solid rgba(0,71,171,0.35);
  color: #0047ab;
  box-shadow: none;
}

/* Make sure it's treated as a pill link */
.pricing-faq-cta--ghost:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  text-decoration: none;
}

/* Mobile: hide email pill, slightly tighten primary */
@media (max-width: 768px) {
  .pricing-faq-cta--ghost {
    display: none;
  }

  .pricing-faq-cta {
    font-size: 0.9rem;
    padding: 0.5rem 1.05rem;
  }
}

/* Better alignment for the email icon */
.pricing-faq-cta--ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.pricing-faq-cta--ghost {
  font-size: 0.94rem; /* keeps the emoji sized correctly */
}

/* Style the phone icon inside the CTA */
.pricing-faq-cta--primary .cta-icon {
  margin-right: 0.35rem;
  font-size: 1.05rem;
  position: relative;
  top: 1px; /* micro lift for visual balance */
}

/* ===============================
   Homepage About Us – Premium
   =============================== */

.home-about {
  background: radial-gradient(
              circle at top left,
              rgba(0, 71, 171, 0.06),
              transparent 55%
            ),
            radial-gradient(
              circle at bottom right,
              rgba(210, 31, 60, 0.06),
              transparent 55%
            ),
            #ffffff;
  padding-top: 2.6rem;
  padding-bottom: 2.9rem;
}

.home-about .container {
  max-width: 900px;
  text-align: center;
}

/* Eyebrow */
.about-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0047ab;
  margin: 0 0 0.5rem;
  opacity: 0.9;
}

/* Title */
.about-title {
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 0.8rem;
  font-weight: 800;
}

/* Body paragraphs */
.about-body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #444;
  max-width: 42rem;
  margin: 0.5rem auto;
}

/* Mini trust badges */
.about-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.3rem 0 1.9rem;
}

.about-badge {
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 71, 171, 0.16);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  white-space: nowrap;
}

/* Three pillar cards */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.9rem;
}

.about-pillar {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.1rem 1.1rem 1.0rem;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.06),
    0 0 18px rgba(0, 71, 171, 0.06),
    0 0 18px rgba(210, 31, 60, 0.05);
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.about-pillar h3 {
  font-size: 0.98rem;
  margin: 0 0 0.4rem;
}

.about-pillar p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}

/* Subtle hover on desktop */
@media (min-width: 769px) {
  .about-pillar {
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .about-pillar:hover {
    transform: translateY(-4px);
    box-shadow:
      0 14px 32px rgba(0, 0, 0, 0.12),
      0 0 20px rgba(0, 71, 171, 0.12),
      0 0 18px rgba(210, 31, 60, 0.10);
  }
}

/* CTA line under pillars */
.about-cta {
  margin: 0.5rem auto 0;
  font-size: 0.95rem;
  color: #333;
}

.about-cta a {
  color: #d21f3c;
  font-weight: 700;
  text-decoration: none;
}

.about-cta a:hover {
  text-decoration: underline;
}

/* Mobile tuning */
@media (max-width: 768px) {
  .home-about {
    padding-top: 2.3rem;
    padding-bottom: 2.6rem;
  }

  .about-title {
    font-size: 1.6rem;
  }

  .about-body {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .about-pillars {
    gap: 1.2rem;
  }

  .about-pillar {
    text-align: left;
  }
}

/* =========================================
   Contact Page Layout
   ========================================= */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: flex-start;
}

/* Left column respects the quote-card styling */

.contact-left .contact-title,
.contact-right .contact-title {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
}

.contact-left .contact-desc,
.contact-right .contact-desc {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: #555;
}

/* Right column wrapper as subtle card */
.contact-right {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.2rem 1.3rem 1.3rem;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

.contact-right > p {
  font-size: 0.93rem;
  color: #444;
  margin: 0 0 0.4rem;
}

/* Map embed */
.contact-map {
  margin-top: 0.9rem;
}

.contact-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 0.65rem;
}

/* Mobile / tablet stacking */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-right {
    margin-top: 1.5rem;
  }

  .contact-map iframe {
    height: 220px;
  }
}

/* ==============================
   Contact Page – Premium Styling
   ============================== */

/* Soft ambient background just for the contact section */
.contact-section {
  background:
    radial-gradient(circle at top left, rgba(0, 71, 171, 0.06), transparent 55%),
    radial-gradient(circle at bottom right, rgba(210, 31, 60, 0.06), transparent 55%),
    #f7f7f7;
}    

/* Meta line under "Service Area & Contact" */
.contact-meta {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}

/* Trust highlights list */
.contact-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  color: #444;
}

.contact-highlights li {
  margin-bottom: 0.35rem;
}

/* Icon + lines for phone / email / hours */
.contact-lines p {
  margin: 0 0 0.4rem;
  font-size: 0.93rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.contact-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  background: rgba(0, 71, 171, 0.06);
  color: #0047ab;
}

/* Slightly polish the right card more */
.contact-right {
  background: #ffffff;
  border-radius: 0.85rem;
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow:
    0 12px 32px rgba(0,0,0,0.08),
    0 0 22px rgba(0,71,171,0.08),
    0 0 18px rgba(210,31,60,0.06);
}

/* Map rounding consistent with premium cards */
.contact-map iframe {
  border-radius: 0.75rem;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .contact-right {
    padding: 1.3rem 1.25rem 1.4rem;
  }

  .contact-meta {
    text-align: left;
  }
}

/* ==============================
   Pricing Page Layout
   ============================== */
   
   .pricing-hero {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  background: #0f172a;
  color: #f9fafb;
}

.pricing-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-hero h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.pricing-hero-subtitle {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: #e5e7eb;
}

.pricing-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.pricing-hero-note {
  font-size: 0.9rem;
  color: #b1bde6;
}

.pricing-section {
  padding: 2.5rem 1.5rem;
}

.pricing-section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.pricing-intro {
  max-width: 720px;
  font-size: 0.98rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.pricing-cards-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricing-cards-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-card {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 1.25rem 1.25rem 1.1rem;
  background: #ffffff;
}

.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.pricing-card-rate {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.pricing-amount {
  font-size: 1.6rem;
  font-weight: 700;
}

.pricing-card-minimum {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.pricing-card-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: #4b5563;
}

.pricing-card-list li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.pricing-card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0f766e;
}

.pricing-card-tagline {
  font-size: 0.85rem;
  color: #0f766e;
  font-weight: 600;
}

.pricing-footnote {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 1rem;
}

.pricing-included-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 900px) {
  .pricing-included-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricing-included-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.pricing-included-item p {
  font-size: 0.9rem;
  color: #4b5563;
}

.pricing-delivery-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .pricing-delivery-layout {
    grid-template-columns: 2fr 1fr;
  }
}

.pricing-highlight-box {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 1.25rem;
  background: #f9fafb;
  font-size: 0.92rem;
}

.pricing-highlight-box h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.pricing-highlight-box ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.pricing-highlight-cta {
  font-size: 0.9rem;
  color: #4b5563;
}

.pricing-examples-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1rem;
}

@media (min-width: 900px) {
  .pricing-examples-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricing-example {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
}

.pricing-example h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.pricing-example ul {
  padding-left: 1.1rem;
}

.pricing-section--cta {
  background: #f9fafb;
  text-align: center;
}

.pricing-cta-inner p {
  max-width: 680px;
  margin: 0.5rem auto 1.5rem;
}


/* FAQ accordion uses your existing JS hooks */
.pricing-faq-accordion {
  margin-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.85rem 0;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  font-size: 0.9rem;
  color: #4b5563;
  padding-bottom: 0.75rem;
}


/* ================================
   Pricing Page – Visual Tweaks
   ================================ */

/* HERO */
.pricing-hero {
  padding: 4rem 1.5rem 3rem;
}

.pricing-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Small “trust bar” under hero subtitle */
.pricing-trust-bar {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin: 1rem auto 1.75rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  color: #f7f7f7;
}

.pricing-trust-bar span {
  white-space: nowrap;
}

/* Slightly tighter section spacing than default */
.pricing-section {
  padding: 3rem 1.5rem 3.25rem;
}

.pricing-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Standard rate cards – tighten vertically a bit */
.pricing-section--standard .pricing-cards-grid {
  margin-top: 1.75rem;
}

.pricing-card {
  padding: 1.75rem 1.5rem;
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
}

.pricing-card-rate {
  margin-bottom: 0.25rem;
}

.pricing-card-minimum {
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: #777;
}

.pricing-card-list {
  margin-bottom: 0.9rem;
}

.pricing-card-tagline {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0d6efd;
}

/* Small horizontal “what’s included” strip under standard cards */
.included-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 1.5rem 0 0.75rem;
  padding: 0.85rem 1.25rem;
  list-style: none;
  border-radius: 999px;
  background: #f5f7fb;
  font-size: 0.9rem;
  color: #333;
}

.included-strip li::marker {
  content: "";
}

/* Pricing intro subtle line */
.pricing-intro.subtle {
  font-size: 0.95rem;
  color: #666;
}

/* Tables – keep readable & compact */
.pricing-compare-table,
.pricing-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.pricing-compare-table th,
.pricing-compare-table td,
.pricing-comparison-table th,
.pricing-comparison-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid #e3e6ee;
  text-align: left;
}

.pricing-compare-table thead,
.pricing-comparison-table thead {
  background: #f5f7fb;
  font-weight: 600;
}

/* Mini calculator */
.pricing-mini-calc-details {
  margin-top: 1.75rem;
  border-radius: 8px;
  background: #f8f9fc;
  padding: 1rem 1.25rem;
}

.pricing-mini-calc-details > summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.pricing-mini-calc-details > summary::marker {
  content: "";
}

.pricing-mini-calc-details[open] > summary {
  margin-bottom: 0.75rem;
}

.pricing-mini-calc-form .pricing-mini-calc-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 0.75rem;
}

.pricing-mini-calc-form .field {
  min-width: 180px;
}

.pricing-mini-calc-result {
  margin-top: 0.5rem;
  font-weight: 600;
}

/* “See pricing by move type” cards */
.pricing-by-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.pricing-by-service-item {
  padding: 1.4rem 1.25rem;
  border-radius: 10px;
  border: 1px solid #e3e6ee;
  background: #fff;
}

.pricing-by-service-item h3 {
  margin-bottom: 0.4rem;
}

/* Sticky CTA bar – ensure it feels light */
.pricing-sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.97);
  color: #fff;
  box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.3);
}

.pricing-sticky-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.pricing-sticky-cta-text {
  font-size: 0.9rem;
}

.pricing-sticky-cta-text strong {
  display: block;
  margin-bottom: 0.1rem;
}

.pricing-sticky-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pricing-sticky-cta-phone {
  font-size: 0.9rem;
  text-decoration: underline;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .pricing-hero {
    padding: 3rem 1.25rem 2.25rem;
  }

  .pricing-section {
    padding: 2.5rem 1.25rem 2.75rem;
  }

  .included-strip {
    border-radius: 12px;
  }

  .pricing-sticky-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-sticky-cta-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Make the main pricing table mobile-friendly */
.pricing-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  /* Force a reasonable width so columns don't squish too much */
  min-width: 640px;
}

/* Optional: soften scroll bar appearance on iOS/modern browsers */
.pricing-table-wrap::-webkit-scrollbar {
  height: 6px;
}

.pricing-table-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.pricing-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.8);
  border-radius: 999px;
}

/* ==============================
   Pricing Comparison Rable
   ============================== */
.pricing-comparison-table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
}

.pricing-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pricing-comparison-table th,
.pricing-comparison-table td {
  border: 1px solid #e5e7eb;
  padding: 0.6rem 0.75rem;
  text-align: left;
}

.pricing-comparison-table thead {
  background: #f9fafb;
  font-weight: 600;
}

.pricing-factors {
  margin-top: 2rem;
}

.pricing-factors h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.pricing-factors-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .pricing-factors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricing-factor h4 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.pricing-factor p {
  font-size: 0.88rem;
  color: #4b5563;
}

.pricing-mini-calc {
  margin-top: 2rem;
}

.pricing-mini-calc-details summary {
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pricing-mini-calc-form {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 1rem 1.25rem;
  background: #ffffff;
  font-size: 0.9rem;
}

.pricing-mini-calc-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.pricing-mini-calc-form .field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.pricing-mini-calc-form .field select {
  width: 100%;
  max-width: 220px;
}

.pricing-mini-calc-result {
  margin-top: 0.75rem;
}

.pricing-mini-calc-summary p {
  margin: 0.25rem 0;
}

.pmc-note {
  font-size: 0.8rem;
  color: #6b7280;
}

/* ==============================
   Pricing Sticky CTA
   ============================== */
.pricing-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(17, 24, 39, 0.98); /* near-black */
  color: #f9fafb;
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.pricing-sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.pricing-sticky-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.pricing-sticky-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.85rem;
}

.pricing-sticky-cta-text strong {
  font-size: 0.95rem;
}

.pricing-sticky-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.pricing-sticky-cta .btn-sm {
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
}

.pricing-sticky-cta-phone {
  font-size: 0.8rem;
  color: #e5e7eb;
  text-decoration: none;
}

.pricing-sticky-cta-phone:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .pricing-sticky-cta-inner {
    align-items: flex-start;
  }
}.pricing-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(17, 24, 39, 0.98); /* near-black */
  color: #f9fafb;
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.pricing-sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.pricing-sticky-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.pricing-sticky-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.85rem;
}

.pricing-sticky-cta-text strong {
  font-size: 0.95rem;
}

.pricing-sticky-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.pricing-sticky-cta .btn-sm {
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
}

.pricing-sticky-cta-phone {
  font-size: 0.8rem;
  color: #e5e7eb;
  text-decoration: none;
}

.pricing-sticky-cta-phone:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .pricing-sticky-cta-inner {
    align-items: flex-start;
  }
}

/* ================================
   Service pages – shared layout
   ================================ */

.service-hero {
  padding: 3.5rem 1.5rem 3rem;
  background: #0f172a;
  color: #f9fafb;
}

.service-hero .container {
  max-width: 1100px;
  margin: 0 auto;
}

.service-hero h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.service-hero-subtitle {
  font-size: 1rem;
  max-width: 640px;
  color: #e5e7eb;
  margin-bottom: 1.5rem;
}

.service-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.service-hero-note {
  font-size: 0.9rem;
  color: #cbd5f5;
}

.service-hero-note a {
  color: #f97373;
}

/* Generic service sections */

.service-section {
  padding: 3rem 1.5rem;
}

.service-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.service-section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.service-section p {
  margin-bottom: 1rem;
  color: #374151;
}

/* Checklists */

.service-checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.service-checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.service-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 600;
}

/* Pricing overview list */

.service-pricing-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.service-pricing-list li {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

/* Factors grid */

.service-factors-grid,
.pricing-factors-grid,
.service-scenarios-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .service-factors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .service-scenarios-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.factor-item,
.scenario-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  background: #ffffff;
}

.factor-item h3,
.scenario-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.factor-item p,
.scenario-card p,
.scenario-card li {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Scenario lists */

.scenario-card ul {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
}

.scenario-card ul li {
  margin-bottom: 0.2rem;
}

/* CTA section */

.service-cta {
  background: #f9fafb;
  text-align: center;
}

.service-cta .service-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0.5rem;
}

.service-cta .service-hero-note {
  color: #4b5563;
}

/* "By service" grid from Pricing page internal links */

.pricing-by-service-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .pricing-by-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pricing-by-service-item {
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  padding: 0.9rem 1rem;
  background: #ffffff;
}

.pricing-by-service-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.pricing-by-service-item p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Optional: slight visual differentiation for office hero */
.office-hero {
  background: #0b1120; /* deep navy */
  color: #f9fafb;
}

.office-hero a {
  color: #f97373; /* keep CTAs visible if you like a contrast accent */
}

.office-hero .service-hero-subtitle {
  max-width: 680px;
}


/* Global service page tightening */
.service-hero,
.service-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* On smaller screens, make it even tighter */
@media (max-width: 768px) {
  .service-hero,
  .service-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

/* Reduce excess spacing between headings and paragraphs on service pages */
.service-section h2 {
  margin-bottom: 16px;
}

.service-section p,
.service-section .service-checklist,
.service-section .pricing-cards-grid,
.service-section .service-steps,
.service-section .service-scenarios-grid {
  margin-top: 0;
}

/* Optional: tighten CTA blocks slightly */
.service-hero-cta,
.service-cta-buttons {
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 8px;
}


/* ===============================
   Service FAQ: fix long pill + stop icon blocking answers
   =============================== */

/* Make the question a clean row (text left, icon right) */
.service-faq-accordion .faq-question{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;

  /* important: prevents any toggle background/pill from bleeding */
  background-clip: padding-box;
}

/* HARD lock the + into a small square/circle (no stretching) */
.service-faq-accordion .faq-question .faq-icon{
  flex: 0 0 auto !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;

  /* remove any “long pill” styling coming from elsewhere */
  background: transparent !important;
  border: 1px solid rgba(0,0,0,.15);   /* optional (keeps it neat) */
  border-radius: 999px !important;

  /* IMPORTANT: icon should never sit on top of answer area */
  position: static !important;

  /* click should go to the button; icon should not block anything */
  pointer-events: none;
}

/* If your theme generates a second toggle via pseudo elements, kill it here */
.service-faq-accordion .faq-question::before,
.service-faq-accordion .faq-question::after{
  content: none !important;
  display: none !important;
}

/* Rotate the + when open (choose ONE of the two selectors below) */

/* Option A: if your JS toggles aria-expanded on the button */
.service-faq-accordion .faq-question[aria-expanded="true"] .faq-icon{
  transform: rotate(45deg);
  transition: transform .18s ease;
}

/* Option B: if your JS toggles .is-open on .faq-item */
/*
.service-faq-accordion .faq-item.is-open .faq-question .faq-icon{
  transform: rotate(45deg);
  transition: transform .18s ease;
}
*/

/* ===============================
   Service FAQ: bring back the DMV gradient "active" bar
   BUT keep it constrained to the icon only
   =============================== */

/* Make the icon capable of holding a background layer */
.service-faq-accordion .faq-question .faq-icon{
  position: relative !important;
  overflow: hidden !important;
}

/* Gradient layer (hidden by default) */
.service-faq-accordion .faq-question .faq-icon::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #3b1b5a, #a02d59);
  opacity: 0;
  transform: scaleY(.6);
  transition: opacity .18s ease, transform .18s ease;
  border-radius: 999px;
  z-index: 0;
}

/* Keep the + above the gradient */
.service-faq-accordion .faq-question .faq-icon{
  color: #111; /* adjust if you want white on active */
}
.service-faq-accordion .faq-question .faq-icon{
  z-index: 0;
}
.service-faq-accordion .faq-question .faq-icon{
  /* ensures the text sits above ::before */
}
.service-faq-accordion .faq-question .faq-icon{
  /* (no extra needed, but keeping for clarity) */
}
.service-faq-accordion .faq-question .faq-icon{
  /* just make sure the + stays visible */
}
.service-faq-accordion .faq-question .faq-icon{
  /* if needed, uncomment next line to force stacking */
  /* z-index: 0; */
}
.service-faq-accordion .faq-question .faq-icon{
  /* text is naturally above ::before if we set ::before z-index lower */
}
.service-faq-accordion .faq-question .faq-icon::before{
  z-index: -1;
}

/* Show the gradient ONLY when open (pick the selector your JS uses) */

/* If your JS toggles aria-expanded: */
.service-faq-accordion .faq-question[aria-expanded="true"] .faq-icon::before{
  opacity: 1;
  transform: scaleY(1);
}

/* If your JS uses .is-open on .faq-item, use this instead:
.service-faq-accordion .faq-item.is-open .faq-icon::before{
  opacity: 1;
  transform: scaleY(1);
}
*/

/* Optional: make the + turn white when active */
.service-faq-accordion .faq-question[aria-expanded="true"] .faq-icon{
  color: #fff;
}


/* ==============================
   Request a Quote Page Layout
   ============================== */

.quote-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: flex-start;
}

/* Left column – reuse existing quote-card styling */
.quote-page-main .quote-card {
  margin: 0;
}

/* Inline CTA under the form */
.quote-page-inline-cta {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}

/* Right column – trust sidebar */
.quote-page-sidebar {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}

.quote-page-sidebar h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.quote-page-highlights {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.92rem;
  color: #444;
}

.quote-page-highlights li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}

.quote-page-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
  line-height: 1;
  color: #0047ab;
}

.quote-page-meta {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #555;
}

/* Mobile & tablet – stack layout */
@media (max-width: 900px) {
  .quote-page-layout {
    grid-template-columns: 1fr;
  }

  .quote-page-sidebar {
    margin-top: 1.75rem;
  }
}

/* ===========================
   Quote Page FAQ (fixed spacing)
   =========================== */
.quote-faq-section {
  margin-top: 2.5rem;
  padding-left: 24px;
  padding-right: 24px; /* ensures the whole section has breathing room */
}

.quote-faq-accordion {
  width: 100%;
  max-width: 48rem;
  margin: 1.8rem auto 0;
}

/* Optional: makes each item look like a “card” instead of edge-to-edge lines */
.quote-faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ✅ Main fix: give the question left/right padding */
.quote-faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1rem 1.25rem; /* was 1rem 0 */
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #111;
  gap: 14px; /* keeps + from hugging text */
}

.quote-faq-question .arrow {
  font-size: 1.25rem;
  transition: transform 0.25s ease;
  flex: 0 0 auto;
}

.quote-faq-item.active .quote-faq-question .arrow {
  transform: rotate(45deg);
}

/* ✅ Match answer padding to question padding */
.quote-faq-answer {
  display: none;
  padding: 0 1.25rem 1rem 1.25rem; /* was 0 0 1rem 0 */
  color: #444;
  font-size: 0.98rem;
  line-height: 1.6;
}

.quote-faq-item.active .quote-faq-answer {
  display: block;
}

/* Mobile fine-tune */
@media (max-width: 480px) {
  .quote-faq-section { padding-left: 16px; padding-right: 16px; }
  .quote-faq-question { padding: 0.9rem 1rem; }
  .quote-faq-answer { padding: 0 1rem 0.9rem 1rem; }
}

/* ===========================
   Quote FAQ — Arrow (DMV Gradient)
   EXACT match to Service FAQs
   =========================== */
/* Default (collapsed) */
.quote-faq-question .arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  background: #fff;
  color: #111;
  transition: transform 0.25s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

/* Active (open) state — SAME gradient as service FAQs */
.quote-faq-item.active .quote-faq-question .arrow {
  background: linear-gradient(180deg, #3b1b5a, #a02d59);
  color: #fff;
  border-color: transparent;
  transform: rotate(45deg); /* + becomes × */
}

/* Optional: add the same "gradient pill" feel */
.quote-faq-item.active .quote-faq-question .arrow {
  box-shadow: 0 6px 14px rgba(160,45,89,0.22);
}


/* CTA under FAQ */
.quote-faq-cta-wrap {
  text-align: center;
  margin-top: 1.8rem;
}

.quote-faq-cta {
  font-size: 0.96rem;
  color: #333;
  background: #f7f9ff;
  border: 1px solid rgba(0,71,171,0.12);
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  display: inline-block;
}
.quote-faq-cta a {
  color: #0047ab;
  font-weight: 700;
  text-decoration: none;
}

/* ===========================
   Quote Form – Thank You Panel
   =========================== */

.quote-card--sent {
  position: relative;
}

/* Optional: soften the form once it's sent */
.quote-card--sent form.wpcf7-form {
  opacity: 0.65;
}

/* Thank-you panel */
.quote-thankyou-panel {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(0, 71, 171, 0.06),
    rgba(210, 31, 60, 0.05)
  );
  border: 1px solid rgba(0,71,171,0.18);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #222;
}

/* Icon circle */
.quote-thankyou-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a7a38;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Text block */
.quote-thankyou-text strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.98rem;
}
.quote-thankyou-text p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.9rem;
  color: #444;
}

/* Small tweak on mobile */
@media (max-width: 768px) {
  .quote-thankyou-panel {
    font-size: 0.9rem;
    padding: 0.85rem 0.9rem;
  }
}

/* Hide default CF7 success message only inside quote forms */
.quote-card .wpcf7-response-output {
  display: none !important;
}

/* =========================================
   Quote Success Panel – Styling + Animation
   ========================================= */

/* Title */
.quote-success-title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
}

/* Main line */
.quote-success-main {
  margin: 0 0 0.5rem;
}

/* Bullet list */
.quote-success-next {
  list-style: none;
  padding: 0;
  margin: 0 0 0.6rem;
}

.quote-success-next li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.25rem;
}

.quote-success-next li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.8rem;
  color: #0a7a38;
  font-weight: 700;
}

/* Google trust line inside the panel */
.quote-success-trust {
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Mini Google badge re-using your style language */
.quote-success-badge {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: radial-gradient(circle at 30% 30%, #ffffff33, transparent 60%),
              conic-gradient(
                #4285f4 0deg 90deg,
                #ea4335 90deg 180deg,
                #fbbc05 180deg 270deg,
                #34a853 270deg 360deg
              );
  box-shadow: 0 2px 6px rgba(0,0,0,0.16);
}

/* Contact line */
.quote-success-contact {
  margin: 0;
  font-size: 0.9rem;
}

.quote-success-contact a {
  color: #0a7a38;
  font-weight: 600;
  text-decoration: none;
}

.quote-success-contact a:hover {
  text-decoration: underline;
}

/* =========================================
   Quote Success Panel – DMV Moving Help
   ========================================= */

/* Base styling (hidden by default) */
.quote-success-panel {
  display: none; /* CF7 .sent state will reveal it */
  margin-top: 1.25rem;
  padding: 1rem 1.25rem 1.15rem;
  border-radius: 0.9rem;
  background: radial-gradient(circle at top left, #f1fbf4, #e6f7ec);
  border: 1px solid #b7e3c2;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.06),
    0 0 18px rgba(10, 122, 56, 0.18);
  font-size: 0.94rem;
  line-height: 1.6;
  color: #245334;
}

/* Title */
.quote-success-title {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-weight: 700;
}

/* Main sentence under title */
.quote-success-main {
  margin: 0 0 0.6rem;
}

/* Bullet list */
.quote-success-next {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
}

.quote-success-next li {
  margin-bottom: 0.3rem;
}

/* Google-style trust line */
.quote-success-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #245334;
}

/* Tiny "G" badge reused in success panel */
.quote-success-badge {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;

  background: radial-gradient(circle at 30% 30%, #ffffff44, transparent 60%),
              conic-gradient(
                #4285f4 0deg 90deg,
                #ea4335 90deg 180deg,
                #fbbc05 180deg 270deg,
                #34a853 270deg 360deg
              );
  box-shadow: 0 2px 6px rgba(0,0,0,0.16);
}

/* Contact line at bottom */
.quote-success-contact {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
}

.quote-success-contact a {
  color: #0a7a38;
  font-weight: 600;
  text-decoration: none;
}
.quote-success-contact a:hover {
  text-decoration: underline;
}

/* Reveal + animate when CF7 form is sent */
.wpcf7 form.sent + .quote-success-panel {
  display: block;
  animation: quoteSuccessIn 0.55s ease-out;
}

/* Fade-in + slight lift */
@keyframes quoteSuccessIn {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile refinements */
@media (max-width: 768px) {
  .quote-success-panel {
    padding: 0.9rem 1rem 1rem;
    font-size: 0.9rem;
  }

  .quote-success-next {
    padding-left: 1rem;
  }

  .quote-success-trust {
    justify-content: center;
    text-align: center;
    width: 100%;
    flex-wrap: wrap;
  }
}

/* Homepage service pricing line */
.home-services .service-pricing {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: #444;
  font-weight: 500;
  opacity: 0.95;
}

/* Slightly softer on mobile */
@media (max-width: 768px) {
  .home-services .service-pricing {
    font-size: 0.88rem;
  }
}

.pricing-note {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.55;
}

/* =========================================
   Pricing Card – Premium Details Section
   ========================================= */

.pricing-details {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(0,0,0,0.08); /* subtle divider */
}

.pricing-details-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.pricing-details-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.55;
}

/* Green check icon */
.pricing-details-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0a7a38;
}

/* Footnote block */
.pricing-details-footnote {
  background: #f8fafc;                 /* soft card-like tint */
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  font-size: 0.93rem;
  color: #444;
  line-height: 1.5;
  border: 1px solid rgba(0,0,0,0.04);
}

/* =========================================
   Pricing Details – Soft Animated Icons
   ========================================= */

/* base state: smooth transitions for icon + line */
.pricing-details-list li {
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.pricing-details-list li::before {
  transition:
    transform 0.22s ease,
    text-shadow 0.22s ease,
    color 0.22s ease;
}

/* when the whole pricing card is hovered */
.pricing-card:hover .pricing-details-list li {
  color: #223852; /* slightly richer text */
}

/* subtle lift + glow on the green checks */
.pricing-card:hover .pricing-details-list li::before {
  transform: translateY(-1px) scale(1.05);
  text-shadow: 0 0 6px rgba(10, 122, 56, 0.35);
  color: #0a7a38; /* keep same green, just with glow */
}

/* tiny stagger so lines don’t all move at once */
.pricing-card:hover .pricing-details-list li:nth-child(2)::before {
  transition-delay: 0.03s;
}
.pricing-card:hover .pricing-details-list li:nth-child(3)::before {
  transition-delay: 0.06s;
}
.pricing-card:hover .pricing-details-list li:nth-child(4)::before {
  transition-delay: 0.09s;
}

/* =========================================================
   Check Your Move Date – Premium Hover Micro-Animation
   ========================================================= */

.check-date-card {
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
  will-change: transform, box-shadow;
}

/* Hover state */
.check-date-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 32px rgba(0, 71, 171, 0.18),
    0 0 18px rgba(0, 71, 171, 0.12);
}

/* Subtle blue glow behind the calendar icon, if present */
.check-date-card:hover .calendar-icon {
  filter: drop-shadow(0 0 6px rgba(0, 71, 171, 0.45));
  transform: translateY(-1px);
  transition: transform 0.22s ease, filter 0.22s ease;
}

/* =========================================
   Contact Hero – final alignment fix
   ========================================= */

/* Hard-center the contact hero trust strip */
.contact-hero-strip-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.75rem 0 1rem;
}

/* Make sure the pill itself doesn't fight us */
.contact-hero-strip-wrap .trust-strip {
  margin: 0;
}

/* =========================================
   ABOUT PAGE – HERO ALIGNMENT (FINAL)
   ========================================= */

.about-hero {
  max-width: 52rem;
  margin: 0 auto 2.25rem;
  text-align: center;             /* center children by default */
}

.about-hero .section-title {
  margin-bottom: 0.45rem;
}

/* Center the yellow trust strip pill */
.about-hero .trust-strip {
  margin: 0.75rem auto 1.25rem;   /* auto left/right = perfect center */
}

/* Make sure subtitle & intro stay nicely constrained */
.about-hero .about-subtitle,
.about-hero .about-intro {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* Stats row under "Who We Are" */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 1.6rem auto 0.5rem;
  max-width: 56rem;
}

.about-stat-card {
  background: #ffffff;
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
  box-shadow:
    0 8px 22px rgba(0,0,0,0.05),
    0 0 16px rgba(0,71,171,0.04);
  text-align: left;
  border: 1px solid rgba(0,0,0,0.02);
}

.about-stat-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #666;
  margin-bottom: 0.2rem;
}

.about-stat-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.2rem;
}

.about-stat-note {
  display: block;
  font-size: 0.88rem;
  color: #555;
}

/* Mobile stacking */
@media (max-width: 768px) {
  .about-hero {
    margin-bottom: 2rem;
    padding: 0 0.75rem;
  }

  .about-stats-row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 1.3rem;
  }

  .about-stat-card {
    text-align: left;
  }
}

/* =========================================
   ABOUT PAGE — CENTER "WHO WE ARE" META STATS
   ========================================= */

.about-stats-row {
  margin: 2rem auto 3rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  max-width: 900px;        /* keeps the row centered and tight */
  text-align: center;
}

.about-stat-card {
  flex: 1;
  min-width: 200px;        /* keeps even visual balance */
}

.about-stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #777;
  margin-bottom: 0.25rem;
  letter-spacing: 0.2px;
}

.about-stat-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.25rem;
}

.about-stat-note {
  display: block;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.45;
}

/* Mobile stack */
@media (max-width: 768px) {
  .about-stats-row {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .about-stat-card {
    min-width: auto;
  }
}

/* =========================================
   About Hero – subtle premium background
   ========================================= */

.about-hero-section {
  background:
    radial-gradient(circle at top left,
      rgba(0, 71, 171, 0.05),
      transparent 55%
    ),
    radial-gradient(circle at bottom right,
      rgba(210, 31, 60, 0.05),
      transparent 55%
    ),
    #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Keep hero content constrained + centered */
.about-hero {
  max-width: 48rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.about-hero .section-title {
  margin-bottom: 0.4rem;
}

.about-hero .trust-strip {
  margin: 0.85rem auto 1.1rem;
}

/* Subtitle + intro limited width, centered */
.about-subtitle,
.about-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
}

/* =========================================
   About – Meet Your Movers
   ========================================= */

.about-meet {
  background: #ffffff;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.about-meet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.about-meet-title {
  text-align: left;
  margin-bottom: 0.4rem;
}

.about-meet-sub {
  margin: 0 0 0.9rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #444;
  max-width: 34rem;
}

.about-meet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

.about-meet-list li {
  margin-bottom: 0.5rem;
}

/* Right-hand highlight card */
.about-meet-highlight {
  background: radial-gradient(circle at top left,
                rgba(0, 71, 171, 0.06),
                transparent 60%)
              ,
              radial-gradient(circle at bottom right,
                rgba(210, 31, 60, 0.06),
                transparent 60%)
              ,
              #ffffff;
  border-radius: 0.9rem;
  padding: 1.4rem 1.3rem;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.06),
    0 0 20px rgba(0,71,171,0.06),
    0 0 18px rgba(210,31,60,0.05);
  border: 1px solid rgba(0,0,0,0.02);
}

.about-meet-tag {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0047ab;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.about-meet-note {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #333;
}

/* Mobile stack */
@media (max-width: 900px) {
  .about-meet-grid {
    grid-template-columns: 1fr;
  }

  .about-meet-title {
    text-align: center;
  }

  .about-meet-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-meet-list {
    margin-top: 0.75rem;
  }
}

/* =========================================
   About – How We Work (3-step mini diagram)
   ========================================= */

.about-process {
  margin-top: 2.25rem;
}

.about-process-title {
  text-align: center;
  font-size: 1.25rem;
  margin: 0 0 1.3rem;
}

.about-process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-process-step {
  background: #ffffff;
  border-radius: 0.85rem;
  padding: 1.3rem 1.1rem 1.15rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  text-align: left;
}

/* numbered pill */
.about-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, #0047ab, #d21f3c);
  box-shadow: 0 6px 16px rgba(0,0,0,0.16);
  margin-bottom: 0.5rem;
}

.about-process-step h4 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.about-process-step p {
  margin: 0;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.55;
}

/* Mobile stack */
@media (max-width: 900px) {
  .about-process-steps {
    grid-template-columns: 1fr;
  }

  .about-process {
    margin-top: 1.9rem;
  }
}

/* tweak for spacing */
.about-testimonials {
  background: #ffffff;
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.about-testimonials-sub {
  max-width: 40rem;
}

/* =========================================
   About – Why We’re Different
   ========================================= */

.about-different {
  background: radial-gradient(circle at top left, #f3f6ff 0, transparent 55%),
              radial-gradient(circle at bottom right, #fff5f7 0, transparent 55%),
              #ffffff;
  padding-top: 2.75rem;
  padding-bottom: 3rem;
}

.about-different-sub {
  max-width: 40rem;
}

.about-different-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.about-different-card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.3rem 1.2rem 1.15rem;
  box-shadow:
    0 10px 26px rgba(0,0,0,0.06),
    0 0 18px rgba(0,71,171,0.06),
    0 0 18px rgba(210,31,60,0.05);
  text-align: left;
}

.about-diff-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(0,71,171,0.06);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.about-different-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.about-different-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.55;
}

/* Tighten spacing between Why We're Different and testimonials */
.about-different {
  padding-bottom: 2rem; /* reduce from ~4rem you currently have */
}

.about-testimonials {
  padding-top: 2rem; /* reduce top padding */
}

/* Slight hover effect */
.about-different .feature-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-different .feature-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.12),
    0 0 22px rgba(0,71,171,0.16),
    0 0 22px rgba(210,31,60,0.16);
}

/* Credibility strip */
.about-cred {
  text-align: center;
  padding: 1.75rem 0 2rem;
  background: #ffffff;
}

.cred-line {
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.55;
}

/* =========================================
   About page – "Why We're Different" 2×2 layout
   ========================================= */

/* Base: single column on mobile */
.about-different-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Desktop: force 2×2 */
@media (min-width: 900px) {
  .about-different-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Tight spacing between process and why-different */
.section.process-section {
  padding-bottom: 0.1rem !important;
}

.section.about-different {
  padding-top: 0.1rem !important;
}

/* =========================================
   Premium About Credibility Section
   ========================================= */

/* Section container */
.section.about-cred {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
  background: #fff;
}

/* Credibility line styling */
.about-cred .cred-line {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #333;

  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);

  opacity: 0;
  transform: translateY(8px);
  animation: aboutCredFadeIn 0.7s ease-out forwards;
  animation-delay: 0.25s;
}

/* Highlight DC • MD • VA */
.about-cred .cred-line strong {
  color: #000;
  font-weight: 600;
}

/* Fade-in animation */
@keyframes aboutCredFadeIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   About Page – Crew Photo Strip
   ===================================================== */

.about-crew-strip {
  padding-top: 1rem;
  padding-bottom: 2.25rem;
}

.crew-strip-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.crew-photo {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow:
    0 6px 14px rgba(0,0,0,0.10),
    0 3px 6px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.crew-photo:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 22px rgba(0,0,0,0.15),
    0 6px 10px rgba(0,0,0,0.08);
}

.crew-strip-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: #444;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* =======================================================
   Meet Your Movers – Photo Strip (Premium styling)
   ======================================================= */

.about-meet-photos {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.about-meet-photo-strip {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

.about-meet-photo-strip img {
  width: 32%;
  border-radius: 0.9rem;
  box-shadow: 0 8px 26px rgba(0,0,0,0.10);
  object-fit: cover;
  height: 200px;
}

/* Mobile */
@media (max-width: 768px) {
  .about-meet-photo-strip {
    flex-direction: column;
  }
  .about-meet-photo-strip img {
    width: 100%;
    height: 220px;
  }
}

/* =========================================
   Services Page – micro polish
   ========================================= */

/* Slightly tighten the services intro spacing */
.services-header .services-intro {
  margin-top: 0.9rem;
  margin-bottom: 0.4rem;
}

/* Center the CTA under the services grid */
.services-cta {
  text-align: center;
  margin-top: 2rem;
}

.services-cta-note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
}

/* Make sure the service grid breaths nicely on this page */
.services-grid .feature-card {
  min-height: 0;
}

/* =====================================================
   SERVICES PAGE – structure & visual polish
   Scoped under .services-page to avoid conflicts
   ===================================================== */

/* Overall page context */
.services-page .section {
  /* keep your global spacing; no hard overrides here */
}

/* ----------------------------
   1) Hero / Intro styling
   ---------------------------- */

.services-page .services-header {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.services-page .services-header .section-title {
  margin-bottom: 0.4rem;
}

/* reuse trust-strip style but tighten spacing on this page */
.services-page .services-header .trust-strip {
  margin: 0.9rem auto 1.1rem;
}

/* main subtitle line under hero title */
.services-page .services-header .section-subtitle {
  max-width: 40rem;
  margin: 0 auto 0.8rem;
  line-height: 1.6;
}

/* second intro paragraph */
.services-page .services-intro {
  max-width: 44rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.services-header .hero-btn {
  margin-top: 1.5rem;
}

.services-header .hero-cta-note {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #555;
}

/* ----------------------------
   2) Core Service Categories
   ---------------------------- */

.services-page .feature-grid.services-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 1.75rem;
}

/* 1 column mobile, 2 columns tablet, 3 columns desktop */
@media (min-width: 700px) {
  .services-page .feature-grid.services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .services-page .feature-grid.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* service cards */
.services-page .feature-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1.6rem;
  box-shadow:
    0 10px 25px rgba(15, 23, 42, 0.06),
    0 2px 6px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

/* icon at top of card */
.services-page .service-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
  background: radial-gradient(circle at 20% 0%, #ff6b6b, #e7387f);
  color: #fff;
}

/* little red pill label like "Apartments & Condos" */
.services-page .feature-pill {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255, 76, 76, 0.06);
  color: #c92132;
}

/* h3 inside cards */
.services-page .feature-card h3 {
  margin: 0.1rem 0 0.1rem;
}

/* short bold-ish subline just under h3 */
.services-page .service-subline {
  font-weight: 500;
  color: #333;
}

/* pricing/help text at bottom with divider */
.services-page .service-pricing {
  margin-top: 0.65rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
  color: #444;
}

/* CTA under grid */
.services-page .services-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.services-page .services-cta-note {
  max-width: 32rem;
  margin: 0.65rem auto 0;
  font-size: 0.95rem;
  color: #555;
}

/* ----------------------------
   3) Process section
   (How Our Moving Service Works)
   ---------------------------- */

.services-page .process-section {
  background: #fafafa;
  /* vertical spacing already tuned by you with 0.1rem rules,
     so no padding overrides here */
}

.services-page .process-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.6rem;
}

@media (min-width: 768px) {
  .services-page .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1150px) {
  .services-page .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.services-page .process-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1.35rem 1.6rem;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.05),
    0 2px 4px rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

/* step icon (number bubble) */
.services-page .step-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: radial-gradient(circle at 20% 0%, #ff6b6b, #e7387f);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
}

/* CTA under process cards */
.services-page .process-cta {
  margin-top: 2.4rem;
  text-align: center;
}

.services-page .process-cta-note {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: #555;
}

/* ============================================================
   Services Page – Process cards scroll-in animation
   ============================================================ */

.services-page .process-card {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

/* When card becomes visible */
.services-page .process-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: tiny stagger so they don't pop in at once */
.services-page .process-grid .process-card:nth-child(1).is-visible {
  transition-delay: 0s;
}
.services-page .process-grid .process-card:nth-child(2).is-visible {
  transition-delay: 0.07s;
}
.services-page .process-grid .process-card:nth-child(3).is-visible {
  transition-delay: 0.14s;
}
.services-page .process-grid .process-card:nth-child(4).is-visible {
  transition-delay: 0.21s;
}

/* ----------------------------
   4) "What You Get / Why Us"
   (What You Get with DMV Moving Help)
   ---------------------------- */

.services-page .why-customers-section {
  background: #ffffff;
}

.services-page .why-us-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.7rem;
}

/* Force 2×2 on desktop for balance */
@media (min-width: 768px) {
  .services-page .why-us-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.services-page .why-us-card {
  background: #fafafa;
  border-radius: 1rem;
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.04),
    0 1px 3px rgba(15, 23, 42, 0.06);
  position: relative;
}

/* highlighted first card */
.services-page .why-us-card.dmv-card {
  background: #ffffff;
  border-color: rgba(233, 30, 99, 0.25);
}

/* little "DMV Moving Help" tag on first card */
.services-page .winner-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(233, 30, 99, 0.06);
  color: #c92132;
  font-weight: 600;
}

.services-page .why-us-title {
  margin: 0 0 0.4rem;
}

/* bullet list inside cards */
.services-page .why-us-list {
  padding-left: 1.1rem;
  margin: 0.4rem 0 0;
  list-style: disc;
}

.services-page .why-us-list li + li {
  margin-top: 0.3rem;
}

/* CTA at bottom of section */
.services-page .why-us-cta {
  margin-top: 2.2rem;
  text-align: center;
}

.services-page .why-us-btn {
  min-width: 230px;
}

.services-page .cta-note {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: #555;
}

/* =========================================
   Services Page – Micro FAQ
   ========================================= */

.services-page .services-faq {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.services-page .services-faq .section-title {
  text-align: center;
  margin-bottom: 0.4rem;
}

.services-page .services-faq .section-subtitle {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

/* FAQ layout */
.services-page .faq-grid {
  display: grid;
  gap: 1.25rem;
}

/* Two columns on wider screens */
@media (min-width: 900px) {
  .services-page .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* FAQ card */
.services-page .faq-item {
  background: #ffffff;
  border-radius: 0.85rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.04),
    0 3px 6px rgba(0, 0, 0, 0.03);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.services-page .faq-item:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.06),
    0 6px 12px rgba(0, 0, 0, 0.04);
}

/* Question */
.services-page .faq-question {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #111;
}

/* DMV accent bar on the left of the question */
.services-page .faq-question::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 0.9em;
  margin-right: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d61d37, #0a4dd1);
  vertical-align: middle;
}

/* Answer */
.services-page .faq-answer {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444;
  margin: 0;
}

/* =========================================
   FAQ – Fix heading alignment + equal layout
   ========================================= */

/* Ensure all FAQ items have consistent internal layout */
.services-page .faq-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 210px; /* adjust if needed */
}

/* Fix the purple bar alignment */
.services-page .faq-question {
  display: flex;
  align-items: center; /* vertically align icon + text */
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

/* Adjust the bar itself */
.services-page .faq-question::before {
  height: 12px; /* smaller, consistent */
  width: 4px;
  flex-shrink: 0;
}

/* --- Fix 1: Core services CTA spacing --- */
.services-page .feature-grid.services-grid {
  margin-bottom: 0; /* keep cards tight but clean */
}

.services-page .services-cta {
  margin-top: 4.5rem !important;  /* pushes the pill below the cards */
  position: relative;
}

/* --- Fix 2 replaced: Step numbers visibility in process section --- */

/* --- Fix 3: Badge + title overlap in "What You Get" --- */
/* Services – make winner badge behave like a normal pill, no clipping */
.services-page .winner-badge {
  position: static !important;
  transform: none !important;
  margin-left: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.services-page .why-us-card.dmv-card {
  padding-top: 1.2rem !important;  /* small cushion above the title */
}

/* ============================================================
   Services Page – Gradient Step Badges (white numbers, no white fill)
   ============================================================ */

/* Neutralize the generic step-icon container on Services page */
.services-page .step-icon {
  background: none !important;
  box-shadow: none !important;
  padding: 0;
  margin-bottom: 0.85rem;
}

/* Make the number itself the gradient circle */
.services-page .step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Overwrite the global white+ring background */
  background: linear-gradient(135deg, #d61d37, #0a4dd1) !important;
  border: none !important;

  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;

  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.12),
    0 3px 6px rgba(0, 0, 0, 0.08);
}

/* White step numbers (now visible on gradient circle) */
.services-page .step-num {
  position: relative;
  z-index: 1;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
}

/* Hover elevation (desktop only) */
@media (hover: hover) {
  .services-page .step-icon:hover {
    transform: translateY(-3px);
    box-shadow:
      0 10px 20px rgba(0, 0, 0, 0.15),
      0 6px 12px rgba(0, 0, 0, 0.10);
    transition: 0.25s ease;
  }
}

/* ============================================================
   Services Page – FORCE perfect circular step badges
   ============================================================ */
.services-page .process-card .step-num {
  width: 54px;
  aspect-ratio: 1 / 1;       /* guarantees a 1:1 box */
  padding: 0;                 /* kills any inherited padding */
  border-radius: 50%;         /* circle, not pill */
  display: flex;
  align-items: center;
  justify-content: center;

  /* keep your existing visual style */
  background: linear-gradient(135deg, #d61d37, #0a4dd1) !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.12),
    0 3px 6px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   Services Page – Step Badge Interactions
   (hover rotation + glow + mobile press)
   ============================================================ */

/* Desktop / laptop: hover rotation + glow */
@media (hover: hover) and (pointer: fine) {
  .services-page .step-num {
    transition:
      transform 0.22s ease,
      box-shadow 0.22s ease;
  }

  /* Animate when the card is hovered, not just the circle */
  .services-page .process-card:hover .step-num {
    transform: translateY(-2px) rotate(-3deg);
    box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.18),
      0 0 16px rgba(10, 77, 209, 0.35),
      0 0 16px rgba(214, 29, 55, 0.28);
  }
}

/* Mobile / touch: subtle "press" feedback */
@media (max-width: 768px) {
  .services-page .step-num {
    transition:
      transform 0.12s ease,
      box-shadow 0.12s ease;
  }

  .services-page .step-num:active {
    transform: scale(0.96);
    box-shadow:
      0 4px 10px rgba(0, 0, 0, 0.18),
      0 0 10px rgba(10, 77, 209, 0.25),
      0 0 10px rgba(214, 29, 55, 0.22);
  }
}

/* ==========================================
   Thin DMV Gradient Divider Line
   ========================================== */

.dmv-divider {
  width: 100%;
  height: 2px;

  /* DMV red → blue gradient */
  background: linear-gradient(to right, #d61d37, #0a4dd1);

  margin: 2.5rem auto;   /* vertical spacing around the line */
  border-radius: 999px;  /* clean smooth ends */
  opacity: 0.55;         /* soft, not loud */
}

/* Slightly tighter on mobile */
@media (max-width: 768px) {
  .dmv-divider {
    margin: 1.75rem auto;
    opacity: 0.65;
  }
}

/* =========================================
   Services Page – FAQ heading hard realign
   ========================================= */

.services-page .faq-grid,
.services-page .faq-item {
  text-align: left;
}

/* Force the question row to hug the left edge */
.services-page .faq-question {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;

  width: 100%;
  margin: 0 0 0.55rem !important;
  text-align: left !important;
}

/* Nuke any rogue auto-margins that push text right */
.services-page .faq-question,
.services-page .faq-question *,
.services-page .faq-item h3 {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

/* Keep the purple bar locked to the left of the text */
.services-page .faq-question::before {
  content: "";
  flex-shrink: 0;
  width: 4px;
  height: 1.1em;
  border-radius: 999px;
  background: linear-gradient(135deg, #d61d37, #0a4dd1);

  position: relative !important;
  margin: 0 0.45rem 0 0 !important;
  transform: none !important;
  left: auto !important;
  top: auto !important;
}


/* Services page spacing cleanup */
.services-page .section {
  padding-top: 56px;
  padding-bottom: 56px;
}

@media (max-width: 768px) {
  .services-page .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Grid spacing */
.services-page .services-grid {
  row-gap: 32px;
}

/* Service card CTA row */
.service-card-cta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.service-card-cta .link-more {
  font-weight: 500;
}

.service-card-cta .btn.btn-ghost {
  padding-inline: 16px;
  font-size: 0.95rem;
}

/* Sitelinks block under services */
.services-sitelinks {
  margin: 32px auto 0;
  max-width: 960px;
  padding: 24px 20px;
  border-radius: 12px;
  background: #f9fafb;
}

.services-sitelinks-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.services-sitelinks-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
  display: grid;
  gap: 6px;
}

.services-sitelinks-list a {
  text-decoration: none;
  color: #111827;
  font-size: 0.95rem;
}

.services-sitelinks-list a:hover {
  text-decoration: underline;
}

/* ============================================================
   Services Page — Premium FAQ Hover + Gradient Accent
   ============================================================ */

.services-faqs .faq-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Subtle lift */
.services-faqs .faq-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.10),
    0 4px 10px rgba(0, 0, 0, 0.06);
}

/* Gradient bar (hidden by default) */
.services-faqs .faq-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #d61d37, #0a4dd1);
  transition: width 0.25s ease;
}

/* Animate gradient bar on hover */
.services-faqs .faq-card:hover::after {
  width: 100%;
}

/* ===========================================================
   Request Quote Page – FAQ Hover Polish
   =========================================================== */

/* FAQ question hover lift */
.quote-faq-question {
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.quote-faq-item:hover .quote-faq-question {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  background: #fafafa;
}

/* Expand underline when FAQ is open */
.quote-faq-item.open .quote-faq-question::after {
  width: 100%;
}

/* style the + / × icon */
.quote-faq-question .arrow {
  transition: transform 0.25s ease;
}

/* rotate the icon slightly when open */
.quote-faq-item.open .arrow {
  transform: rotate(45deg);
}

/* =====================================================
   Instant Quote Page – Layout & Styling
   ===================================================== */

.instant-quote-page .instant-quote-hero {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.instant-quote-page .instant-quote-subtitle,
.instant-quote-page .instant-quote-intro {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* Steps row */

.instant-quote-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.iq-step-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #f5f5f7;
  font-size: 0.85rem;
  color: #555;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.iq-step-number {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  background: #e0e0e5;
}

.iq-step-indicator.is-active {
  background: linear-gradient(135deg, #d61d37, #0a4dd1);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.iq-step-indicator.is-active .iq-step-number {
  background: rgba(255,255,255,0.15);
}

/* Progress bar */

.instant-quote-progress {
  max-width: 30rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.instant-quote-progress-bar {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: #ececf2;
  overflow: hidden;
}

.instant-quote-progress-fill {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: 999px;
  background: linear-gradient(90deg, #d61d37, #0a4dd1);
  transition: width 0.3s ease;
}

.instant-quote-progress-text {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #666;
}

/* Main layout */

.instant-quote-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.instant-quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr);
  gap: 2rem;
}

.instant-quote-main {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.5rem 1.75rem;
  box-shadow:
    0 12px 24px rgba(0,0,0,0.06),
    0 4px 10px rgba(0,0,0,0.04);
}

.instant-quote-sidebar {
  background: #fafbff;
  border-radius: 1.1rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(10, 77, 209, 0.06);
}

/* Fields */

.instant-quote-form .field {
  margin-bottom: 1rem;
}

.instant-quote-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #222;
}

.instant-quote-form input,
.instant-quote-form select,
.instant-quote-form textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #d5d7e0;
  padding: 0.55rem 0.65rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  background: #fff;
}

.instant-quote-form input:focus,
.instant-quote-form select:focus,
.instant-quote-form textarea:focus {
  border-color: #0a4dd1;
  box-shadow: 0 0 0 1px rgba(10,77,209,0.12);
}

.instant-quote-form textarea {
  min-height: 100px;
  resize: vertical;
}

.field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.field-row .field {
  flex: 1 1 200px;
}

.iq-step-help {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.iq-step-help .iq-step-mini {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.15rem;
}

/* Step panes */

.iq-step-pane {
  display: none;
}

.iq-step-pane.is-active {
  display: block;
}

/* Nav buttons */

.iq-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.iq-nav .btn {
  min-width: 130px;
  justify-content: center;
}

.iq-nav .iq-prev[disabled] {
  opacity: 0.45;
  cursor: default;
}

/* Estimate panel placeholder */

.iq-estimate-panel {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: #444;
}

/* Sidebar */

.instant-quote-sidebar h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.instant-quote-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
}

.instant-quote-highlights li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  color: #333;
  margin-bottom: 0.45rem;
}

.instant-quote-highlights li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.75rem;
  color: #0a4dd1;
}

.instant-quote-meta p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.instant-quote-contact-inline a {
  color: #0a4dd1;
  font-weight: 600;
}

/* Privacy note */

.iq-privacy-note {
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.25rem;
}

/* Responsive */

@media (min-width: 900px) {
  .instant-quote-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    align-items: flex-start;
  }

  .instant-quote-main {
    padding: 1.75rem 2rem;
  }

  .instant-quote-sidebar {
    padding: 1.6rem 1.8rem;
  }

  .instant-quote-layout {
    gap: 2.4rem;
  }
}

/* Active step pill – small pop + shadow */
.instant-quote-page .iq-step-indicator.is-active {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Smooth transition for all pills */
.instant-quote-page .iq-step-indicator {
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    background-color 0.18s ease-out;
}


/* Office CTA Button Text Color Override */
a.btn-primary,
a.btn-secondary,
button.btn-primary,
button.btn-secondary {
  color: #ffffff;
}

a.btn-primary:hover,
a.btn-secondary:hover,
button.btn-primary:hover,
button.btn-secondary:hover {
  color: #ffffff;
}

/* =========================================
   Instant Quote – Estimate Panel
   ========================================= */

.instant-estimate-panel {
  margin-top: 1.75rem;
  padding: 1.4rem 1.5rem;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(10, 77, 209, 0.05); /* subtle blue frame */
}

.instant-estimate-title {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.instant-estimate-sub {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  color: #555;
}

.instant-estimate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.instant-estimate-item {
  padding: 0.8rem 0.9rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.estimate-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.estimate-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: #111827;
}

.instant-estimate-note {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
}

/* Mobile stack */
@media (max-width: 768px) {
  .instant-estimate-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Instant Quote – light "sent" confirmation
   ========================================= */

/* Dim the form slightly once sent */
.instant-quote-page .instant-quote-form.iq-sent {
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

/* Still allow links like tel: to be usable */
.instant-quote-page .instant-quote-form.iq-sent input,
.instant-quote-page .instant-quote-form.iq-sent select,
.instant-quote-page .instant-quote-form.iq-sent textarea,
.instant-quote-page .instant-quote-form.iq-sent button {
  pointer-events: none;
}

/* Highlight the estimate panel when sent */
.instant-quote-page .instant-estimate-panel.iq-estimate-highlight {
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.08);
  border-color: rgba(214, 29, 55, 0.35); /* light DMV red accent */
  transform: translateY(-2px);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

/* ================================
   Instant Quote – Estimate panel FX
   ================================ */

.instant-quote-page .instant-estimate-panel {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  margin-top: 1.5rem;
}

/* When we decide it's ready to show */
.instant-quote-page .instant-estimate-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Tiny "updated" line */
.instant-quote-page .instant-estimate-updated {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #666;
}

/* Instant Quote – inline validation */
.instant-quote-form .iq-field-error {
  border-color: #d61d37 !important;
  outline: none;
}

.instant-quote-form .iq-error-note {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #d61d37;
}


/* Instant Quote – status messages */
.instant-quote-page .iq-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.instant-quote-page .iq-status--success {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.instant-quote-page .iq-status--error {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}


/* =========================================
   Instant Quote – collapse gap under buttons
   ========================================= */

/* Let the form stack children with a normal small gap */
.instant-quote-page .instant-quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
}

/* Keep a small gap above the nav row */
.instant-quote-page .instant-quote-form .iq-nav {
  margin-top: 1.25rem;
  margin-bottom: 0; /* no extra space below */
}

/* Panel is fully collapsed by default (no height) */
.instant-quote-page .instant-estimate-panel {
  display: none;          /* no layout space */
  margin-top: 0;          /* no extra gap */
}

/* When JS adds .is-visible (step ≥ 2), show it like a normal card */
.instant-quote-page .instant-estimate-panel.is-visible {
  display: block;
  margin-top: 1rem;       /* space between buttons and panel */
}


/* =========================================
   Instant Quote – Step 5 review summary cards
   ========================================= */

.iq-review-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .iq-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.iq-review-card {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1rem 1.15rem;
  background: #fff;
}

.iq-review-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.iq-review-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.iq-review-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  padding: 0.25rem 0;
}

.iq-review-label {
  color: #666;
}

.iq-review-value {
  font-weight: 500;
  text-align: right;
}

.iq-review-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
}

/* =========================================
   Instant Quote – Sent state
   ========================================= */

/* Dim the whole form slightly when sent */
.instant-quote-page .instant-quote-form.iq-form-sent {
  position: relative;
}

.instant-quote-page .instant-quote-form.iq-form-sent .iq-step-pane,
.instant-quote-page .instant-quote-form.iq-form-sent .iq-nav {
  opacity: 0.55;
}

/* Success message under the form */
.instant-quote-page .iq-success-message {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #155724;
  background: #e6f4ea;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
}

/* Subtle glow on estimate after send */
.instant-quote-page .instant-estimate-panel.iq-estimate-highlight {
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.35);
  border-radius: 0.9rem;
  transition: box-shadow 0.25s ease-out;
}


/* =========================================
   Instant Quote – Step 5 review styling
   ========================================= */

/* Uppercase-ish titles for review cards */
.iq-review-title {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* Icon next to titles */
.iq-review-icon {
  font-size: 1.1rem;
  margin-right: 0.4rem;
}

/* Toggle row (acts like a mini header) */
.iq-review-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

/* Small chevron */
.iq-review-chevron {
  opacity: 0.45;
  font-size: 0.85rem;
}

/* Rotate chevron when open */
.iq-review-card.is-collapsed .iq-review-chevron {
  transform: rotate(-90deg);
}

/* Review body spacing */
.iq-review-body {
  margin-top: 0.75rem;
}

/* Collapse body on mobile when is-collapsed */
@media (max-width: 768px) {
  .iq-review-card.is-collapsed .iq-review-body {
    display: none;
  }

  .iq-review-card {
    padding: 0.75rem 1rem;
  }
}

/* Review list labels + values */
.iq-review-label {
  color: #555;
  font-size: 0.9rem;
}

.iq-review-value {
  font-weight: 500;
  font-size: 0.9rem;
  text-align: right;
}

/* Note text under basics card */
.iq-review-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #666;
}

/* =========================================
   Instant Quote – full-width buttons on mobile
   ========================================= */
@media (max-width: 768px) {
  .instant-quote-page .iq-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .instant-quote-page .iq-nav .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   Instant Quote – fade-in for step panes
   ========================================= */

.iq-step-pane {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.iq-step-pane.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   Instant Quote – step pills + Review row
   ========================================= */

/* Base layout for both step rows */
.instant-quote-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0;
}

/* Make all pills align nicely */
.instant-quote-steps .iq-step-indicator {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Row 2: 5 Review & send */
.instant-quote-steps--review {
  display: flex;
  justify-content: center;   /* center the chip */
  margin-top: 0;             /* no extra gap above */
  margin-bottom: 0;          /* no extra gap below */
}

/* Optional – keep the softer background for the review chip */
.instant-quote-steps .iq-step-review {
  background: #f7f7fb;
}

/* Progress bar spacing */
.instant-quote-progress {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem !important;
  padding-bottom: 0;
}

/* Tighten the block that wraps the form card */
.instant-quote-main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* =========================================
   Instant Quote – pull row 2 (Review) up slightly
   ========================================= */

/* Base: desktop/tablet */
.instant-quote-page .instant-quote-steps:first-of-type {
  margin-bottom: -1.75rem !important;
}

/* Mobile: same for now; tweak if needed later */
@media (max-width: 768px) {
  .instant-quote-page .instant-quote-steps:first-of-type {
    margin-bottom: -1.75rem !important;
  }
}

/* Base: desktop/tablet */
.instant-quote-page .instant-quote-steps:first-of-type {
  margin-bottom: -1.75rem !important;
}

/* Mobile: tighter */
@media (max-width: 768px) {
  .instant-quote-page .instant-quote-steps:first-of-type {
    margin-bottom: -1.75rem !important;
  }
}

/* Instant Quote – inline validation */
.iq-field-error {
  border-color: #e63946 !important;
}

.iq-error-text {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #e63946;
}

/* Instant Estimate – explanation line */
.instant-estimate-why {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: #555;
}

/* Add-ons card header */
.iq-review-card--addons .iq-review-addons-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.iq-review-addons-header h3 {
  margin: 0;
  font-size: 1rem;
}

.iq-review-addons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.iq-review-addons-list li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
}

.iq-review-card--addons .iq-review-label {
  font-weight: 500;
  color: #333;
}

.iq-review-card--addons .iq-review-value {
  color: #666;
  font-weight: 400;
}/* Instant Estimate – explanation line */
.instant-estimate-why {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: #555;
}

/* Add-ons card header */
.iq-review-card--addons .iq-review-addons-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.iq-review-addons-header h3 {
  margin: 0;
  font-size: 1rem;
}

.iq-review-addons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.iq-review-addons-list li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
}

.iq-review-card--addons .iq-review-label {
  font-weight: 500;
  color: #333;
}

.iq-review-card--addons .iq-review-value {
  color: #666;
  font-weight: 400;
}


/* Instant Estimate – explanation line */
.instant-estimate-why {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: #555;
}

/* Add-ons card header */
.iq-review-card--addons .iq-review-addons-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.iq-review-addons-header h3 {
  margin: 0;
  font-size: 1rem;
}

.iq-review-addons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.iq-review-addons-list li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
}

.iq-review-card--addons .iq-review-label {
  font-weight: 500;
  color: #333;
}

.iq-review-card--addons .iq-review-value {
  color: #666;
  font-weight: 400;
}

/* Make sure review cards never overlap each other */
.iq-review-grid {
  display: grid;
  gap: 1rem;
  align-items: flex-start;          /* important so columns align to top */
}

/* Each card stays in its own box */
.iq-review-card {
  position: relative;
  overflow: visible;
}

/* If "Recommended add-ons" is a line under the first card,
   give it clear spacing */
.iq-review-note {
  margin-top: 0.75rem;
}

/* On mobile, stack cards vertically full-width */
@media (max-width: 768px) {
  .iq-review-grid {
    grid-template-columns: 1fr;     /* single column */
  }
}

.iq-review-addons {
  margin-top: 20px;  /* Adds spacing above card 3 add-ons */
}
    
/* QUOTE SENT CONFIRMATION MODAL*/
.iq-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}

.iq-modal-backdrop.is-visible {
  display: flex;
}

.iq-modal {
  background: #fff;
  max-width: 480px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(15,23,42,0.25);
  padding: 24px 20px 20px;
  position: relative;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

.iq-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.iq-modal-body h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.iq-modal-body p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.iq-modal-highlight {
  background: #f1f5f9;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 12px 0 16px;
}

.iq-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.iq-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.iq-modal-btn--primary {
  background: #e11d48; /* your red */
  color: #fff;
}

.iq-modal-btn--ghost {
  background: #f9fafb;
  color: #111827;
}

/* small screens: full width buttons already handled via flex */

.iq-followup-banner {
  background: #ecfdf5;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  margin-bottom: 12px;
}


.iq-draft-banner {
  background: #e8f1ff;
  border-left: 4px solid #1d4ed8;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.iq-draft-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.iq-draft-text strong {
  color: #111827;
}

.iq-draft-text span {
  color: #4b5563;
  font-size: 13px;
}

.iq-draft-reset {
  border: none;
  background: #1d4ed8;
  color: #ffffff;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}

.iq-step-pane--shake {
  animation: iq-step-shake 0.3s ease;
}

@keyframes iq-step-shake {
  0%,
  100% { transform: translateX(0); }
  20%,
  60% { transform: translateX(-6px); }
  40%,
  80% { transform: translateX(6px); }
}

/* ============================
   Instant Quote – restore banner mobile fix
   ============================ */
@media (max-width: 768px) {
  .instant-quote-page .iq-restore-banner {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0; /* optional: square edges so it feels native to the viewport */
  }

  .instant-quote-page .iq-restore-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .instant-quote-page .iq-restore-inner .btn {
    align-self: flex-start;
  }
}


/* FAQ section container padding */
.faq-question {
  padding-right: 14px; /* ensures + icon never hugs edge */
}

.faq-question {
  padding-left: 14px; /* ensures text never hugs edge */
}


/* Mobile Sticky CTA Call + Text */
.mobile-sticky-cta{
  display:flex;
  align-items:center;
  gap:10px;
}

.cta-text{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
}

/* Optional: if space is tight on small phones */
@media (max-width: 360px){
  .cta-phone{ font-size:13px; }
  .cta-text{ padding:10px; }
}

/* CF7 honeypot */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  height: 0 !important;
  overflow: hidden !important;
}