.elementor-155 .elementor-element.elementor-element-4559172{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:80px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-155 .elementor-element.elementor-element-0f7e46c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-155 .elementor-element.elementor-element-d127353{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-a4752a2 *//* ============================================================
   LOCALSERVICEBIZ — CONTACT PAGE HERO
   Cleaned + aligned to main site hero style
   ============================================================ */

/* Optional: skip if already defined globally */
:root {
  --navy:      #0D1B2A;
  --navy-mid:  #1B2F45;
  --teal:      #00C9A7;
  --teal-dark: #00A88C;
  --gold:      #F4C542;
  --white:     #FFFFFF;
  --off-white: #F5F7FA;
  --muted:     #8A9BB0;
  --text:      #1A2535;
  --border:    #E4EAF2;
}

/* ============================================================
   CONTACT PAGE WRAPPER
   ============================================================ */

.lsb-contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

/* Optional bottom separator */
.lsb-contact::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255,255,255,0.08) 20%,
    rgba(255,255,255,0.08) 80%,
    transparent 100%
  );
}

/* ============================================================
   HERO
   ============================================================ */

.lsb-contact .hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 140px 40px 80px;
  overflow: hidden;
  background: transparent;
}

.lsb-contact .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.lsb-contact .hero-content {
  max-width: 760px;
  text-align: left;
}

/* ============================================================
   BACKGROUND EFFECTS
   ============================================================ */

.lsb-contact .hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}

.lsb-contact .hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 78% 18%,
    rgba(0,201,167,0.18) 0%,
    transparent 42%
  );
}

.lsb-contact .hero-glow-2 {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 18% 78%,
    rgba(244,197,66,0.08) 0%,
    transparent 34%
  );
}

/* ============================================================
   BADGE
   ============================================================ */

.lsb-contact .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  animation: lsbFadeUp 0.6s ease both;
}

.lsb-contact .badge span:last-child {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lsb-contact .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  animation: lsbPulse 2s infinite;
}

/* ============================================================
   TEXT
   ============================================================ */

.lsb-contact .hero h1 {
  margin: 0 0 18px;
  max-width: 820px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  animation: lsbFadeUp 0.6s 0.1s ease both;
}

.lsb-contact .hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.lsb-contact .hero h2 {
  margin: 0 0 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
  animation: lsbFadeUp 0.6s 0.15s ease both;
}

.lsb-contact .hero p {
  margin: 0;
  max-width: 640px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.06rem;
  line-height: 1.75;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  animation: lsbFadeUp 0.6s 0.2s ease both;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes lsbFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lsbPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
  .lsb-contact .hero {
    min-height: auto;
    padding: 120px 28px 80px;
  }

  .lsb-contact .hero-content,
  .lsb-contact .hero h1,
  .lsb-contact .hero p {
    max-width: 100%;
  }

  .lsb-contact .hero-glow {
    background: radial-gradient(
      circle at 82% 14%,
      rgba(0,201,167,0.16) 0%,
      transparent 44%
    );
  }

  .lsb-contact .hero-glow-2 {
    background: radial-gradient(
      circle at 14% 82%,
      rgba(244,197,66,0.07) 0%,
      transparent 32%
    );
  }
}

@media (max-width: 767px) {
  .lsb-contact .hero {
    padding: 100px 20px 70px;
  }

  .lsb-contact .badge {
    margin-bottom: 20px;
  }

  .lsb-contact .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .lsb-contact .hero p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .lsb-contact .hero-grid {
    background-size: 44px 44px;
    opacity: 0.32;
  }
}/* End custom CSS */