/*--------------------------------------------------------------
# Homepage Styles - Santa Clarita Auto Glass Repair
--------------------------------------------------------------*/

/* ---- Variables ---- */
:root {
  /* Brand reds — deeper, less neon */
  --clr-red:        #C41530;
  --clr-red-dark:   #960F23;
  --clr-red-glow:   rgba(196, 21, 48, 0.40);
  --clr-red-subtle: rgba(196, 21, 48, 0.08);
  --clr-red-mid:    rgba(196, 21, 48, 0.15);
  --clr-red-border: rgba(196, 21, 48, 0.30);

  /* Gold — trust/star accent only */
  --clr-gold:       #D4A017;
  --clr-gold-light: #F0C842;
  --clr-gold-glow:  rgba(212, 160, 23, 0.30);

  /* Darks */
  --clr-dark: #212529;
  --clr-mid:  #37373f;
  --clr-deep: #0d0d0d;

  /* Lights */
  --clr-light-bg: #f8f9fa;
  --clr-grey-bg:  #eeeeee;
  --clr-white:    #ffffff;

  /* Geometry */
  --radius:      10px;
  --radius-lg:   18px;
  --radius-pill: 50px;

  /* Shadow system */
  --shadow-xs:   0 2px 8px rgba(0,0,0,.06);
  --shadow:      0 4px 24px rgba(0,0,0,.10);
  --shadow-md:   0 10px 36px rgba(0,0,0,.14);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.22);
  --shadow-red:  0 8px 28px var(--clr-red-glow);
  --shadow-gold: 0 6px 20px var(--clr-gold-glow);

  /* Transitions */
  --transition:      all .3s cubic-bezier(.25,.46,.45,.94);
  --transition-fast: all .18s cubic-bezier(.25,.46,.45,.94);
  --transition-slow: all .5s cubic-bezier(.25,.46,.45,.94);
}

/* ---- Global Typography ---- */
h1, h2, h3, h4, h5, h6 { letter-spacing: -0.02em; }

.hero-eyebrow, .intro-eyebrow, .why-eyebrow, .svc-eyebrow,
.certs-eyebrow, .reviews-eyebrow, .areas-eyebrow, .faq-eyebrow,
.top-rated-eyebrow, .schedule-eyebrow {
  letter-spacing: 2.5px;
  font-size: .72rem;
  font-weight: 800;
}

.intro-body, .why-subtext, .svc-subtext, .certs-subtext,
.schedule-subtext, .hp-review-card > p {
  line-height: 1.85;
  font-size: .97rem;
}

/* ---- Utility ---- */
.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.bg-light-grey {
  background-color: var(--clr-light-bg);
}

.bg-grey {
  background-color: var(--clr-grey-bg);
}

.bg-dark-brand {
  background-color: var(--clr-mid);
}

.text-red {
  color: var(--clr-red);
}

/* ====================================================
   HERO SECTION — Premium Redesign
   ==================================================== */
.hp-hero {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(160deg, #ffffff 0%, #fafafa 55%, #f5f0f1 100%);
  display: flex;
  align-items: center;
  margin-top: 110px;
  padding: 70px 0 60px;
  overflow: hidden;
}

/* Very faint dot grid — light on white */
.hp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196, 21, 48, .08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Large red decorative shape — right side accent panel */
.hero-bg-split {
  position: absolute;
  top: -10%;
  right: -4%;
  width: 46%;
  height: 120%;
  background: linear-gradient(145deg, var(--clr-red) 0%, var(--clr-red-dark) 60%, #6e0010 100%);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
  opacity: .92;
}

/* Soft light glow on left side — keeps left column bright */
.hp-hero::after {
  content: '';
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 21, 48, .06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hp-hero .hero-inner {
  position: relative;
  z-index: 2;
}

/* ---- Eyebrow label ---- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 21, 48, .08);
  border: 1px solid rgba(196, 21, 48, .25);
  color: var(--clr-red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--clr-gold-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--clr-gold-light);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.4);
  }
}

/* ---- H1 ---- */
.hp-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #111111;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.hero-h1-accent {
  color: var(--clr-red);
  position: relative;
  display: inline-block;
}

.hero-h1-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-red) 0%, var(--clr-gold) 60%, transparent 100%);
  border-radius: 3px;
}

/* ---- Lead text ---- */
.hp-hero .hero-lead {
  font-size: 1rem;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}

