/* =========================================================
   Absolute Best Plumbing — ABP Branded style.css
   Fonts: Montserrat
   Colors: ABP teal/navy/green brand identity
   ========================================================= */

/* ── CSS Custom Properties — ABP Brand ── */
:root {
  --teal:        #0094b3;   /* ABP primary teal */
  --teal-dark:   #007a94;
  --teal-deeper: #005f73;
  --navy:        #003d5b;   /* ABP deep navy */
  --navy-2:      #002e45;
  --navy-3:      #001f30;
  --green:       #5cb947;   /* ABP green CTA */
  --green-dark:  #47a034;
  --bg:          #f0f5f8;
  --bg-2:        #e4eef4;
  --white:       #ffffff;
  --text:        #1a2e3b;
  --text-muted:  #4d6b7a;
  --text-light:  #7a9aaa;
  --border:      #d4e4ec;
  --shadow-xs:   0 1px 4px rgba(0,61,91,.06);
  --shadow-sm:   0 2px 12px rgba(0,61,91,.09);
  --shadow-md:   0 6px 28px rgba(0,61,91,.13);
  --shadow-lg:   0 16px 56px rgba(0,61,91,.18);
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --transition:  .28s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Pill label ── */
.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,148,179,.1);
  color: var(--teal-dark);
  border: 1px solid rgba(0,148,179,.25);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: .02em;
}
.btn--teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(0,148,179,.3);
}
.btn--teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,148,179,.4);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,61,91,.25);
}
.btn--navy:hover {
  background: var(--navy-2);
  border-color: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,61,91,.35);
}
.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(92,185,71,.25);
}
.btn--green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,185,71,.35);
}
.btn--outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline-teal:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
}
.btn--lg { padding: 16px 34px; font-size: .95rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Section shared ── */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header--white .section-title,
.section-header--white .section-sub { color: var(--white); }
.section-header--white .pill-label {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.2);
}
.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeUp .65s ease forwards; }
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }
.delay-4 { animation-delay: .48s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ==========================================================
   HEADER
   ========================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 20px;
  transition: padding var(--transition);
}
.header.scrolled .header__inner { padding-top: 10px; padding-bottom: 10px; }

/* Logo — two versions: white on dark, color on white */
.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo img {
  height: 56px;
  width: auto;
  display: block;
  transition: height var(--transition), opacity var(--transition);
}
.header.scrolled .header__logo img { height: 48px; }
/* white logo shown over hero, hidden when scrolled */
.header__logo .logo-white { display: block; filter: brightness(0) invert(1); }
.header__logo .logo-color { display: none; }
.header.scrolled .header__logo .logo-white { display: none; }
.header.scrolled .header__logo .logo-color { display: block; }

/* Header right */
.header__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.badge-espanol {
  background: var(--teal);
  color: var(--white);
  font-size: .8rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: .07em;
  white-space: nowrap;
  cursor: default;
  transition: all .3s ease;
  box-shadow: 0 2px 8px rgba(0,148,179,.25);
}
.badge-espanol:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 20px rgba(0,148,179,.45);
  background: var(--navy);
}
.header__cta { font-size: .95rem; padding: 12px 22px; }

/* ==========================================================
   HERO — Full-bleed video background
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0a0a0a;
  padding-top: 0;
}

/* Video layer */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Gradient overlay — lighter to show video, heavy at bottom for readability */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,.35) 0%,
      rgba(0,0,0,.45) 40%,
      rgba(0,0,0,.82) 100%);
}

/* Inner flex row — push content to bottom */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 64px;
  margin-top: auto;
}
.hero__container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

