/* ═══════════════════════════════════════════════════════
   SYNQ.WORK — SERVICE PAGE STYLESHEET
   Extends main.css for city/service-specific landing pages
   ═══════════════════════════════════════════════════════ */

/* ══════ SERVICE HERO (bg-image approach) ══════ */
.svc-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--black);
  overflow: hidden;
}

.svc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: transform 8s ease;
}

.svc-hero:hover .svc-hero__bg {
  transform: scale(1.03);
}

.svc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.svc-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 1500px);
  margin-left: clamp(20px, 8vw, 120px);
  padding-top: var(--nav-h);
  padding-bottom: clamp(48px, 8vh, 80px);
}

/* Breadcrumb */
.svc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.15s forwards;
}

.svc-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.svc-breadcrumb a:hover { color: var(--yellow); }

.svc-breadcrumb__sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 10px;
}

.svc-breadcrumb__current { color: rgba(255, 255, 255, 0.8); }

/* Eyebrow */
.svc-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}

.svc-hero__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--yellow);
}

/* H1 */
.svc-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}

.svc-hero__sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.65s forwards;
}

.svc-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.8s forwards;
}

/* Stats row */
.svc-hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.95s forwards;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.svc-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.svc-hero__stat-val {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.svc-hero__stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.svc-hero__stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.14);
}

/* ══════ WHAT IS — 55/45 SPLIT ══════ */
.what-is {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--white);
}

.what-is__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

@media (max-width: 860px) {
  .what-is__inner { grid-template-columns: 1fr; }
}

.what-is__left { }

.what-is__h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 24px;
  white-space: pre-line;
}

.what-is__h2 em { font-style: italic; }

.what-is__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.what-is__body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--grey-lt);
}

.what-is__stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.what-is__stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--yellow);
  background: var(--grey-bg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.what-is__stat-box:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.what-is__stat-box-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}

.what-is__stat-box-sub {
  font-size: 12px;
  color: var(--grey-lt);
  margin-top: 2px;
}

.what-is__right { }

.what-is__img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.what-is__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.what-is__img:hover img { transform: scale(1.04); }

/* ══════ ALL CENTRES SECTION ══════ */
.all-centres {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--grey-bg);
}

.all-centres__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) { .all-centres__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 750px)  { .all-centres__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .all-centres__grid { grid-template-columns: 1fr; } }

/* Re-use .centre-card from main.css — the tag pill and pills row already styled */
/* Add a centre-card__link row at the bottom */
.centre-card__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  transition: gap 0.2s, color 0.2s;
}

.centre-card:hover .centre-card__link {
  gap: 10px;
  color: var(--grey);
}

/* ══════ VALUE PROPS (WHY SECTION) — dark bg ══════ */
.value-props {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--black);
}

.value-props__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}

@media (max-width: 900px) { .value-props__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .value-props__grid { grid-template-columns: 1fr; } }

.vp-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.35s var(--ease);
}

.vp-card:hover {
  background: rgba(255, 222, 89, 0.07);
  border-color: rgba(255, 222, 89, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.vp-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  transition: background 0.3s;
}

.vp-card:hover .vp-card__icon {
  background: var(--yellow);
  color: var(--black);
}

.vp-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.vp-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  flex: 1;
}

/* ══════ SERVICE MID-CTA ══════ */
.svc-midcta {
  background: var(--yellow);
  padding-block: clamp(60px, 8vw, 100px);
}

.svc-midcta__inner {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.svc-midcta__text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--black);
}

.svc-midcta__text h2 em { font-style: italic; }
.svc-midcta__text p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 10px;
}

.svc-midcta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════ CONTACT SECTION ══════ */
.svc-contact {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--white);
}

.svc-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

@media (max-width: 820px) { .svc-contact__inner { grid-template-columns: 1fr; } }

.svc-contact__left .section-title { margin-bottom: 20px; }
.svc-contact__left p {
  font-size: 16px;
  color: var(--grey-lt);
  line-height: 1.8;
  margin-bottom: 32px;
}

.svc-contact__info { display: flex; flex-direction: column; gap: 16px; }

.svc-contact__line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  transition: color 0.2s;
}

.svc-contact__line:hover { color: var(--grey); }
.svc-contact__line svg { flex-shrink: 0; }

/* ══════ SECTION SPACING HELPERS ══════ */
.svc-section-header { margin-bottom: clamp(36px, 5vw, 64px); }