/* ---- Checklist ---- */
.hp-hero .hero-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.hp-hero .hero-checks li {
  color: #333333;
  font-size: .93rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.hp-hero .hero-checks li i {
  color: var(--clr-red);
  font-size: .9rem;
  flex-shrink: 0;
}

/* ---- CTA row ---- */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hp-hero .btn-primary-red {
  background: linear-gradient(135deg, var(--clr-red) 0%, var(--clr-red-dark) 100%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .3px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 8px 24px var(--clr-red-glow);
}

.hp-hero .btn-primary-red:hover {
  background: linear-gradient(135deg, var(--clr-red-dark) 0%, #6e0916 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--clr-red-glow);
}

.btn-hero-ghost {
  color: var(--clr-mid);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  border: 1.5px solid rgba(0, 0, 0, .20);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
  background: transparent;
}

.btn-hero-ghost:hover {
  border-color: rgba(0, 0, 0, .40);
  background: rgba(0, 0, 0, .04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
  color: var(--clr-dark);
}

/* ---- Image frame ---- */
.hero-img-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 20px 0;
}

/* Decorative corner accent behind image */
.hero-img-accent-ring {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 80%;
  border: 2px solid rgba(196, 21, 48, .35);
  border-radius: var(--radius-lg);
  pointer-events: none;
  transform: translate(14px, 14px);
}

/* Clean professional image wrapper — sits on red panel so white border is correct */
.hero-img-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .40), 0 0 0 3px rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .20);
  transition: box-shadow .4s ease;
}

.hero-img-wrapper:hover {
  box-shadow: 0 28px 64px rgba(0, 0, 0, .50), 0 0 0 3px rgba(255, 255, 255, .25);
}

.hero-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .6s ease;
}

.hero-img-wrapper:hover .hero-service-img {
  transform: scale(1.03);
}

/* ---- Floating badge (star rating) ---- */
.hero-float-badge {
  position: absolute;
  top: 18%;
  left: -10px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 18px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18), 0 1px 0 rgba(255,255,255,.8) inset;
  z-index: 4;
  animation: float-up 3s ease-in-out infinite;
}

.hero-float-badge i {
  color: var(--clr-gold-light);
  font-size: 1.3rem;
}

.hero-float-badge span {
  font-weight: 700;
  font-size: .82rem;
  color: var(--clr-mid);
  line-height: 1.3;
}

.hero-float-badge small {
  font-weight: 500;
  color: #888;
  font-size: .72rem;
}

/* ---- Floating stat (same-day) ---- */
.hero-float-stat {
  position: absolute;
  bottom: 14%;
  right: -4px;
  background: linear-gradient(135deg, var(--clr-red) 0%, var(--clr-red-dark) 100%);
  border-radius: 16px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 28px var(--clr-red-glow), 0 1px 0 rgba(255,255,255,.12) inset;
  z-index: 4;
  animation: float-up 3s ease-in-out infinite .8s;
}

.hero-float-stat strong {
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-float-stat span {
  color: rgba(255, 255, 255, .85);
  font-size: .72rem;
  font-weight: 500;
}

@keyframes float-up {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ---- Hero form wrap (kept for backward compat) ---- */
.hp-hero .hero-form-wrap {
  background: rgba(255, 255, 255, .97);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-md);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .hp-hero {
    min-height: auto;
    padding: 50px 0 50px;
    margin-top: 110px;
  }

  .hp-hero h1 {
    font-size: 2rem;
  }

  .hero-img-frame {
    margin-top: 40px;
    justify-content: center;
  }

  .hero-img-wrapper {
    max-width: 320px;
  }

  .hero-float-badge {
    left: 0;
  }

  .hero-float-stat {
    right: 0;
  }

  .hero-bg-split {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 45%;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    opacity: .85;
  }
}

@media (max-width: 767px) {
  .hp-hero {
    padding: 40px 0;
    margin-top: 100px;
  }

  .hp-hero h1 {
    font-size: 1.65rem;
  }

  .hero-img-wrapper {
    max-width: 260px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-hero-ghost,
  .hp-hero .btn-primary-red {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hp-hero {
    margin-top: 90px;
  }

  .hp-hero h1 {
    font-size: 1.45rem;
  }

  .hero-eyebrow {
    font-size: .72rem;
  }
}

/* ====================================================
   INTRO SECTION
   ==================================================== */
.hp-intro-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}

/* Faint red arc in top-right corner — outer ring */
.hp-intro-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border: 50px solid rgba(196, 21, 48, .045);
  border-radius: 50%;
  pointer-events: none;
}

/* Second concentric arc */
.hp-intro-section::after {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 500px;
  height: 500px;
  border: 24px solid rgba(196, 21, 48, .025);
  border-radius: 50%;
  pointer-events: none;
}

/* ---- Eyebrow ---- */
.intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 16px;
}

.intro-eyebrow span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--clr-red);
  border-radius: 2px;
}

/* ---- Heading ---- */
.intro-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--clr-mid);
  line-height: 1.2;
  margin-bottom: 22px;
}

.intro-heading span {
  color: var(--clr-red);
}

/* ---- Body text ---- */
.intro-body {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.intro-body:last-of-type {
  margin-bottom: 32px;
}

/* ---- Stats row ---- */
.intro-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--clr-light-bg) 100%);
  box-shadow: var(--shadow-xs);
  position: relative;
}