/* Left column */
.hero__content { flex: 1; max-width: 560px; }
.hero__headline {
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.hero__headline span { color: var(--teal); }
.hero__sub {
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 520px;
}
.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero-specific button variants */
.btn--hero-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.8);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  letter-spacing: .01em;
}
.btn--hero-outline { transition: all 0.3s ease; }
.btn--hero-outline:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.12);
  border-color: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0,148,179,.35);
}
.btn--hero-phone {
  background: var(--green);
  color: var(--white);
  border: 1.5px solid var(--green);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.btn--hero-phone i { transition: transform .3s ease; }
.btn--hero-phone:hover {
  transform: translateY(-3px);
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 8px 20px rgba(0,148,179,.45);
}
.btn--hero-phone:hover i { transform: scale(1.2); }

/* Right column — feature chips */
.hero__chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.hero__chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 12px 22px;
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: .01em;
  transition: all 0.3s ease;
  cursor: default;
}
.hero__chip:hover {
  background: rgba(0,0,0,.35);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.hero__chip i {
  color: var(--white);
  font-size: .8rem;
  width: 14px;
  text-align: center;
  opacity: .85;
}

/* ==========================================================
   SERVICES — hover-expand photo cards
   ========================================================== */
.services { background: var(--bg); }

.svc-flex {
  display: flex;
  gap: 10px;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
}

/* Always-visible title centered below the icon */
.svc-card__name {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% + 56px));
  z-index: 4;
  padding: 0 14px;
  width: 100%;
  color: #fff;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  text-align: center;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0,0,0,.6), 0 0 14px rgba(0,0,0,.35);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.svc-card:hover .svc-card__name {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 46px));
}

/* Each card: starts narrow, expands on hover */
.svc-card {
  position: relative;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: flex .55s cubic-bezier(.4,0,.2,1);
  min-width: 0;
}
.svc-flex:hover .svc-card { flex: 0.45; }
.svc-card:hover { flex: 3 !important; }

/* Background photo */
.svc-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.svc-card:hover .svc-card__bg { transform: scale(1.06); }

/* Dark overlay */
.svc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.18) 0%,
    rgba(0,0,0,.35) 50%,
    rgba(0,0,0,.80) 100%
  );
  transition: opacity .4s;
}

/* Centered icon shown when card is NOT expanded */
.svc-card__center-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.8rem;
  color: rgba(255,255,255,.85);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.svc-card:hover .svc-card__center-icon {
  opacity: 0;
  transform: translate(-50%, -60%);
}

/* Spinning "LEARN MORE" circular badge */
.svc-card__badge {
  position: absolute;
  top: 22px; left: 22px;
  width: 90px; height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.75);
  transition: opacity .35s .1s, transform .35s .1s;
  pointer-events: none;
}
.svc-card:hover .svc-card__badge {
  opacity: 1;
  transform: scale(1);
}
.svc-card__badge svg {
  position: absolute;
  inset: 0;
  animation: spin-badge 9s linear infinite;
}
@keyframes spin-badge { to { transform: rotate(360deg); } }
.svc-card__badge-icon {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.svc-card__badge-bolt {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.3rem;
}

/* Bottom body: title + description shown on hover */
.svc-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 24px 28px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s .05s, transform .35s .05s;
  pointer-events: none;
}
.svc-card:hover .svc-card__body {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.svc-card__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.svc-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.01em;
}
.svc-card__corner-icon {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  flex-shrink: 0;
}
.svc-card__desc {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  font-weight: 500;
  max-width: 280px;
}

/* ==========================================================
   WHY CHOOSE US
   ========================================================== */
.why-us { background: var(--bg); }

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

/* Left: image with frosted experience card */
.why-us__image { position: relative; }
.why-us__image-main {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 460px;
  box-shadow: var(--shadow-md);
}
.why-us__image-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.why-us__exp-card {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(20, 30, 45, .55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  border-radius: 14px;
  padding: 18px 24px;
  min-width: 180px;
}
.why-us__exp-num {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.why-us__exp-label {
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

/* Right: feature list */
.why-us__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.feature-icon-wrap {
  width: 42px; height: 42px;
  background: rgba(0,148,179,.10);
  color: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* First, highlighted feature */
.feature-featured {
  background: rgba(0,148,179,.07);
  border: 1px solid rgba(0,148,179,.12);
  border-radius: 14px;
  padding: 20px 22px;
}
.feature-featured__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.feature-featured__head h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
}
.feature-featured p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 500;
}

/* Remaining feature rows — icon + title + description */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 6px;
  border-bottom: 1px solid var(--border);
}
.feature-list__item:last-child { border-bottom: none; padding-bottom: 6px; }
.feature-list__item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.feature-list__item p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 500;
}

