.php-cta-section {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 110px;
  display: flex;
  gap: 98px;
  align-items: center;
  height: 550px;
}

/* ── Background: gradient + image ── */
.php-cta-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(167.93deg, #0c4b88 17.64%, #112444 110.46%);
  pointer-events: none;
}

.php-cta-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  pointer-events: none;
}

/* ── Left: text ── */
.php-cta-text {
  position: relative;
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.php-cta-heading {
  margin: 0;
  font-family: 'Rockwell', 'Rockwell Nova', Georgia, serif;
  font-weight: 700;
  font-size: 35px;
  line-height: normal;
  color: #ffffff;
  text-transform: uppercase;
}

.php-cta-subtext {
  margin: 0;
  font-family: 'League Spartan', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
}

/* ── Right: buttons ── */
.php-cta-buttons {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-shrink: 0;
}

.php-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e15520;
  color: #ffffff;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 44px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.php-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  color: #ffffff;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 44px;
  white-space: nowrap;
  border: 1px solid #ffffff;
  cursor: pointer;
}

.php-cta-btn-secondary svg {
  flex-shrink: 0;
}

/* ════════════════════════════════
   Tablet  ≤ 1024px
════════════════════════════════ */
@media (max-width: 1024px) {
  .php-cta-section {
    padding: 72px 48px;
    gap: 48px;
  }

  .php-cta-heading {
    font-size: 26px;
  }

  .php-cta-subtext {
    font-size: 17px;
  }

  .php-cta-btn-primary,
  .php-cta-btn-secondary {
    padding: 15px 28px;
  }
}

/* ════════════════════════════════
   Mobile  ≤ 767px
════════════════════════════════ */
@media (max-width: 767px) {
  .php-cta-section {
    padding: 56px 20px;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
    height: auto;

  }

  .php-cta-heading {
    font-size: 24px;
  }

  .php-cta-subtext {
    font-size: 16px;
    line-height: 24px;
  }

  .php-cta-buttons {
    flex-direction: column;
    width: 300px;
    gap: 12px;
    max-width: 70%;
  }

  .php-cta-btn-primary,
  .php-cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