/* Top accent stripe */
.intro-stats-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-red) 0%, var(--clr-gold) 50%, var(--clr-red) 100%);
  border-radius: 14px 14px 0 0;
  z-index: 1;
}

.intro-stat {
  flex: 1;
  min-width: 100px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}

.intro-stat strong {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--clr-red);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.intro-stat span {
  font-size: .72rem;
  color: #888;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.intro-stat-divider {
  width: 1px;
  height: 42px;
  background: #ddd;
  flex-shrink: 0;
}

/* ====================================================
   INTRO FORM CARD
   ==================================================== */
.intro-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0,0,0,.04), 0 16px 48px rgba(0,0,0,.10);
  overflow: hidden;
  transition: var(--transition);
}

.intro-form-card:hover {
  box-shadow: 0 2px 4px rgba(0,0,0,.04), 0 20px 56px rgba(0,0,0,.13), 0 0 0 1.5px rgba(196, 21, 48, .2);
}

/* Header bar */
.intro-form-header {
  background: linear-gradient(135deg, #252532 0%, #2e2e3e 50%, #1c1c28 100%);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.intro-form-header i {
  font-size: 1.6rem;
  color: var(--clr-gold-light);
  flex-shrink: 0;
}

.intro-form-header h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 2px;
}

.intro-form-header p {
  color: rgba(255, 255, 255, .55);
  font-size: .78rem;
  margin: 0;
}

/* Form fields inside the card */
.intro-form-card .php-email-form {
  padding: 24px 28px 28px;
}

.intro-form-card .php-email-form h2 {
  display: none;
  /* header bar replaces the h2 */
}

.intro-form-card .form-control {
  border: 1.5px solid #e5e5e5;
  border-radius: 8px;
  font-size: .9rem;
  color: var(--clr-mid);
  background: #fafafa;
  transition: border-color .25s, box-shadow .25s;
  padding: 12px 14px;
  height: auto;
}

.intro-form-card .form-control:focus {
  border-color: var(--clr-red);
  box-shadow: 0 0 0 3px rgba(206, 18, 18, .1);
  background: #fff;
  outline: none;
}

.intro-form-card .form-floating label {
  color: #999;
  font-size: .88rem;
}

.intro-form-card .form-floating>.form-control:focus~label,
.intro-form-card .form-floating>.form-control:not(:placeholder-shown)~label {
  color: var(--clr-red);
  font-size: .78rem;
}

.intro-form-card textarea.form-control {
  resize: none;
  min-height: 90px;
}

.intro-form-card button[type="submit"],
.intro-form-card .btn-outline-light {
  background: linear-gradient(135deg, var(--clr-red) 0%, var(--clr-red-dark) 100%) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 10px !important;
  padding: 13px 20px !important;
  letter-spacing: .4px;
  transition: var(--transition);
  box-shadow: 0 6px 20px var(--clr-red-glow) !important;
}

.intro-form-card button[type="submit"]:hover,
.intro-form-card .btn-outline-light:hover {
  box-shadow: 0 10px 28px var(--clr-red-glow) !important;
  transform: translateY(-2px);
}

/* Captcha label image */
.intro-form-card #captcha_code img {
  border-radius: 6px;
  border: 1.5px solid #ddd;
  margin-bottom: 6px;
}

@media (max-width: 767px) {
  .hp-intro-section {
    padding: 60px 0;
  }

  .intro-stats-row {
    gap: 0;
  }

  .intro-stat {
    padding: 14px 12px;
  }

  .intro-form-card .php-email-form {
    padding: 20px 20px 24px;
  }

  .intro-form-header {
    padding: 16px 20px;
  }
}

/* ---- Section Heading ---- */
.hp-section-heading {
  margin-bottom: 48px;
}

.hp-section-heading h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--clr-mid);
  margin-bottom: 14px;
}

.hp-section-heading p {
  color: #6c757d;
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
}

.hp-section-heading .red-bar {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--clr-red);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ====================================================
   WHY CHOOSE US
   ==================================================== */
.hp-why {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(circle, rgba(0,0,0,.04) 1px, transparent 1px),
    #f9f9f9;
  background-size: 24px 24px, 100%;
  overflow: hidden;
}

/* Left fade gradient wash */
.why-bg-panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 320px;
  background: linear-gradient(90deg, rgba(196, 21, 48, .06) 0%, transparent 100%);
  opacity: 1;
}

.why-inner {
  position: relative;
  z-index: 1;
}

/* ---- Left column ---- */
.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 16px;
}

.why-eyebrow span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--clr-red);
  border-radius: 2px;
}

.why-heading {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--clr-mid);
  line-height: 1.2;
  margin-bottom: 18px;
}

.why-heading span {
  color: var(--clr-red);
}

.why-subtext {
  font-size: .95rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 420px;
}

.why-image {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .15), 0 0 0 1px rgba(0, 0, 0, .06);
  display: block;
}

