/* Single service · Hero — template-parts/gf-service-hero.php */

.gf-service-hero {
  position: relative;
  padding: 5.85rem 0 0;
  background: #07070b;
  color: #fff;
  overflow: hidden;
}

.gf-service-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 8% 0%, rgba(255, 204, 0, 0.14), transparent 36%),
    linear-gradient(165deg, #07070b 0%, #101118 100%);
  background-size: cover;
  background-position: center;
}

.gf-service-hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 78% 12%, #000 0%, transparent 68%);
  pointer-events: none;
}

.gf-service-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 11, 0.88) 0%, rgba(7, 7, 11, 0.62) 52%, rgba(7, 7, 11, 0.78) 100%),
    linear-gradient(180deg, rgba(7, 7, 11, 0.2) 0%, rgba(7, 7, 11, 0.88) 100%);
  pointer-events: none;
}

.gf-service-hero__inner {
  position: relative;
  z-index: 2;
}

.gf-service-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.35rem;
  padding: 0 0 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gf-service-crumbs {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start !important;
  width: auto !important;
  max-width: 100%;
  gap: 0.45rem !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.gf-service-crumbs a {
  color: rgba(255, 255, 255, 0.72) !important;
  text-decoration: none !important;
}

.gf-service-crumbs a:hover {
  color: #ffcc00 !important;
}

.gf-service-crumbs__sep {
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: rgba(255, 204, 0, 0.5);
  flex: 0 0 auto;
}

.gf-service-crumbs__current {
  color: rgba(255, 255, 255, 0.92);
}

.gf-service-hero__locale {
  margin: 0;
  flex: 0 0 auto;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffcc00;
}

.gf-service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18.5rem, 21.5rem);
  gap: clamp(1.5rem, 3.5vw, 3.25rem);
  align-items: start;
  padding-bottom: 1.75rem;
}

.gf-service-hero__copy {
  position: relative;
  padding-left: 1.2rem;
}

.gf-service-hero__copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 2px;
  background: linear-gradient(180deg, #ffcc00 0%, rgba(255, 204, 0, 0.12) 100%);
}

.gf-service-hero__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffcc00;
}

.gf-service-hero__title,
.gf-service-hero h1 {
  margin: 0 0 0.7rem !important;
  max-width: 16ch;
  font-family: var(--font-display), sans-serif !important;
  font-size: clamp(2.05rem, 1.25rem + 2.2vw, 3.2rem) !important;
  font-weight: 650 !important;
  letter-spacing: -0.04em;
  line-height: 1.04 !important;
  color: #ffffff !important;
}

