.php-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #112444;
  overflow: hidden;
  font-family: sans-serif;
}

.php-hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  pointer-events: none;
}

.php-hero-bg-image-mobile {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  display: none;
}

.php-hero-gradient-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(207.83deg, rgb(0, 0, 0) 4.83%, rgba(0, 0, 0, 0) 34.32%);
  pointer-events: none;
}

.php-hero-gradient-blue {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 36, 68, 0.85) 0%, rgba(17, 36, 68, 0.4) 60%, rgba(17, 36, 68, 0) 100%);
  pointer-events: none;
}

.php-hero-logo {
  position: absolute;
  top: 37px;
  left: 43px;
  width: 140px;
  height: auto;
  z-index: 10;
}

.php-hero-nav {
  position: absolute;
  top: 83px;
  right: 109px;
  display: flex;
  gap: 16px;
  align-items: center;
  z-index: 99;
}

.php-hero-nav-cta {
  display: inline-block;
  background-color: #e15520;
  color: #fff;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 44px;
  white-space: nowrap;
}

.php-hero-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(14px);
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid #ffffff;
  color: #fff;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 44px;
  white-space: nowrap;
}

.php-hero-content {
  position: relative;
  z-index: 10;
  padding: 320px 109px 180px;
  display: flex;
  flex-direction: column;
  gap: 29px;
  max-width: 900px;
}

.php-hero-heading-1 {
  margin: 0;
  font-family: 'Rockwell', 'Rockwell Nova', Georgia, serif;
  font-weight: 400;
  font-size: 54px;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0px 4px 53px rgba(0, 0, 0, 0.25);
}

.php-hero-heading-2 {
  margin: 0;
  font-family: 'Rockwell';
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  font-size: 70px;
  line-height: 1.1;
  color: #f16b38;
  text-transform: uppercase;

}

.php-hero-badges {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.php-hero-badge {
  display: flex;
  gap: 14px;
  align-items: center;
}

.php-hero-badge-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.php-hero-badge-text {
  font-family: 'League Spartan', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
}

.php-hero-ctas {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.php-hero-cta-btn {
  display: inline-block;
  background-color: #e15520;
  color: #fff;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 44px;
  white-space: nowrap;
}

/* ════════════════════════════════
   Tablet  ≤ 1024px
════════════════════════════════ */
@media (max-width: 1024px) {
  .php-hero-logo {
    width: 110px;
    top: 24px;
    left: 24px;
  }

  .php-hero-nav {
    top: 60px;
    right: 24px;
    gap: 10px;
  }

  .php-hero-nav-cta {
    padding: 13px 24px;
    font-size: 12px;
  }

  .php-hero-nav-phone {
    padding: 13px 24px;
    font-size: 12px;
  }

  .php-hero-content {
    padding: 180px 48px 120px;
  }

  .php-hero-heading-1 {
    font-size: 40px;
  }

  .php-hero-heading-2 {
    font-size: 52px;
  }
}

/* ════════════════════════════════
   Mobile  ≤ 767px
════════════════════════════════ */
@media (max-width: 767px) {
  .php-hero-bg-image {
    display: none;
  }

  .php-hero-bg-image-mobile {
    display: block;
  }

  .php-hero-logo {
    width: 80px;
    top: 16px;
    left: 16px;
  }

  .php-hero-nav {
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    z-index: 999;
  }

  .php-hero-nav-cta {
    flex: 1;
    padding: 16px 12px;
    font-size: 13px;
    text-align: center;
    justify-content: center;
  }

  .php-hero-nav-phone {
    flex: 1;
    padding: 16px 12px;
    font-size: 13px;
    justify-content: center;
    backdrop-filter: none;
    background-color: #112444;
  }

  .php-hero-gradient-blue, .php-hero-gradient-dark{
    display: none;
  }

  .php-hero-content {
    padding: 280px 20px 120px;
    max-width: 100%;
    text-align: center;
  }

  .php-hero-heading-1 {
    font-size: 28px;
  }

  .php-hero-heading-2 {
    font-size: 38px;
  }

  .php-hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .php-hero-badge-text {
    white-space: normal;
  }

  .php-hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .php-hero-cta-btn {
    text-align: center;
    padding: 16px 24px;
  }
}

