/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1A1A2E;
  line-height: 1.6;
  background: #fff;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:    #1B2B6B;
  --navy-d:  #111E4A;
  --red:     #C41230;
  --red-d:   #A50E28;
  --cream:   #EDE7E1;
  --border:  #DDD7D1;
  --white:   #FFFFFF;
  --gray:    #6B7280;
  --shadow:  rgba(27, 43, 107, 0.10);
}

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1ede9; }
::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 4px;
  border: 2px solid #f1ede9;
}
::-webkit-scrollbar-thumb:hover { background: var(--red); }
* { scrollbar-width: thin; scrollbar-color: var(--navy) #f1ede9; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, border-color .2s, transform .18s, box-shadow .2s;
  white-space: nowrap;
  line-height: 1;
}
.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-d);
  border-color: var(--red-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 18, 48, .28);
}

/* ════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
#header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s, border-color .3s;
}
#header.scrolled {
  box-shadow: 0 2px 28px var(--shadow);
  border-bottom-color: transparent;
}

.header-wrap {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 66px; width: auto; object-fit: contain; }

/* ─── NAV ─────────────────────────────────────────────────── */
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width .25s;
}
.header-nav a:hover { color: var(--red); }
.header-nav a:hover::after { width: 100%; }

/* ─── HAMBURGER ───────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}
#header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; width: 0; }
#header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* WordPress shared header compatibility */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s, border-color .3s;
}
.header.sticky {
  box-shadow: 0 2px 28px var(--shadow);
  border-bottom-color: transparent;
}
.header .container {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 24px;
}
.header .header-box {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header .logo img {
  height: 66px;
  width: auto;
  object-fit: contain;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.header .main-nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.header .main-nav > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .main-nav > li > a {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}
.header .main-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width .25s;
}
.header .main-nav > li > a:hover {
  color: var(--red);
}
.header .main-nav > li > a:hover::after {
  width: 100%;
}
.header .header__right {
  display: none;
}
.header .menu-toggle-box {
  display: none;
}
.header .menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 16px;
  cursor: pointer;
}
.header .menu-toggle small,
.header .menu-toggle small::before,
.header .menu-toggle small::after {
  display: block;
  height: 2.5px;
  width: 22px;
  background: var(--navy);
  border-radius: 999px;
  position: relative;
  left: 0;
  top: 0;
  transition: transform .3s ease, opacity .3s ease, background-color .2s ease;
  content: '';
}
.header .menu-toggle small::before,
.header .menu-toggle small::after {
  position: absolute;
}
.header .menu-toggle small::before {
  top: -7px;
}
.header .menu-toggle small::after {
  top: 7px;
}
.header .menu-toggle.is-active small {
  background: transparent;
}
.header .menu-toggle.is-active small::before {
  top: 0;
  transform: rotate(45deg);
}
.header .menu-toggle.is-active small::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ─── FAB CALL ────────────────────────────────────────────── */
@keyframes fab-pulse {
  0%   { box-shadow: 0 8px 32px rgba(196,18,48,.40), 0 0 0 0 rgba(196,18,48,.45); }
  70%  { box-shadow: 0 8px 32px rgba(196,18,48,.40), 0 0 0 14px rgba(196,18,48,0); }
  100% { box-shadow: 0 8px 32px rgba(196,18,48,.40), 0 0 0 0 rgba(196,18,48,0); }
}

.fab-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 997;
  animation: fab-pulse 2s ease-out infinite;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(196, 18, 48, .40);
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.fab-call:hover {
  background: var(--red-d);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(196, 18, 48, .50);
}
.fab-call svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.header-phone:hover .header-phone-icon { background: var(--red); }
.header-phone-icon svg { width: 18px; height: 18px; fill: #fff; }
.header-phone-text { display: flex; flex-direction: column; }
.header-phone-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: .4px;
  line-height: 1;
  margin-bottom: 3px;
}
.header-phone-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.4px;
  line-height: 1;
  transition: color .2s;
}
.header-phone:hover .header-phone-number { color: var(--red); }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  overflow: hidden;
  align-items: stretch;
}

