
.wolf-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: start;
  text-align: center;
  padding: 160px 20px 110px;
  overflow: hidden;
}

/* Background image layer */
.wolf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("{{ asset('img/hero-scetion.webp') }}");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  z-index: 0;
}
.hero-trust{
  justify-content: center;
  align-items: center;
  gap:40px;
  display:flex;
}
/* Dark overlay like your first site */
.wolf-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1;
}

/* Content layer */
.wolf-hero__inner {
  text-align: start;
  position: relative;
  z-index: 2;
  /* max-width: 900px; */
}

/* Heading */
.wolf-hero h1 {
  margin: 0 0 14px;
  text-align:center;
  font-size: clamp(30px, 3.5vw, 54px);
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

.wolf-hero h1 em {
  font-style: italic;
  font-weight: 800;
}

/* Sub text */
.wolf-hero__sub {
  margin: 0 ;
  /* max-width: 720px; */
  font-size: 16px;
  color: rgba(255,255,255,.92);
}

/* Kicker */
.service-kicker {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.hero-first-block{
  border-bottom:none !important;
  border-top:none !important;
}
/* Buttons */
.wolf-hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust .stars {
        color: #ffc107;
        margin: 4px 0;
    } 
    .rating strong{
      color:white;
    }
.rating{
  color:white;
}
.badges{
  color:white;
  white-space: nowrap;
}
.wolf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: .2s ease;
}

.wolf-btn--red {
  background: var(--accent);
  color: #1a1a1a;
}

.wolf-btn--red:hover {
  transform: translateY(-2px);
}

/* Logo */
.wolf-hero__logo {
  margin: 36px 0;
  justify-content: center;
}

.wolf-hero__logo img {
  width: 170px;
  max-width: 60vw;
  transform: rotate(-6deg);
}
  .wolf-hero::after {
    background: linear-gradient(90deg, rgba(15, 66, 74, 0.98) 0%, rgba(15, 66, 74, 0.95) 40%, rgba(15, 66, 74, 0.75) 46%, rgba(15, 66, 74, 0.35) 80%, rgba(15, 66, 74, 0.05) 90%);
}

/* =========================
   MOBILE FIX (like first site)
   ========================= */

/* =====================================
   MOBILE HERO UPDATE (Like Screenshot)
   ===================================== */
@media (max-width: 768px){

  .wolf-hero{
    text-align:left;             /* LEFT align like screenshot */
    align-items:flex-start;
    padding:110px 20px 70px;
    min-height:520px;
  }

  /* Strong green overlay fade */
  .wolf-hero::after{
    background: linear-gradient(
      90deg,
      rgba(16,66,75,0.98) 0%,
      rgba(16,66,75,0.92) 35%,
      rgba(16,66,75,0.65) 55%,
      rgba(16,66,75,0.25) 75%,
      rgba(16,66,75,0) 100%
    );
  }

  .wolf-hero::before{
    background-position:right center;
  }

  .wolf-hero__inner{
    max-width:420px;
    margin-top:20px;
  }

  .wolf-hero h1{
    font-size:28px;
    line-height:1.15;
    margin-bottom:10px;
  }

  .wolf-hero h1 em{
    display:block;
    font-style:normal;
    font-weight:700;
    color:var(--accent);        /* Orange highlight line */
    margin-top:6px;
  }

  .wolf-hero__sub{
    font-size:14px;
    margin-bottom:22px;
    color:rgba(255,255,255,.88);
  }

  .wolf-hero__actions{
    justify-content:flex-start;  /* buttons left aligned */
    gap:10px;
  }

  .wolf-btn{
    /* width: 100%; */
    padding:14px;
    font-size:13px;
    border-radius:6px;
  }

  .wolf-hero__logo{
    margin:22px 0;
    justify-content:start;  /* logo left aligned */
  }

  .wolf-hero__logo img{
    width:120px;
    transform:none;
  }

}