/* ---- Right column — list of reasons ---- */
.why-cards-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: why-counter;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ebebeb;
  border-left: 4px solid transparent;
  margin-bottom: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  counter-increment: why-counter;
}

.why-item::after {
  content: counter(why-counter, decimal-leading-zero);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Amatic SC', cursive;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, .04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -2px;
  user-select: none;
}

.why-item:hover {
  border-left-color: var(--clr-red);
  border-color: rgba(196, 21, 48, .18);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .10);
  transform: translateX(5px);
}

.why-item:last-child {
  margin-bottom: 0;
}

.why-item-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--clr-red-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--clr-red);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(196, 21, 48, .12);
}

.why-item:hover .why-item-icon {
  background: linear-gradient(135deg, var(--clr-red) 0%, var(--clr-red-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.why-item-body h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--clr-mid);
  margin-bottom: 5px;
}

.why-item-body p {
  font-size: .88rem;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 991px) {
  .hp-why {
    padding: 60px 0;
  }

  .why-image {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 767px) {
  .why-item {
    padding: 16px 18px;
    gap: 14px;
  }

  .why-item-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 1.1rem;
  }
}

/* ====================================================
   SERVICES — Section 4
   ==================================================== */
.hp-services {
  background:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px),
    #0d0d0d;
  background-size: 60px 60px, 60px 60px, 100%;
  padding: 0 0 80px;
}

/* Header band */
.svc-header {
  background: linear-gradient(90deg, #080810 0%, #111120 70%, rgba(196, 21, 48, .14) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 52px 0 40px;
  margin-bottom: 52px;
  position: relative;
  overflow: hidden;
}

.svc-header::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  background: linear-gradient(90deg, transparent, rgba(196, 21, 48, .08));
  pointer-events: none;
}

.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 12px;
}

.svc-eyebrow span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-red);
  border-radius: 2px;
}

.svc-heading {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.svc-subtext {
  font-size: .95rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

.svc-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-red);
  color: #fff;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(206, 18, 18, .35);
}

.svc-header-cta:hover {
  background: var(--clr-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(206, 18, 18, .5);
}

/* Cards */

.svc-card {
  background: linear-gradient(180deg, #1e1e1e 0%, #161616 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  border-color: rgba(196, 21, 48, .45);
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .50), 0 0 0 1px rgba(196, 21, 48, .2);
}

/* Image */
.svc-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.06);
}

.svc-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, .65) 100%);
}

/* Tag pill on image */
.svc-card-tag {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  background: linear-gradient(135deg, var(--clr-red) 0%, var(--clr-red-dark) 100%);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(196, 21, 48, .4);
}

/* Body */
.svc-card-body {
  padding: 22px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.svc-card-body h3 a {
  color: #fff;
  text-decoration: none;
  transition: color .25s;
}

.svc-card-body h3 a:hover {
  color: var(--clr-red);
}

.svc-card-body>p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65;
  margin-bottom: 14px;
}

.svc-card-body>p a {
  color: rgba(255, 255, 255, .7);
  text-decoration: underline;
  text-decoration-color: rgba(206, 18, 18, .4);
}

.svc-card-body>p a:hover {
  color: var(--clr-red);
}

/* List */
.svc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  flex: 1;
}

.svc-list li {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  padding: 5px 0 5px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  position: relative;
  line-height: 1.5;
}

.svc-list li:last-child {
  border-bottom: none;
}

.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-red), var(--clr-gold));
  border-radius: 2px;
}

/* Learn more link */
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-red);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: gap .25s, color .25s;
}

.svc-link:hover {
  color: #ff6b6b;
  gap: 12px;
  text-decoration: underline;
  text-decoration-color: var(--clr-red);
  text-underline-offset: 3px;
}

@media (max-width: 767px) {
  .hp-services {
    padding-bottom: 60px;
  }

  .svc-header {
    padding: 40px 0 32px;
    margin-bottom: 36px;
  }

  .svc-card-img {
    height: 180px;
  }
}

/* ====================================================
   CERTIFICATIONS — Section 5
   ==================================================== */
.hp-certs {
  background: var(--clr-light-bg);
  padding: 0;
}

.certs-dark-panel {
  background: linear-gradient(138deg, #080810 0%, #0f0f20 45%, #141428 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.certs-dark-panel::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border: 60px solid rgba(196, 21, 48, .06);
  border-radius: 50%;
  pointer-events: none;
}

.certs-dark-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 21, 48, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 21, 48, .03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

/* Left */
.certs-left {
  position: relative;
  z-index: 1;
}

.certs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 16px;
}

.certs-eyebrow span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-red);
  border-radius: 2px;
}

.certs-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.certs-heading span {
  color: var(--clr-red);
}

.certs-subtext {
  font-size: .95rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 380px;
}

.certs-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-red);
  color: #fff;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(206, 18, 18, .35);
}