.hero-photo {
  position: relative;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  animation: hero-zoom 1.6s cubic-bezier(.4,0,.2,1) both;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 72px;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  animation: hero-up .55s ease-out .05s both;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: hero-up .6s ease-out .2s both;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
  animation: hero-up .6s ease-out .35s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: hero-up .6s ease-out .5s both;
}


.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 6px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

/* ════════════════════════════════════════════════════════════
   ABOUT US
════════════════════════════════════════════════════════════ */
#about {
  background: var(--cream);
  padding:20px 0 0 0;
  border-bottom: 1px solid var(--border);
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* — Left: text — */
.about-text { display: flex; flex-direction: column; }

.about-text .section-eyebrow { margin-bottom: 12px; }

.about-lead {
  font-size: 17px;
  color: var(--navy);
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 20px;
}
.about-body {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-body:last-of-type { margin-bottom: 36px; }

.about-stats {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.about-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 16px;
  background: var(--white);
}
.about-stat:not(:last-child) { border-right: 1px solid var(--border); }

.about-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-plus {
  font-size: 24px;
  color: var(--red);
}
.about-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .6px;
}

/* — Right: image — */
.about-image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(27,43,107,.35);
}
.about-image-badge svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image { max-height: 420px; }
}
@media (max-width: 640px) {
  #about { padding: 60px 0 0 0; }
  .about-lead { font-size: 15px; }
  .about-stat-num { font-size: 28px; }
}

/* ════════════════════════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════════════════════════ */
#why {
  background: var(--white);
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}

.why-swiper { padding-bottom: 48px; }
.why-swiper .swiper-slide { height: auto; }

/* Desktop: force 4-column grid, bypass Swiper's flex */
@media (min-width: 901px) {
  .why-swiper { padding-bottom: 0; overflow: visible; }
  .why-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    transform: none !important;
    will-change: auto !important;
  }
  .why-swiper .swiper-slide { width: auto !important; }
  .why-swiper .swiper-slide:not(:last-child) .why-item {
    border-right: 1px solid var(--border);
  }
  .why-swiper .swiper-pagination { display: none; }
}

.why-swiper .swiper-pagination-bullet {
  background: var(--border); opacity: 1;
}
.why-swiper .swiper-pagination-bullet-active {
  background: var(--navy);
  width: 20px; border-radius: 3px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 40px;
  position: relative;
  transition: background .25s;
  height: 100%;
}
.why-item:hover { background: #F8F5F2; }

.why-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: background .25s, transform .25s;
}
.why-item:hover .why-icon {
  background: var(--red);
  transform: translateY(-4px);
}
.why-icon svg {
  width: 36px; height: 36px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.why-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 240px;
}

/* ════════════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════════ */
#how {
  background: var(--navy-d);
  padding: 88px 0;
}

#how .section-eyebrow { color: var(--red); }
#how .section-title   { color: #fff; }
#how .section-sub     { color: rgba(255,255,255,.55); }

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.how-step {
  flex: 1;
  max-width: 380px;
  text-align: center;
  padding: 0 40px;
  position: relative;
}

/* big watermark number */
.how-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,.05);
  margin-bottom: -28px;
  user-select: none;
}

.how-icon {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  transition: transform .3s;
}
.how-step:hover .how-icon { transform: translateY(-6px); }

.how-icon svg {
  width: 40px; height: 40px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.how-desc {
  font-size: 14px;
  color: rgba(255,255,255,.60);
  line-height: 1.75;
  max-width: 260px;
  margin: 0 auto;
}

/* arrow connector between steps */
.how-connector {
  flex-shrink: 0;
  width: 64px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /* align with icon vertical center:
     watermark 96px * 1 lh - 28px overlap = 68px, then half icon 46px → 114px */
  padding-top: 114px;
}
.how-connector svg {
  width: 28px; height: 28px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .7;
}

/* ════════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════ */
#services {
  background: var(--cream);
  padding: 88px 0 72px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}

/* Grid — no borders, open layout */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 72px;
  column-gap: 40px;
}

.svc-item {
  display: flex;
  align-items: center;
  gap: 32px;
}