.gf-service-hero__sub {
  margin: 0 0 0.7rem;
  max-width: 34rem;
  font-size: 1.05rem;
  font-weight: 550;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.gf-service-hero__lede,
.gf-service-hero__lede p {
  margin: 0 0 1.15rem !important;
  max-width: 38rem;
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.gf-service-hero__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  counter-reset: gf-pt;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gf-service-hero__points li {
  position: relative;
  padding: 0.7rem 0.85rem 0.7rem 2.15rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  line-height: 1.35;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  counter-increment: gf-pt;
}

.gf-service-hero__points li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.gf-service-hero__points li::before {
  content: counter(gf-pt, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: auto;
  height: auto;
  background: none;
  color: #ffcc00;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.gf-service-hero__form,
.gf-page-hire .gf-service-hero .custom__quotation-form {
  position: relative;
  height: auto !important;
  max-height: none !important;
  align-self: start;
  background: rgba(12, 12, 16, 0.92) !important;
  color: #ffffff;
  padding: 1.05rem 1.1rem 1.1rem !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.gf-service-hero__form::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: #ffcc00;
}

.gf-service-hero__form-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.2rem;
}

.gf-service-hero__form-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid rgba(255, 204, 0, 0.4);
  color: #ffcc00;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  flex: 0 0 auto;
}

.gf-service-hero__form-kicker {
  margin: 0 0 0.15rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffcc00;
}

.gf-service-hero__form-title,
.gf-service-hero__form .quote--heading h2 {
  margin: 0 !important;
  font-family: var(--font-display), sans-serif !important;
  font-size: 1.08rem !important;
  font-weight: 650 !important;
  letter-spacing: -0.03em;
  color: #ffffff !important;
}

.gf-service-hero__form-lede,
.gf-service-hero__form .quote--heading p {
  margin: 0 0 0.7rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.76rem;
  line-height: 1.4;
}

.gf-service-hero .quote--heading {
  display: none;
}

.gf-page-hire .gf-service-hero .wpcf7 form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 0.55rem 0.6rem;
}

.gf-page-hire .gf-service-hero .custom__quotation-form form.wpcf7-form p {
  margin: 0 !important;
  min-width: 0;
}

.gf-page-hire .gf-service-hero .wpcf7 form > p:has(input[type="tel"]),
.gf-page-hire .gf-service-hero .wpcf7 form > p:has(textarea),
.gf-page-hire .gf-service-hero .wpcf7 form > p:has(input[type="submit"]),
.gf-page-hire .gf-service-hero .wpcf7 form > .wpcf7-form-control-wrap.recaptcha,
.gf-page-hire .gf-service-hero .wpcf7-form .wpcf7-recaptcha,
.gf-page-hire .gf-service-hero .wpcf7-form .cf7sr-g-recaptcha {
  grid-column: 1 / -1;
}

.gf-page-hire .gf-service-hero .custom__quotation-form .wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.gf-page-hire .gf-service-hero .custom__quotation-form form.wpcf7-form input[type="text"],
.gf-page-hire .gf-service-hero .custom__quotation-form textarea {
  display: block !important;
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 2.4rem !important;
  min-height: 2.4rem !important;
  padding: 0 0.7rem !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 0 !important;
  background: #08080a !important;
  color: #ffffff !important;
  font-family: var(--font-body), sans-serif !important;
  font-size: 0.84rem !important;
  line-height: 2.4rem !important;
}

.gf-page-hire .gf-service-hero .custom__quotation-form textarea {
  height: 3rem !important;
  min-height: 3rem !important;
  max-height: 3rem !important;
  line-height: 1.4 !important;
  padding: 0.5rem 0.7rem !important;
  resize: none;
}

.gf-page-hire .gf-service-hero textarea.g-recaptcha-response,
.gf-page-hire .gf-service-hero textarea[name="g-recaptcha-response"] {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}

.gf-page-hire .gf-service-hero .custom__quotation-form label {
  display: block;
  margin: 0 0 0.25rem !important;
  font-size: 0.64rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5) !important;
}