.certs-cta:hover {
  background: var(--clr-red-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* Cert cards grid */
.cert-card {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
  padding: 22px 20px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.25), 0 1px 0 rgba(255,255,255,.06) inset;
  z-index: 1;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-red) 0%, var(--clr-gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  border-radius: 16px 16px 0 0;
}

.cert-card:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(196, 21, 48, .35);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.35), 0 1px 0 rgba(255,255,255,.10) inset;
}

.cert-card:hover::before {
  transform: scaleX(1);
}

.cert-card-icon {
  width: 46px;
  height: 46px;
  background: rgba(212, 160, 23, .15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-gold);
  margin-bottom: 14px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(212, 160, 23, .15);
}

.cert-card:hover .cert-card-icon {
  background: linear-gradient(135deg, var(--clr-gold) 0%, #b88200 100%);
  color: #fff;
  box-shadow: var(--shadow-gold);
}

.cert-card h3 {
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cert-card p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .certs-dark-panel {
    padding: 60px 0;
  }

  .certs-subtext {
    max-width: 100%;
  }
}

/* ---- CTA Banner ---- */
/* ====================================================
   CTA BANNER
   ==================================================== */
.hp-cta-banner {
  position: relative;
  background: linear-gradient(125deg, #060608 0%, #1a0306 20%, var(--clr-red-dark) 55%, var(--clr-red) 80%, #8b0010 100%);
  padding: 90px 0;
  overflow: hidden;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,.012) 10px, rgba(255,255,255,.012) 11px),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  text-align: center;
  color: #fff;
}

.cta-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50px;
  padding: 7px 20px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cta-banner-badge i {
  color: var(--clr-gold-light);
}

.cta-banner-inner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.cta-banner-inner p {
  font-size: 1.05rem;
  opacity: .88;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-cta-primary {
  background: #fff;
  color: var(--clr-red-dark);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,0,0,.25), 0 1px 0 rgba(255,255,255,.9) inset;
}

.btn-cta-primary:hover {
  background: #fff9f0;
  color: var(--clr-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,.30);
}

.btn-cta-ghost {
  background: transparent;
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-cta-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .10);
  color: #fff;
}

/* ====================================================
   REVIEWS
   ==================================================== */
.hp-reviews {
  background: var(--clr-light-bg);
  padding-top: 0px;
}

.reviews-dark-band {
  background: linear-gradient(138deg, #080810 0%, #0f0f20 55%, #141428 100%);
  padding: 52px 0 80px;
}

.reviews-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-red);
  margin-bottom: 10px;
}

.reviews-eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--clr-red);
  border-radius: 2px;
}

.reviews-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.reviews-rating-badge {
  text-align: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 16px 28px;
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.reviews-stars {
  color: var(--clr-gold-light);
  font-size: 1rem;
  margin-bottom: 6px;
}

.reviews-cards-wrap {
  margin-top: -44px;
  padding-bottom: 72px;
}

.hp-review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .07), 0 1px 0 rgba(255,255,255,.9) inset;
  height: 100%;
  border-top: 3px solid transparent;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.hp-review-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  right: 18px;
  font-size: 7rem;
  line-height: 1;
  color: rgba(196, 21, 48, .07);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  pointer-events: none;
  z-index: 0;
}

.hp-review-card:hover {
  border-top-color: var(--clr-red);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .12), 0 0 0 1px rgba(196, 21, 48, .15);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9b1a28 0%, #c41530 40%, #6b0012 100%);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(196, 21, 48, .25);
}

.reviewer-name {
  font-weight: 700;
  color: var(--clr-mid);
  font-size: .95rem;
  margin: 0 0 4px;
}

.reviewer-name a {
  color: inherit;
  text-decoration: none;
}

.reviewer-name a:hover {
  color: var(--clr-red);
}

.hp-review-card .stars {
  color: var(--clr-gold-light);
  font-size: .82rem;
}

.review-platform-icon {
  font-size: 1.3rem;
  color: #4285f4;
  margin-left: auto;
  flex-shrink: 0;
}

.hp-review-card>p {
  font-size: .93rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

/* ====================================================
   AREAS WE SERVE
   ==================================================== */
.hp-areas {
  background: #fff;
  overflow: hidden;
}

/* Top band — dark with stats */
.areas-top-band {
  background: linear-gradient(138deg, #080810 0%, #0f0f20 55%, #161630 100%);
  padding: 64px 0 52px;
}

.areas-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.areas-top-left {
  max-width: 520px;
}

.areas-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-red);
  margin-bottom: 12px;
}

.areas-eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--clr-red);
  border-radius: 2px;
}

.areas-heading {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.areas-subtext {
  color: rgba(255, 255, 255, .6);
  font-size: .95rem;
  line-height: 1.65;
  margin: 0;
}

/* Stats strip */
.areas-top-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.areas-stat {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}

.areas-stat strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--clr-gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.areas-stat span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.areas-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .1);
  flex-shrink: 0;
}