/*
  Row alternation — ENTIRE ROW switches together:
  Row 1 (items 1,2):   icon LEFT  → flex-direction: row
  Row 2 (items 3,4):   icon RIGHT → flex-direction: row-reverse
  Row 3 (items 5,6):   icon LEFT  → flex-direction: row
  Row 4 (items 7,8):   icon RIGHT → flex-direction: row-reverse
  Row 5 (items 9,10):  icon LEFT  → flex-direction: row
  Row 6 (item  11):    icon LEFT  → flex-direction: row (centered)
  Cycle: row, row, rev, rev, row, row, rev, rev …
*/
/* .svc-item:nth-child(4n+3),
.svc-item:nth-child(4n+4) { flex-direction: row-reverse; } */

/* 11th item alone in last row — span full width and center */
.svc-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 660px;
  margin: 0 auto;
  flex-direction: row;
}

.svc-img {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  object-fit: contain;
}
.svc-img-svg {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
}

.svc-body { flex: 1; min-width: 0; }
.svc-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.svc-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 14px;
}
.svc-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  transition: color .2s;
}
.svc-link:hover { color: var(--red); }
.svc-link::after { content: ' »'; margin-left: 2px; }

.svc-cta-row {
  text-align: center;
  margin-top: 56px;
}
.svc-cta-row p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 18px;
}
.svc-cta-row strong { color: var(--navy); }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
#footer { background: var(--navy-d); color: rgba(255,255,255,.72); }

.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-logo {
  height: 50px;
  width: auto;

  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,.50);
  max-width: 270px;
  margin-bottom: 28px;
}

.footer-contacts { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
.footer-contact-row svg {
  width: 15px; height: 15px;
  fill: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-row a {
  color: rgba(255,255,255,.72);
  transition: color .2s;
}
.footer-contact-row a:hover { color: #fff; }

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.58);
  transition: color .2s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.36);
}

/* ════════════════════════════════════════════════════════════
   SERVICE AREAS
════════════════════════════════════════════════════════════ */
#locations {
  background: var(--white);
  padding: 88px 0;
  border-top: 1px solid var(--border);
}

.areas-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.areas-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.areas-state-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 18px;
}

.areas-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 22px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
  border-radius: 3px;
  flex-shrink: 0;
}
.areas-flag.mo { background: var(--red); }

.areas-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

/* KS has 20 cities — split into 2 sub-columns */
.areas-state:first-child .areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 20px;
}
.areas-list li {
  font-size: 16px;
  color: var(--gray);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.areas-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23C41230' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.areas-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow);
  border: 1px solid var(--border);
}
.areas-map iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: none;
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════ */
#reviews {
  background: var(--cream);
  padding: 88px 0;
}

/* Swiper overrides */
.reviews-swiper {
  padding: 4px 58px 52px !important;
  --swiper-navigation-size: 15px;
}
.reviews-swiper .swiper-slide { height: auto; }

.reviews-swiper .swiper-button-prev,
.reviews-swiper .swiper-button-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  box-shadow: 0 4px 16px var(--shadow);
  color: var(--navy);
  top: calc(50% - 26px);
  transition: background .2s, border-color .2s, color .2s;
}
.reviews-swiper .swiper-button-prev { left: 0; }
.reviews-swiper .swiper-button-next { right: 0; }
.reviews-swiper .swiper-button-prev:hover,
.reviews-swiper .swiper-button-next:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.reviews-swiper .swiper-button-prev::after,
.reviews-swiper .swiper-button-next::after { font-size: 13px; font-weight: 800; }

.reviews-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--border);
  opacity: 1;
  transition: background .25s, width .25s, border-radius .25s;
}
.reviews-swiper .swiper-pagination-bullet-active {
  background: var(--navy);
  width: 24px;
  border-radius: 4px;
}

.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
	height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}

.review-stars { display: flex; gap: 3px; }
.review-star {
  width: 18px;
  height: 18px;
  fill: #F59E0B;
  stroke: #F59E0B;
  stroke-width: .5;
}

