/* ======================================
   SERVICES PAGE — Supplemental Styles
   ====================================== */

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative;
  height: 54vh; min-height: 480px;
  display: flex; align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.ph-bg {
  position: absolute; inset: 0; z-index: 0;
}
.ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.ph-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,4,4,0.4) 0%,
    rgba(8,4,4,0.75) 100%
  );
}
.ph-content {
  position: relative; z-index: 2;
}
.ph-breadcrumb {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.ph-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.ph-breadcrumb a:hover { color: var(--red); }
.ph-breadcrumb span { color: rgba(255,255,255,0.25); }

.ph-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 70px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--white);
}
.ph-title em { font-style: italic; color: var(--red-light); font-weight: 400; }
.ph-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
}
.ph-scroll-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 100%);
  z-index: 2;
}

/* ---- SERVICES PILLS ---- */
.services-pills {
  background: var(--cream);
  border-bottom: 1px solid var(--grey-200);
  position: sticky; top: 66px; z-index: 100;
}
.pills-inner {
  display: flex; gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pills-inner::-webkit-scrollbar { display: none; }
.pill {
  flex-shrink: 0;
  padding: 18px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-600);
  border-bottom: 2.5px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.pill:hover { color: var(--red); border-bottom-color: var(--red); }
.pill.active { color: var(--red); border-bottom-color: var(--red); }

/* ---- SERVICE DETAIL ---- */
.service-detail { background: var(--white); }
.service-detail:nth-child(odd) { background: var(--off-white); }
.service-detail--alt { background: var(--cream); }
.service-detail--dark { background: var(--black); }

.sd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sd-grid--reverse .sd-image { order: 1; }
.sd-grid--reverse .sd-content { order: 0; }

.sd-image {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.sd-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.sd-image:hover img { transform: scale(1.04); }

.sd-num {
  position: absolute;
  bottom: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.dark-num { color: rgba(255,255,255,0.08); }

.sd-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey-600);
  margin-bottom: 40px;
}
.sd-text.light { color: rgba(255,255,255,0.6); }

.section-title.light { color: var(--white); }

/* SD Items grid */
.sd-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  margin-bottom: 40px;
}
.sdi h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.sdi h4::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.sdi p { font-size: 13.5px; line-height: 1.65; color: var(--grey-600); }

/* Dark variant */
.sd-items--light .sdi h4 { color: var(--white); }
.sd-items--light .sdi p { color: rgba(255,255,255,0.55); }

/* Promotional grid */
.promo-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.promo-grid span {
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--grey-600);
  transition: all 0.25s ease;
}
.promo-grid span:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(212,0,26,0.04);
}

/* ---- WHY US ---- */
.why-us { background: var(--off-white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.why-item { text-align: center; }
.wi-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--grey-200);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--red);
  transition: all 0.3s ease;
}
.wi-icon svg { width: 30px; height: 30px; }
.why-item:hover .wi-icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}
.why-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-600);
}

/* ---- SERVICES CTA ---- */
.services-cta {
  background: var(--red);
  padding: 60px 0;
}
.scta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.scta-text h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.scta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}
.services-cta .btn-primary {
  background: var(--white);
  color: var(--red);
  flex-shrink: 0;
}
.services-cta .btn-primary:hover {
  background: var(--black);
  color: var(--white);
  box-shadow: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1000px) {
  .sd-grid { grid-template-columns: 1fr; gap: 40px; }
  .sd-grid--reverse .sd-image { order: 0; }
  .sd-grid--reverse .sd-content { order: 1; }
  .sd-image { height: 340px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .scta-inner { text-align: center; justify-content: center; }
}
@media (max-width: 640px) {
  .sd-items { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-hero { height: auto; padding-top: 140px; padding-bottom: 60px; min-height: 0; }
}