/* Bottom emergency CTA banner */
.why-us__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  padding: 28px 36px;
  box-shadow: var(--shadow-md);
}
.why-us__cta-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.why-us__cta-text p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.why-us__cta-btn {
  background: var(--white);
  color: var(--navy);
  font-size: .92rem;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.why-us__cta-btn:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

/* legacy counter rules (no longer rendered) */
.counters, .counter-item, .counter-num, .counter-label { display: none; }

/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.how-it-works { background: var(--navy); }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-sub { color: rgba(255,255,255,.5); }
.steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: start;
}
.step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.step:hover {
  background: rgba(0,148,179,.1);
  border-color: rgba(0,148,179,.3);
  transform: translateY(-4px);
}
.step__num-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.step__number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  opacity: .8;
}
.step__line {
  flex: 1;
  height: 1px;
  background: rgba(0,148,179,.25);
}
.step__title {
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.step__desc { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.7; font-weight: 500; }
.step__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,148,179,.3);
  font-size: 1rem;
  padding-top: 48px;
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials { background: var(--bg); }
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel { overflow: hidden; flex: 1; border-radius: var(--radius); padding: 4px; }
.carousel__track {
  display: flex;
  gap: 20px;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
/* Google-style review summary at top */
.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 24px;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}
.reviews-summary__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-summary__num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.reviews-summary__stars { color: #fbbc05; font-size: 1rem; letter-spacing: 1px; white-space: nowrap; flex-shrink: 0; }
.reviews-summary__count { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.g-logo {
  font-family: 'Product Sans', 'Arial', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -.5px;
}

/* Google-style review card */
.g-review {
  flex: 0 0 calc(50% - 10px);
  background: var(--white);
  border-radius: 12px;
  padding: 24px 28px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: left;
  display: flex;
  flex-direction: column;
}
.g-review__text { flex: 1; }
.g-review__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.g-review__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
  letter-spacing: .02em;
}
.g-review__id { flex: 1; min-width: 0; }
.g-review__id strong {
  display: block;
  font-size: .98rem;
  font-weight: 600;
  color: #202124;
  margin-bottom: 2px;
}
.g-review__id span {
  font-size: .8rem;
  color: #5f6368;
  font-weight: 400;
}
.g-review__source {
  color: #4285F4;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.g-review__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.g-review__stars { color: #fbbc05; font-size: .95rem; letter-spacing: 1px; }
.g-review__date { font-size: .82rem; color: #5f6368; font-weight: 400; }
.g-review__text {
  font-size: .94rem;
  color: #3c4043;
  line-height: 1.7;
  font-weight: 400;
}

.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  flex-shrink: 0;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}
.carousel-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.dot.active { background: var(--teal); width: 24px; border-radius: 4px; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq { background: var(--white); }
.faq__inner { max-width: 800px; }
.accordion { display: flex; flex-direction: column; gap: 10px; }
.accordion__item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.accordion__item.active {
  border-color: rgba(0,148,179,.3);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.accordion__btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition);
  letter-spacing: .01em;
}
.accordion__btn:hover { color: var(--teal); }
.accordion__btn[aria-expanded="true"] { color: var(--teal); }
.accordion__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,148,179,.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.accordion__btn[aria-expanded="true"] .accordion__icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--white);
}
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.accordion__panel.open { max-height: 400px; }
.accordion__panel p {
  padding: 0 22px 22px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 500;
}
.accordion__panel a { color: var(--teal); font-weight: 700; }

/* ==========================================================
   CONTACT
   ========================================================== */