.review-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.review-city {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════
   CONTACT FORM
════════════════════════════════════════════════════════════ */
#contact {
  background: var(--navy-d);
  padding: 88px 0;
}
#contact .section-eyebrow { color: var(--red); }
#contact .section-title   { color: #fff; }
#contact .section-sub     { color: rgba(255,255,255,.55); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: stretch;
}

/* Form box */
.contact-form-box {
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
}

.contact-form { display: flex; flex-direction: column; gap: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .2px;
}
.form-req { color: var(--red); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: #1A1A2E;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  line-height: 1.5;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #B0B7C0; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,43,107,.09);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B2B6B' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  margin-top: 28px;
  padding: 15px 28px;
  font-size: 16px;
}

/* Info panel */
.contact-info {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
}

.contact-info-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 14px;
}
.contact-info-sub {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--red);
}
.contact-detail-icon svg[viewBox="0 0 24 24"]:has(circle) {
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.contact-detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
}
.contact-detail-value a {
  color: #fff;
  transition: color .2s;
}
.contact-detail-value a:hover { color: var(--red); }

.contact-hours {
  margin-top: 36px;
  flex: 1;
  padding: 28px 28px;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  flex-direction: column;
}
.contact-hours-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 18px;
}
.contact-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,.60);
  flex: 1;
  padding: 0 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.contact-hours-list li:last-child { border-bottom: none; }
.contact-hours-list li span:last-child {
  color: #fff;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════════════════ */

/* Hero entrance — runs on page load, CSS-only */
@keyframes hero-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hero-zoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}

/* Hero entrance animations — CSS only, run on page load */

/* Scroll reveal base — JS adds .reveal / .reveal-left / .reveal-right */
.reveal,
.reveal-left,
.reveal-right {
  transition-property: opacity, transform;
  transition-duration: .6s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-delay: var(--delay, 0ms);
}
.reveal       { opacity: 0; transform: translateY(28px); }
.reveal-left  { opacity: 0; transform: translateX(-36px); }
.reveal-right { opacity: 0; transform: translateX(36px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-title, .hero-sub, .hero-btns,
  .hero-photo img { animation: none; }
  .reveal, .reveal-left, .reveal-right { transition: none; opacity: 1; transform: none; }
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */

/* Nav — collapse at 900px */
@media (max-width: 900px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px var(--shadow);
    padding: 8px 24px 20px;
    z-index: 100;
  }
  #header.nav-open .header-nav { display: flex; }
  .header-nav a {
    padding: 12px 0;
    font-size: 15px;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .header-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }

  .header .container { padding: 0 20px; }
  .header .header-box { height: 64px; }
  .header .logo img { height: 44px; }
  .header .menu-toggle-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    transition: background-color .2s;
  }
  .header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px var(--shadow);
    padding: 8px 24px 20px;
    z-index: 100;
  }
  .header nav.is-active { display: flex; }
  .header .main-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .header .main-nav > li {
    width: 100%;
    border-bottom: 1px solid var(--border);
    padding: 0;
  }
  .header .main-nav > li:last-child {
    border-bottom: none;
  }
  .header .main-nav > li > a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    width: 100%;
  }

  /* FAB smaller on mobile */
  .fab-call span { display: none; }
  .fab-call { padding: 16px; border-radius: 50%; bottom: 20px; right: 20px; }
  .fab-call svg { width: 24px; height: 24px; }
}

/* Hero — tablet & mobile: photo becomes full background */
@media (max-width: 900px) {
  #hero {
    display: block;
    position: relative;
    min-height: 560px;
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.55) 40%,
      rgba(255,255,255,0.96) 62%,
      #fff 80%
    );
  }
  .hero-text {
    position: relative;
    z-index: 1;
    padding: 300px 40px 64px;
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .how-steps { flex-direction: column; align-items: center; gap: 48px; }
  .how-connector { display: none; }
  .how-step { max-width: 100%; padding: 0 20px; }
  /* Why swiper — 2 per slide on tablet handled by JS breakpoints */
}

@media (max-width: 980px) {
  /* Service Areas */
  .areas-wrap { grid-template-columns: 1fr; gap: 40px; }
  .areas-map iframe { height: 380px; }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr; gap: 44px; }
  .contact-form-box { padding: 36px 32px; }
}