/* Grid wrap */
.areas-grid-wrap {
  padding: 52px 0 44px;
}

.hp-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.hp-areas-grid a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--clr-mid);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.hp-areas-grid a i {
  font-size: .78rem;
  color: var(--clr-red);
  opacity: .65;
  transition: var(--transition);
  flex-shrink: 0;
}

.hp-areas-grid a:hover {
  background: var(--clr-red);
  color: #fff;
  border-color: var(--clr-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px var(--clr-red-glow);
}

.hp-areas-grid a:hover i {
  color: #fff;
  opacity: 1;
}

/* Primary city highlight */
.hp-areas-grid a.areas-primary-city {
  background: linear-gradient(135deg, var(--clr-red) 0%, var(--clr-red-dark) 100%);
  color: #fff;
  border-color: var(--clr-red);
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 4px 16px var(--clr-red-glow), 0 1px 0 rgba(255,255,255,.12) inset;
}

.hp-areas-grid a.areas-primary-city i {
  color: #fff;
  opacity: 1;
}

.hp-areas-grid a.areas-primary-city:hover {
  background: linear-gradient(135deg, #8b0000 0%, var(--clr-red) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(206, 18, 18, .4);
}

/* Bottom CTA row */
.areas-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 28px;
  background: linear-gradient(180deg, #fff 0%, var(--clr-light-bg) 100%);
  border-radius: 16px;
  border: 1px solid #e4e4e4;
  box-shadow: var(--shadow-xs);
}

.areas-cta-row p {
  margin: 0;
  font-size: .93rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.areas-cta-row p i {
  color: var(--clr-red);
  font-size: 1rem;
}

.areas-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-red);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(206, 18, 18, .3);
  flex-shrink: 0;
}

.areas-cta-btn:hover {
  background: var(--clr-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(206, 18, 18, .4);
}

@media (max-width: 767px) {
  .areas-top-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .areas-top-stats {
    width: 100%;
  }

  .areas-stat {
    padding: 16px 18px;
  }

  .areas-cta-row {
    flex-direction: column;
    text-align: center;
  }
}

/* ====================================================
   TOP-RATED TRUST STRIP
   ==================================================== */
.hp-top-rated {
  background: linear-gradient(135deg, #0a0a12 0%, #222230 50%, #111118 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hp-top-rated::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.top-rated-header {
  margin-bottom: 40px;
}

.top-rated-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-red);
  margin-bottom: 10px;
}

.top-rated-eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--clr-red);
  border-radius: 2px;
}

.hp-top-rated h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.trust-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.trust-logo-item {
  background: rgba(255, 255, 255, .97);
  border-radius: 14px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.28), 0 1px 0 rgba(255,255,255,1) inset;
  transition: var(--transition);
  min-width: 160px;
  max-width: 220px;
  border: 1px solid rgba(255, 255, 255, .12);
}

.trust-logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,.35), 0 0 0 1.5px rgba(196, 21, 48, .2), 0 1px 0 rgba(255,255,255,1) inset;
  background: #fff;
}

.trust-logo-item img {
  max-height: 70px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/* ====================================================
   FAQ
   ==================================================== */
.hp-faq {
  background: linear-gradient(180deg, #f5f5f5 0%, #f0f0f0 100%);
  padding: 80px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Amatic SC decorative caption above eyebrow */
.faq-header::before {
  content: 'Common Questions';
  display: block;
  font-family: 'Amatic SC', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-red);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: .6;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-red);
  margin-bottom: 10px;
}

.faq-eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--clr-red);
  border-radius: 2px;
}

.faq-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--clr-mid);
  margin-bottom: 8px;
}

.faq-subtext {
  color: #777;
  font-size: .95rem;
}

.hp-faq .accordion-item {
  border: 1px solid rgba(0,0,0,.06) !important;
  border-radius: 14px !important;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.9) inset;
  transition: var(--transition);
}

.hp-faq .accordion-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.08), 0 1px 0 rgba(255,255,255,.9) inset;
}

.hp-faq .accordion-button {
  font-weight: 700;
  color: var(--clr-mid);
  font-size: .97rem;
  letter-spacing: -0.01em;
  background: #fff;
  padding: 22px 26px;
  border-radius: 14px !important;
}

.hp-faq .accordion-button:not(.collapsed) {
  color: var(--clr-red);
  background: #fff;
  box-shadow: none;
  border-bottom: 1px solid rgba(196, 21, 48, .12);
}

.hp-faq .accordion-button:not(.collapsed)::after {
  filter: invert(13%) sepia(95%) saturate(4000%) hue-rotate(335deg) brightness(75%);
}

.hp-faq .accordion-body {
  font-size: .94rem;
  color: #4a4a4a;
  line-height: 1.85;
  background: #fafafa;
  padding: 22px 26px;
  border-radius: 0 0 14px 14px;
}