.gf-page-hire .gf-service-hero .intl-tel-input,
.gf-page-hire .gf-service-hero .intl-tel-input.allow-dropdown,
.gf-page-hire .gf-service-hero .custom__quotation-form .iti,
.gf-page-hire .gf-service-hero .custom__quotation-form .iti--allow-dropdown {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.gf-page-hire .gf-service-hero .intl-tel-input .flag-container {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 3.15rem !important;
  height: 2.4rem !important;
  z-index: 2;
}

.gf-page-hire .gf-service-hero .intl-tel-input .selected-flag {
  display: flex !important;
  align-items: center !important;
  width: 3.15rem !important;
  height: 2.4rem !important;
  padding: 0 0 0 0.5rem !important;
  background: transparent !important;
}

.gf-page-hire .gf-service-hero .intl-tel-input input[type="tel"],
.gf-page-hire .gf-service-hero .custom__quotation-form .intl-tel-input input[type="tel"] {
  width: 100% !important;
  padding-left: 3.3rem !important;
}

.gf-page-hire .gf-service-hero .wpcf7-form br {
  display: none;
}

.gf-page-hire .gf-service-hero .custom__quotation-form input.wpcf7-submit {
  width: 100%;
  min-height: 2.3rem;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ffcc00 !important;
  color: #08080a !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.gf-page-hire .gf-service-hero .custom__quotation-form input.wpcf7-submit:hover {
  background: #e6b800 !important;
}

.gf-page-hire .gf-service-hero .wpcf7-form .wpcf7-recaptcha,
.gf-page-hire .gf-service-hero .wpcf7-form .cf7sr-g-recaptcha,
.gf-page-hire .gf-service-hero .wpcf7-form iframe[title*="reCAPTCHA"] {
  transform: scale(0.78);
  transform-origin: left top;
}

.gf-page-hire .gf-service-hero .wpcf7-form .wpcf7-recaptcha,
.gf-page-hire .gf-service-hero .wpcf7-form .cf7sr-g-recaptcha {
  height: 58px;
  margin: 0;
  overflow: hidden;
}

.gf-service-hero__stats {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  align-items: stretch;
  margin: 0 0 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.gf-service-hero__stats-kicker {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 0.85rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.gf-service-hero__stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gf-service-hero__stat {
  display: block !important;
  padding: 0.85rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.gf-service-hero__stat:last-child {
  border-right: 0;
}

.gf-service-hero__stat strong {
  display: block !important;
  color: #ffcc00;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.25rem, 1.05rem + 0.7vw, 1.7rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.gf-service-hero__stat span {
  display: block !important;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.gf-page-hire .gf-service-hero .custom__quotation-form form.wpcf7-form input.wpcf7-form-control.wpcf7-email.wpcf7-validates-as-required.wpcf7-text.wpcf7-validates-as-email,
body.gf-page-hire .gf-service-hero .custom__quotation-form form.wpcf7-form input.wpcf7-email,
body.gf-page-hire .gf-service-hero .custom__quotation-form form.wpcf7-form input[type="email"] {
  display: block !important;
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 2.4rem !important;
  min-height: 2.4rem !important;
  padding: 0 0.7rem !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 0 !important;
  background: #08080a !important;
  color: #ffffff !important;
  font-size: 0.84rem !important;
  line-height: 2.4rem !important;
  text-indent: 0 !important;
}

body.gf-page-hire .gf-service-hero .custom__quotation-form .intl-tel-input.allow-dropdown input.wpcf7-intl_tel,
body.gf-page-hire .gf-service-hero .custom__quotation-form form.wpcf7-form .intl-tel-input input[type="tel"],
body.gf-page-hire .gf-service-hero .custom__quotation-form form.wpcf7-form input.wpcf7-intl_tel {
  display: block !important;
  box-sizing: border-box !important;
  width: 100% !important;
  height: 2.4rem !important;
  min-height: 2.4rem !important;
  padding: 0 0.7rem 0 3.3rem !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 0 !important;
  background: #08080a !important;
  color: #ffffff !important;
  font-size: 0.84rem !important;
  line-height: 2.4rem !important;
}

.gf-page-hire .gf-breadcrumbs,
.gf-page-hire .header.page-banner-section,
.gf-page-hire section.new__custom--header.service-m__new--header {
  display: none !important;
}

@media (max-width: 900px) {
  .gf-service-hero {
    padding-top: 5.25rem;
  }

  .gf-service-hero__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .gf-service-hero__form-lede,
  .gf-service-hero__form-index {
    display: none;
  }

  .gf-service-hero__form,
  .gf-page-hire .gf-service-hero .custom__quotation-form {
    padding: 0.85rem 0.9rem 0.95rem !important;
  }

  .gf-page-hire .gf-service-hero .wpcf7 form {
    grid-template-columns: 1fr;
  }

  .gf-service-hero__grid {
    grid-template-columns: 1fr;
    padding-bottom: 1.25rem;
  }

  .gf-service-hero__title,
  .gf-service-hero h1 {
    max-width: none;
  }

  .gf-service-hero__points {
    grid-template-columns: 1fr;
  }

  .gf-service-hero__points li:nth-child(odd) {
    border-right: 0;
  }

  .gf-service-hero__stats {
    grid-template-columns: 1fr;
  }

  .gf-service-hero__stats-kicker {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.55rem 0.85rem;
  }

  .gf-service-hero__stats-row {
    grid-template-columns: 1fr;
  }

  .gf-service-hero__stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem 0.85rem;
  }

  .gf-service-hero__stat:last-child {
    border-bottom: 0;
  }
}
