.sub-page-banner {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

/* Background image layer */
.sub-page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--banner-img);
  background-size: cover;
  background-position: center;
  /* Slight zoom-in on load */
  animation: bannerZoom 8s ease-out forwards;
}

@keyframes bannerZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

/* Dark gradient overlay */
.sub-page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 6, 0, 0.45) 0%,
    rgba(10, 6, 0, 0.65) 50%,
    rgba(10, 6, 0, 0.95) 100%
  );
}

/* Orange gradient wash from left */
.banner-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 107, 0, 0.18) 0%,
    transparent 55%
  );
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
}

/* Service category pill */
.banner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 140, 0, 0.12);
  border: 1px solid rgba(255, 140, 0, 0.3);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
  background: var(--primary-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Reset for wrapper */
.banner-pill {
  -webkit-text-fill-color: initial;
  background: rgba(255, 140, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 140, 0, 0.28);
  color: #ff9500;
}

.banner-pill i {
  background: var(--primary-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Banner heading */
.banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.banner-title .text-gradient {
  background: var(--primary-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 36px;
}

.banner-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Bottom-left corner detail */
.banner-meta {
  position: absolute;
  bottom: 32px;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 32px;
  align-items: center;
  text-align: right;
}

/* Text gradient utility */
.text-gradient {
  background: var(--primary-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  background: var(--primary-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 1px;
  background: var(--primary-grad);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.btn-primary {
  background: var(--primary-grad);
  color: #1a0800;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 30px;
  border: none;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow var(--transition-fast),
    opacity var(--transition-fast);
  box-shadow: 0 0 26px rgba(255, 140, 0, 0.28);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.42s ease;
}

.btn-primary:hover {
  opacity: 0.88;
  color: #1a0800;
  box-shadow: 0 0 52px rgba(255, 208, 0, 0.45);
}
.btn-primary:hover::after {
  left: 160%;
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  position: relative;
  transition:
    color var(--transition-normal),
    border-color var(--transition-normal);
}

.btn-ghost::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 4px;
  background: var(--primary-grad);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.btn-ghost:hover {
  color: #ff9500;
  border-color: transparent;
}
.btn-ghost:hover::after {
  opacity: 1;
}

/* ----------- PRELOADER ----------------- */
.orbit {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #070400c9;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.orbit-inner {
  width: 200px;
  height: 200px;
  position: relative;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.orbit-ring-1 {
  inset: 0;
  border-width: 3px;
  border-top-color: rgba(255, 107, 0, 0.8);
  border-bottom-color: rgba(255, 107, 0, 0.15);
  animation: spin 3s linear infinite;
}
.orbit-ring-2 {
  inset: 14px;
  border-width: 3px;
  border-right-color: rgba(255, 160, 0, 0.7);
  border-left-color: rgba(255, 160, 0, 0.15);
  animation: spin 2s linear infinite reverse;
}
.orbit-ring-3 {
  inset: 28px;
  border-width: 3px;
  border-top-color: rgba(255, 208, 0, 0.9);
  border-bottom-color: rgba(255, 208, 0, 0.15);
  animation: spin 1.4s linear infinite;
}

.orbit-dot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-dot::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-grad);
  box-shadow: 0 0 8px rgba(255, 150, 0, 0.8);
  animation: pulseDot 1.2s ease-in-out infinite;
}

/* Descriptions */
.section-body.body-main h1,
.section-body.body-main h2,
.section-body.body-main h3,
.section-body.body-main h4,
.section-body.body-main h5,
.section-body.body-main h6 {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 42px;
  color: var(--color-white);
  margin-bottom: 18px;
}

.section-body.body-main * + h1,
.section-body.body-main * + h2,
.section-body.body-main * + h3,
.section-body.body-main * + h4,
.section-body.body-main * + h5,
.section-body.body-main * + h6 {
  margin-top: 60px;
}

.section-body.body-main blockquote {
  border-left: 3px solid transparent;
  border-image: var(--primary-grad-vertical) 1;
  padding: 6px 0 6px 22px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
  margin-bottom: 32px;
}

.section-body.body-main a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: 0.3s ease-in-out;
}

.section-body .body-main p {
  color: var(--color-text-muted);
}

.section-body.body-main strong {
  color: var(--color-white);
}

.section-body.body-main ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
  margin-bottom: 36px;
  padding-left: 0;
}

.section-body.body-main ul li {
  position: relative;
  border: 1px solid var(--color-border);
  background: rgba(255, 140, 0, 0.05);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 13px 5px 35px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-body.body-main ul li::after {
  content: "\F26B";
  position: absolute;
  font-family: "bootstrap-icons";
  font-weight: 600;
  font-size: 12px;
  top: 50%;
  left: 13px;
  transform: translateY(-50%);
  background: var(--primary-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Why us */
/* ---- Why us --------------------------------------- */
.why-row {
  padding: var(--section-padding);
}

.why-row-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  filter: brightness(0.84) saturate(0.8);
  transition: filter var(--transition-slow);
}

.why-row-image:hover {
  filter: brightness(0.95) saturate(1);
}

.why-row-copy {
  padding-left: 1.5rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.why-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: rgba(255, 140, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition:
    background var(--transition-normal),
    border-color var(--transition-normal);
}

.why-item-icon i {
  background: var(--primary-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-item:hover .why-item-icon {
  background: rgba(255, 140, 0, 0.14);
  border-color: rgba(255, 140, 0, 0.4);
}

.why-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-item-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Form fields */
.form-group {
  margin-bottom: 20px;
}

.wpcf7-form p {
  margin: 0 !important;
}

.wpcf7-form br {
  display: none !important;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-response-output {
  display: none;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  line-height: 0 !important;
}

.wpcf7-form.sent .wpcf7-response-output {
  display: block;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-label-custom {
  display: block;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition:
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.form-control-custom:focus {
  border-color: rgba(255, 140, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
  background: rgba(255, 140, 0, 0.06);
}

textarea.form-control-custom {
  resize: none;
  border-radius: 14px;
  min-height: 120px;
}

select.form-control-custom {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FF8C00' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

select.form-control-custom option {
  background: #1a0f00;
  color: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-grad-glow);
  border: 1px solid rgba(255, 140, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.form-success-icon i {
  background: var(--primary-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* Privacy note under button */
.form-privacy-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 14px;
  justify-content: center;
}

.form-privacy-note i {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.85);
    opacity: 0.7;
  }
}

/* --------------------- RESPONSIVE -------------------------------- */
@media (max-width: 767px) {
  .sub-page-banner {
    min-height: 75vh;
    align-items: center;
  }

  .sub-page-banner .banner-meta {
    bottom: -130px;
  }
  
  .sub-page-banner .banner-content {
    padding-top: 0;
  }

  .banner-title {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
  }
}
