/* ═══════════════════════════════════════
   HERO SECTION — Premium
═══════════════════════════════════════ */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 82px; /* navbar height offset */
  background-color: #050505; /* fallback if image fails */
}

/* Background image layer */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/landingpage.jpg');
  background-size: cover;
  background-position: center top;
  filter: blur(3px) brightness(0.55);
  transform: scale(1.05); /* avoid blur edges */
  z-index: 0;
  will-change: transform;
}

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0.92) 100%
  );
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem 1rem;
  max-width: 860px;
  margin: 0 auto;
}

/* Label / tag above heading */
.hero-label {
  display: inline-block;
  background: rgba(32, 194, 14, 0.15);
  border: 1px solid rgba(32, 194, 14, 0.4);
  color: #20C20E;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
  color: #20C20E;
}

.hero-content p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  margin: 0 auto 2rem;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-what {
  background: #20C20E;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(32, 194, 14, 0.35);
}

.btn-what:hover,
.btn-what:focus {
  background: #18a30c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(32, 194, 14, 0.5);
  outline: none;
}

.btn-text {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn-text:hover,
.btn-text:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  transform: translateY(-2px);
  outline: none;
}

.btn-what img,
.btn-text img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Trust badges row */
.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 500;
}

.trust-badge svg {
  color: #20C20E;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 576px) {
  .hero-section {
    padding-top: 70px;
  }

  /* Smaller pill label */
  .hero-label {
    font-size: 0.62rem;
    letter-spacing: 0.07em;
    padding: 0.28rem 0.75rem;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-what,
  .btn-text {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-trust {
    gap: 0.6rem;
  }

  .trust-badge {
    font-size: 0.7rem;
  }

  .hero-services-row span {
    font-size: 0.73rem;
    padding: 0.28rem 0.75rem;
  }
}