/* ====================================================
   MAP + CONTACT
   ==================================================== */
.hp-contact {
  background: var(--clr-mid);
  padding: 80px 0;
}

.map-section-header {
  text-align: center;
  margin-bottom: 44px;
}

.map-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-red);
  margin-bottom: 10px;
}

.map-eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--clr-red);
  border-radius: 2px;
}

.map-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
}


.schedule-form-card iframe {
  border-radius: 14px;
  width: 100%;
  height: 420px;
  border: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
  display: block;
}

.hp-contact-info {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 36px 28px;
  color: #fff;
  height: 100%;
}

.hp-contact-info h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.hp-contact-info .info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  transition: var(--transition);
}

.hp-contact-info .info-row:hover {
  background: rgba(255, 255, 255, .08);
}

.hp-contact-info .info-row i {
  color: var(--clr-red);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.hp-contact-info .info-row p {
  margin: 0;
  font-size: .92rem;
  opacity: .9;
  line-height: 1.55;
}

.hp-contact-info .info-row a {
  color: #fff;
  text-decoration: none;
}

.hp-contact-info .info-row a:hover {
  color: #ffd0d0;
}

.hp-contact-info h4 {
  color: rgba(255, 255, 255, .55);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
  font-weight: 600;
}

.hp-weather-wrap {
  margin-top: 24px;
}

/* ====================================================
   SCHEDULE APPOINTMENT SECTION
   ==================================================== */
.hp-schedule-section {
  position: relative;
  background: linear-gradient(150deg, #070710 0%, #0e0e20 40%, #141428 75%, #0a0a10 100%);
  padding: 90px 0;
  overflow: hidden;
}

.schedule-bg-decor {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 21, 48, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 21, 48, .03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.schedule-bg-decor::after {
  content: '';
  position: absolute;
  bottom: -160px;
  right: -160px;
  width: 500px;
  height: 500px;
  border: 80px solid rgba(196, 21, 48, .05);
  border-radius: 50%;
}

.schedule-inner {
  position: relative;
}

/* ---- Left info panel ---- */
.schedule-info-panel {
  color: #fff;
}

.schedule-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-red);
  margin-bottom: 16px;
}

.schedule-eyebrow span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--clr-red);
  border-radius: 2px;
}

.schedule-heading {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.schedule-subtext {
  font-size: .97rem;
  color: rgba(255, 255, 255, .62);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Contact items */
.schedule-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.schedule-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  transition: var(--transition);
  overflow-wrap: anywhere;
}

.schedule-contact-item:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(196, 21, 48, .3);
  transform: translateX(4px);
}

.schedule-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--clr-red) 0%, var(--clr-red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 12px var(--clr-red-glow);
}

.schedule-contact-icon i {
  color: #fff;
  font-size: 1rem;
}

.schedule-contact-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 3px;
}

.schedule-contact-value {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.schedule-contact-value:hover {
  color: #ffd0d0;
}

/* Trust badges */
.schedule-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.schedule-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: var(--transition);
}

.schedule-trust-badge:hover {
  background: rgba(255, 255, 255, .12);
}

.schedule-trust-badge i {
  color: var(--clr-red);
  font-size: .85rem;
}

.schedule-trust-badge:nth-child(2) i {
  color: var(--clr-gold-light);
}

/* ---- Right form card ---- */
.schedule-form-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.15), 0 24px 72px rgba(0,0,0,.40);
  border: 1px solid rgba(255, 255, 255, .08);
}

.schedule-form-header {
  background: linear-gradient(135deg, var(--clr-red) 0%, var(--clr-red-dark) 100%);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 20px var(--clr-red-glow);
}

.schedule-form-header i {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, .9);
  flex-shrink: 0;
}

.schedule-form-header h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 2px;
}

.schedule-form-header p {
  color: rgba(255, 255, 255, .7);
  font-size: .8rem;
  margin: 0;
}

/* Form fields in schedule card */
.schedule-form-card .php-email-form {
  padding: 28px 32px 32px;
}

.schedule-form-card .php-email-form h2 {
  display: none;
}

.schedule-form-card .form-control {
  border: 1.5px solid #e5e5e5;
  border-radius: 8px;
  font-size: .9rem;
  color: var(--clr-mid);
  background: #fafafa;
  transition: border-color .25s, box-shadow .25s;
  padding: 12px 14px;
  height: auto;
}

.schedule-form-card .form-control:focus {
  border-color: var(--clr-red);
  box-shadow: 0 0 0 3px rgba(206, 18, 18, .1);
  background: #fff;
  outline: none;
}

.schedule-form-card .form-floating label {
  color: #999;
  font-size: .88rem;
}

.schedule-form-card .form-floating>.form-control:focus~label,
.schedule-form-card .form-floating>.form-control:not(:placeholder-shown)~label {
  color: var(--clr-red);
  font-size: .78rem;
}