.contact { background: var(--navy); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: stretch;
}
.contact__info {
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.contact__info .contact-divider { margin-top: auto; }
.contact-phone {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 36px;
  letter-spacing: -.02em;
  text-transform: uppercase;
  transition: color var(--transition);
  line-height: 1.1;
}
.contact-phone:hover { color: var(--teal); }
.contact-phone i { color: var(--teal); margin-right: 8px; font-size: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(0,148,179,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: .95rem;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: .68rem;
  color: rgba(255,255,255,.4);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-detail span { font-size: .9rem; color: rgba(255,255,255,.8); font-weight: 500; }
.contact-divider { height: 1px; background: rgba(255,255,255,.08); margin: 28px 0; }
.contact-guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(92,185,71,.12);
  border: 1px solid rgba(92,185,71,.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.contact-guarantee i { color: var(--green); font-size: 1.2rem; flex-shrink: 0; }
.contact-guarantee p { color: rgba(255,255,255,.75); font-size: .87rem; line-height: 1.6; font-weight: 500; }

/* Form */
.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.form-header { margin-bottom: 28px; }
.form-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.form-header p { font-size: .85rem; color: var(--text-muted); font-weight: 500; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.req { color: #e74c3c; }
input, select, textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  transition: all var(--transition);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,148,179,.12);
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234d6b7a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
textarea { resize: vertical; min-height: 100px; }
.form-success { text-align: center; padding: 48px 20px; }
.form-success.hidden { display: none; }
.form-success__icon { font-size: 4rem; color: var(--green); margin-bottom: 16px; }
.form-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.form-success p { color: var(--text-muted); font-weight: 500; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer { background: var(--navy-3); color: rgba(255,255,255,.6); }
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 54px 28px 36px;
  text-align: center;
}
.footer__logo img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer__social a:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
  transition: color var(--transition);
}
.footer__phone i { color: var(--green); }
.footer__phone:hover { color: var(--teal); }
.footer__chips {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: .05em;
  cursor: default;
  transition: all .3s ease;
}
.footer__chip:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.12);
  border-color: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0,148,179,.35);
}
.footer__chip i { color: var(--teal); transition: transform .3s ease; }
.footer__chip:hover i { transform: scale(1.2); }
.footer__chip--es {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0,148,179,.25);
}
.footer__chip--es:hover {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 8px 20px rgba(92,185,71,.45);
}
.footer__chip--es i { color: var(--white); }
.footer__copy {
  margin-top: 6px;
  font-size: .76rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 960px) {
  .hero__container { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero__chips { flex-direction: row; flex-wrap: wrap; }
  .hero__chip { white-space: normal; }
  .hero__content { max-width: none; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step__connector { display: none; }
  .why-us__inner { grid-template-columns: 1fr; gap: 48px; }
  .why-us__image-main img { height: 340px; }
  .why-us__exp-card { right: 16px; bottom: -16px; }
  .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
  /* Services: horizontal scroll-snap slider on mobile */
  .svc-flex {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    height: 440px;
    border-radius: 0;
    padding: 4px 20px 20px;
    margin: 0 -20px;
    scroll-padding-left: 20px;
  }
  .svc-flex::-webkit-scrollbar { display: none; }
  .svc-flex .svc-card {
    flex: 0 0 78%;
    max-width: 320px;
    scroll-snap-align: start;
    transition: none;
  }
  /* Disable desktop hover-expand on mobile */
  .svc-flex:hover .svc-card,
  .svc-flex .svc-card:hover { flex: 0 0 78% !important; }
  /* Always show title + description on mobile (no hover available) */
  .svc-card__name { display: none; }
  .svc-card__center-icon { top: 38%; }
  .svc-card__body {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: linear-gradient(to top, rgba(0,0,0,.85) 30%, rgba(0,0,0,0) 100%);
    padding: 60px 18px 20px;
  }
  .svc-card__desc { font-size: .8rem; max-width: none; }
  .header__cta { display: none; }
  .badge-espanol { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 22px; }
  .carousel-btn { display: none; }
  .g-review { padding: 22px 20px 24px; flex: 0 0 100%; }
  .reviews-summary { flex-direction: column; gap: 14px; padding: 18px 22px; }
}
@media (max-width: 600px) {
  .section { padding: 68px 0; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { justify-content: center; }
  .footer__phone { font-size: 1.15rem; }
  .why-us__cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px 22px;
    gap: 18px;
  }
  .why-us__cta-btn { width: 100%; text-align: center; padding: 14px 20px; }
  .why-us__cta-text h3 { font-size: 1.2rem; }
}
