/* service-page.css — extends style.css for all service pages */

/* ── PAGE HERO ── */
.pg-hero {
  position: relative;
  height: 520px;
  padding: 0 80px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.pg-hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,25,25,.96) 0%, rgba(3,25,25,.78) 42%, rgba(3,25,25,.42) 72%, transparent 100%);
}
.pg-hero-xpat {
  position: absolute;
  right: 0;
  top: 0;
  width: 380px;
  height: 100%;
  opacity: .05;
  pointer-events: none;
}
.pg-hero-con {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 86px;
  z-index: 2;
}
.pg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-body);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.42);
  margin-bottom: 20px;
}
.pg-breadcrumb a { color: rgba(255,255,255,.42); transition: color .2s; }
.pg-breadcrumb a:hover { color: var(--yellow); }
.pg-breadcrumb .cur { color: rgba(255,255,255,.72); }
.pg-breadcrumb .sep { color: rgba(255,255,255,.25); }
.pg-eye {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.pg-h1 {
  font-family: var(--f-head);
  font-size: 64px;
  line-height: .9;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 22px rgba(0,0,0,.35);
}
.pg-h1 .w { display: block; color: #fff; }
.pg-h1 .y { display: block; color: var(--yellow); }
.pg-p {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  margin-bottom: 32px;
  max-width: 460px;
}
.pg-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.pg-hero-ico {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 43px;
  width: 240px;
  height: 240px;
  opacity: .06;
  filter: brightness(0) invert(1);
  pointer-events: none;
}

/* ── SERVICE OVERVIEW ── */
.sov {
  background: var(--off-white);
  padding: 96px 80px;
}
.sov-in {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sov-eye {
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 14px;
}
.sov-h {
  font-family: var(--f-head);
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--teal-dark);
  margin-bottom: 18px;
}
.sov-h .hl { color: var(--yellow); }
.sov-p {
  font-family: var(--f-body);
  font-size: 15.5px;
  line-height: 1.7;
  color: #4a6060;
  margin-bottom: 12px;
}
.sov-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 24px;
}
.sov-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.5;
}
.sov-list li::before {
  content: '→';
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--teal-dark);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sov-img-wrap { position: relative; }
.sov-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.sov-img-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
}

/* ── KEY FEATURES ── */
.sf {
  background: var(--teal-dark);
  padding: 96px 80px;
  position: relative;
  overflow: hidden;
}
.sf-in {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.sf-h {
  font-family: var(--f-head);
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 6px;
}
.sf-h .y { color: var(--yellow); }
.sf-sub {
  font-family: var(--f-body);
  font-size: 15px;
  color: rgba(255,255,255,.58);
  margin-bottom: 46px;
  max-width: 580px;
}
.sf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.sf-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 34px 26px;
  transition: background .25s, border-color .25s, transform .25s;
}
.sf-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(246,184,0,.38);
  transform: translateY(-5px);
}
.sf-card-ico {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
}
.sf-card-ico img {
  width: 46px;
  height: 46px;
  filter: invert(74%) sepia(97%) saturate(632%) hue-rotate(2deg) brightness(104%) contrast(101%);
}
.sf-card-ttl {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.sf-card-dsc {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
/* reuse x-bg class from style.css but override colour for dark bg */
.sf .x-bg line { stroke: rgba(255,255,255,.8); }

/* ── MID-PAGE BANNER ── */
.svc-bnr {
  position: relative;
  height: 370px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.svc-bnr-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,31,32,.93) 0%, rgba(6,31,32,.76) 38%, rgba(6,31,32,.38) 66%, transparent 88%);
}
.svc-bnr-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-bnr-body > * { max-width: 500px; }
.svc-bnr-eye {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}
.svc-bnr-h {
  font-family: var(--f-head);
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: .95;
  margin-bottom: 16px;
}
.svc-bnr-h .w { display: block; color: #fff; }
.svc-bnr-h .y { display: block; color: var(--yellow); }
.svc-bnr-p {
  font-family: var(--f-body);
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* ── PROCESS ── */
.sp {
  background: #fff;
  padding: 96px 80px;
}
.sp-in {
  max-width: 1440px;
  margin: 0 auto;
}
.sp-h {
  font-family: var(--f-head);
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 6px;
}
.sp-h .hl { color: var(--yellow); }
.sp-sub {
  font-family: var(--f-body);
  font-size: 15px;
  color: #5a7070;
  margin-bottom: 48px;
}
.sp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.sp-step {
  background: var(--off-white);
  padding: 36px 32px 40px;
  border-top: 3px solid transparent;
  transition: border-color .25s, background .25s;
}
.sp-step:hover {
  border-color: var(--yellow);
  background: #eef0ec;
}
.sp-step-num {
  font-family: var(--f-head);
  font-size: 54px;
  font-weight: 700;
  color: var(--yellow);
  opacity: .22;
  line-height: 1;
  margin-bottom: 20px;
}
.sp-step-ttl {
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--teal-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.sp-step-dsc {
  font-family: var(--f-body);
  font-size: 13.5px;
  color: #5a7070;
  line-height: 1.65;
}

/* ── RELATED SERVICES ── */
.srel {
  background: var(--teal-deep);
  padding: 96px 80px;
}
.srel-in {
  max-width: 1440px;
  margin: 0 auto;
}
.srel-h {
  font-family: var(--f-head);
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.srel-h .y { color: var(--yellow); }
.srel-sub {
  font-family: var(--f-body);
  font-size: 15px;
  color: rgba(255,255,255,.5);
  margin-bottom: 40px;
}
.srel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.srel-card {
  display: block;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 28px 22px 48px;
  position: relative;
  transition: background .25s, border-color .25s, transform .25s;
  text-decoration: none;
}
.srel-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(246,184,0,.45);
  transform: translateY(-5px);
}
.srel-card-ico {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}
.srel-card-ico img {
  width: 40px;
  height: 40px;
  filter: invert(74%) sepia(97%) saturate(632%) hue-rotate(2deg) brightness(104%) contrast(101%);
}
.srel-card-ttl {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.srel-card-dsc {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.srel-card-arr {
  position: absolute;
  bottom: 18px;
  right: 20px;
  color: var(--yellow);
  font-size: 20px;
  opacity: 0;
  transition: opacity .25s;
}
.srel-card:hover .srel-card-arr { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pg-hero { padding: 0 20px; height: auto; min-height: 460px; }
  .pg-hero-ico { display: none; }
  .pg-h1 { font-size: 46px; }
  .pg-p { max-width: 100%; }
  .sov { padding: 56px 20px; }
  .sov-in { grid-template-columns: 1fr; gap: 36px; }
  .sov-img { height: 260px; }
  .sf { padding: 56px 20px; }
  .sf-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-bnr { height: auto; min-height: 280px; }
  .svc-bnr-body { padding: 44px 20px; }
  .svc-bnr-body > * { max-width: 100%; }
  .svc-bnr-h { font-size: 32px; }
  .sp { padding: 56px 20px; }
  .sp-steps { grid-template-columns: 1fr; }
  .srel { padding: 56px 20px; }
  .srel-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .pg-h1 { font-size: 36px; }
  .sf-grid { grid-template-columns: 1fr; }
  .sov-h, .sf-h, .sp-h, .srel-h { font-size: 30px; }
}