.schedule-form-card textarea.form-control {
  resize: none;
  min-height: 90px;
}

.schedule-form-card button[type="submit"],
.schedule-form-card .btn-outline-light {
  background: linear-gradient(135deg, var(--clr-red) 0%, var(--clr-red-dark) 100%) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 700;
  font-size: .97rem;
  border-radius: 10px !important;
  padding: 14px 20px !important;
  letter-spacing: .4px;
  transition: var(--transition);
  box-shadow: 0 6px 20px var(--clr-red-glow) !important;
}

.schedule-form-card button[type="submit"]:hover,
.schedule-form-card .btn-outline-light:hover {
  box-shadow: 0 10px 30px var(--clr-red-glow) !important;
  transform: translateY(-2px);
}

.schedule-form-card #captcha_code img {
  border-radius: 6px;
  border: 1.5px solid #ddd;
  margin-bottom: 6px;
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 991px) {
  .hp-hero {
    min-height: auto;
    padding: 50px 0 40px;
    margin-top: 110px;
  }

  .hp-hero h1 {
    font-size: 1.5rem;
  }

  .reviews-top-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .hp-hero {
    padding: 40px 0 32px;
    margin-top: 100px;
  }

  .section-pad {
    padding: 60px 0;
  }

  .hp-section-heading {
    margin-bottom: 32px;
  }

  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }

  .reviews-cards-wrap {
    margin-top: -24px;
  }

  .schedule-form-card .php-email-form {
    padding: 22px 20px 24px;
  }

  .schedule-form-header {
    padding: 18px 20px;
  }
}

@media (max-width: 575px) {
  .hp-hero {
    margin-top: 90px;
  }

  .hp-hero h1 {
    font-size: 1.3rem;
  }

  .trust-logos-row {
    gap: 16px;
  }

  .trust-logo-item {
    min-width: 130px;
    padding: 12px 16px;
  }

  .trust-logo-item img {
    max-height: 54px;
  }

  .schedule-trust-row {
    gap: 8px;
  }

  .schedule-trust-badge {
    font-size: .72rem;
    padding: 6px 10px;
  }
}



/* =====================================================
   MOBILE: Centre all section headings & eyebrows
   (add at the very bottom of homepage.css)
   ===================================================== */
@media (max-width: 767px) {

  /* ── HERO ── */
  .hp-hero .col-lg-6:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hp-hero h1,
  .hp-hero .hero-lead {
    text-align: center;
  }

  .hero-cta-row {
    align-items: center;
  }

  /* ── INTRO ── */
  .hp-intro-section .col-lg-7 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .intro-eyebrow,
  .intro-heading,
  .intro-body {
    text-align: center;
  }

  /* ── WHY CHOOSE US ── */
  .why-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .why-eyebrow,
  .why-heading,
  .why-subtext {
    text-align: center;
  }

  /* ── SERVICES ── */
  .svc-header .col-lg-7 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .svc-eyebrow,
  .svc-heading,
  .svc-subtext {
    text-align: center;
  }

  /* ── CERTIFICATIONS ── */
  .certs-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .certs-eyebrow,
  .certs-heading,
  .certs-subtext {
    text-align: center;
  }

  /* ── REVIEWS ── */
  .reviews-eyebrow,
  .reviews-heading {
    text-align: center;
  }

  /* ── AREAS WE SERVE ── */
  .areas-top-inner {
    align-items: center !important;
  }

  .areas-top-left {
    text-align: center;
  }

  .areas-eyebrow,
  .areas-heading,
  .areas-subtext {
    text-align: center;
  }

  /* ── SCHEDULE APPOINTMENT ── */
  .schedule-info-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .schedule-eyebrow,
  .schedule-heading,
  .schedule-subtext {
    text-align: center;
  }

  /* ── FAQ ── */
  /* faq-header already has text-align:center globally — no change needed */

  /* ── MAP / CONTACT ── */
  /* map-section-header already has text-align:center globally — no change needed */

  /* ── TOP-RATED STRIP ── */
  /* hp-top-rated already has text-align:center globally — no change needed */

  /* ── CTA BANNER ── */
  /* cta-banner-inner already has text-align:center globally — no change needed */

  /* ── Universal eyebrow pill centring ── */
  .hero-eyebrow,
  .intro-eyebrow,
  .why-eyebrow,
  .svc-eyebrow,
  .certs-eyebrow,
  .reviews-eyebrow,
  .areas-eyebrow,
  .schedule-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {

  /* ── Services: CTA button centre ── */
  .svc-header .col-lg-4 {
    text-align: center !important;
    display: flex;
    justify-content: center;
  }

  /* ── Reviews: heading & description centre ── */
  .reviews-top-row {
    align-items: center;
    text-align: center;
  }

  .reviews-eyebrow {
    justify-content: center;
  }

  .reviews-heading {
    text-align: center;
  }
}