@media (max-width: 980px) {
  .svc-grid {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }
  .svc-item,
  .svc-item:nth-child(4n+3),
  .svc-item:nth-child(4n+4) { flex-direction: row; }
  .svc-item:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  /* Service Areas */
  .areas-cols { grid-template-columns: 1fr; gap: 28px; }
  .areas-map iframe { height: 300px; }

  /* Swiper on small screens */
  .reviews-swiper .swiper-button-prev,
  .reviews-swiper .swiper-button-next { width: 36px; height: 36px; }

  /* Contact */
  .contact-form-box { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .header-wrap { height: 64px; }
  .header-logo img { height: 44px; }
  .header-phone-label { display: none; }
  .header-phone-number { font-size: 17px; }

  /* Global min font size 16px on mobile */
  .hero-sub, .about-body, .about-lead,
  .svc-desc, .how-desc, .why-desc,
  .review-text, .areas-list li,
  .footer-links a, .footer-tagline,
  .contact-info-sub, .form-label,
  .section-sub { font-size: 16px; }

  /* Hero mobile */
  #hero { min-height: 520px; }
  .hero-text { padding: 260px 20px 56px; }
  .hero-sub { max-width: 100%; }

  /* Why item mobile padding */
  .why-item { padding: 36px 28px; }

  /* Sections — less vertical padding on mobile */
  #why, #how, #locations, #reviews, #contact { padding: 60px 0; }

  #services { padding: 56px 0 44px; }
  .svc-item { flex-direction: column !important; text-align: center; }
  .svc-img, .svc-img-svg { width: 140px; height: 140px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; padding: 44px 0 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }


	.areas-state .areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 20px;
}
.reviews-swiper {
     padding: 4px 15px 50px !important; 

}
.form-group:last-of-type {
    margin-bottom: 20px;
}
.contact-hours {
    padding: 16px 16px;
  
}
.contact-hours-list li {
	padding: 7px 0;
}
}

/* Shortcode forms (CF7 / Site Reviews) */
.contact-form-box .wpcf7,
.contact-form-box .glsr {
  width: 100%;
}

.contact-form-box .wpcf7-form p,
.contact-form-box .glsr p {
  margin: 0 ;
}

.contact-form-box .wpcf7 input[type="text"],
.contact-form-box .wpcf7 input[type="email"],
.contact-form-box .wpcf7 input[type="tel"],
.contact-form-box .wpcf7 select,
.contact-form-box .wpcf7 textarea,
.contact-form-box .glsr input[type="text"],
.contact-form-box .glsr input[type="email"],
.contact-form-box .glsr textarea,
.contact-form-box .glsr select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: #1A1A2E;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  line-height: 1.5;
}

.contact-form-box .wpcf7 input[type="text"]:focus,
.contact-form-box .wpcf7 input[type="email"]:focus,
.contact-form-box .wpcf7 input[type="tel"]:focus,
.contact-form-box .wpcf7 select:focus,
.contact-form-box .wpcf7 textarea:focus,
.contact-form-box .glsr input[type="text"]:focus,
.contact-form-box .glsr input[type="email"]:focus,
.contact-form-box .glsr textarea:focus,
.contact-form-box .glsr select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,43,107,.09);
}

.contact-form-box .wpcf7 textarea,
.contact-form-box .glsr textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form-box .wpcf7 input[type="submit"],
.contact-form-box .wpcf7 button,
.contact-form-box .glsr button,
.contact-form-box .glsr [type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding: 15px 28px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--red);
  background: var(--red);
  color: #fff;
  transition: background .2s, border-color .2s, transform .18s, box-shadow .2s;
  line-height: 1;
}
.wpcf7-spinner{
	display: none !important;
}

.contact-form-box .wpcf7 input[type="submit"]:hover,
.contact-form-box .wpcf7 button:hover,
.contact-form-box .glsr button:hover,
.contact-form-box .glsr [type="submit"]:hover {
  background: var(--red-d);
  border-color: var(--red-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 18, 48, .28);
}
