/* ============================================================
   Gelai — Service Page Hero (centered · light theme)
   Layout inspired by Tech Vardha · Gelai colors
   ============================================================ */

.svc-hero-page {
  background: var(--white);
}

.svc-hero {
  position: relative;
  min-height: clamp(500px, 70vh, 680px);
  display: flex;
  flex-direction: column;
  padding-top: var(--site-header-offset, 168px);
  padding-bottom: 64px;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 90% 80% at 50% -10%,
      rgba(86, 154, 205, 0.35) 0%,
      rgba(255, 255, 255, 0) 55%
    ),
    radial-gradient(
      ellipse 70% 60% at 85% 20%,
      rgba(12, 110, 183, 0.18) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 15% 30%,
      rgba(86, 154, 205, 0.12) 0%,
      rgba(255, 255, 255, 0) 55%
    ),
    #ffffff;
  color: var(--navy);
}

.svc-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.svc-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.svc-hero__glow--left {
  width: min(400px, 45vw);
  height: min(400px, 45vw);
  left: 5%;
  top: 20%;
  background: radial-gradient(circle, rgba(86, 154, 205, 0.25) 0%, transparent 70%);
}

.svc-hero__glow--right {
  width: min(380px, 42vw);
  height: min(380px, 42vw);
  right: 8%;
  top: 10%;
  background: radial-gradient(circle, rgba(12, 110, 183, 0.2) 0%, transparent 70%);
}

.svc-hero__glow--center {
  width: min(500px, 55vw);
  height: min(200px, 22vw);
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(12, 110, 183, 0.1) 0%, transparent 72%);
}

.svc-hero__header {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  padding-top: 0;
}

.svc-hero__header .hero__logo img {
  width: 150px;
  height: auto;
}

.svc-hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 28px;
}

.svc-hero__content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 16px;
}

.svc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  margin-bottom: 28px;
  border-radius: 999px;
  border: 1px solid rgba(12, 110, 183, 0.35);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(12, 110, 183, 0.1);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.02em;
}

.svc-hero__badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.svc-hero__badge-icon svg {
  width: 18px;
  height: 18px;
}

.svc-hero__title {
  font-family: var(--font);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  text-shadow: var(--title-shadow, none);
}

.svc-hero__gradient {
  display: block;
  margin-top: 6px;
  font-size: clamp(40px, 6.2vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  background: linear-gradient(135deg, #0c6eb7 0%, #569acd 50%, #0c6eb7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.svc-hero__desc {
  font-family: var(--font);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(35, 43, 64, 0.78);
  max-width: 660px;
  margin: 0 auto 36px;
}

.svc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 16px;
}

.svc-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--btn-height, 46px);
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.25s var(--ease-out, ease),
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.svc-hero__btn:hover {
  transform: translateY(-2px);
}

.svc-hero__btn--fill {
  background: var(--btn-bg);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(12, 110, 183, 0.3);
}

.svc-hero__btn--fill:hover {
  box-shadow: 0 12px 32px rgba(12, 110, 183, 0.38);
}

.svc-hero__btn--outline,
.svc-cta__btn--ghost {
  display: none !important;
}

@media (max-width: 768px) {
  .svc-hero {
    min-height: auto;
    padding-bottom: 52px;
  }

  .svc-hero__inner {
    padding-top: 12px;
  }

  .svc-hero__badge {
    margin-bottom: 20px;
    padding: 8px 16px;
    font-size: 14px;
  }

  .svc-hero__title {
    margin-bottom: 18px;
  }

  .svc-hero__desc {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .svc-hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .svc-hero__btn {
    width: 100%;
  }
}
