/* ══════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════ */

/* Page header */
.svc-page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #0a4fa8 60%, var(--blue) 100%);
  padding: 48px 20px 40px;
  text-align: center;
  color: var(--white);
}
.svc-page-header-inner { max-width: 600px; margin: 0 auto; }
.sph-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--lblue); margin-bottom: 10px;
}
.sph-title { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.sph-sub   { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6; }

/* Page wrapper */
.svc-page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px 100px;
}

/* Tile grid — 1 col mobile, 2 col tablet, 3 col desktop */
.svc-tile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px)  { .svc-tile-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .svc-tile-grid { grid-template-columns: 1fr 1fr 1fr; } }

/* Individual tile */
.svc-tile {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.svc-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(3,45,108,.16);
}

/* Photo area */
.svc-tile-img {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
@media (min-width: 600px) { .svc-tile-img { height: 220px; } }

/* Gradient overlay — mix-blend-mode merges brand colour with the photo */
.svc-tile-gradient {
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  opacity: 0.82;
}
/* Soft dark scrim on top so text stays readable */
.svc-tile-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

/* Badge top-right */
.svc-tile-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  box-shadow: 0 2px 8px rgba(2,158,252,.4);
}

/* Overlay text at bottom of photo */
.svc-tile-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px 14px;
}
.sto-name {
  font-size: 20px; font-weight: 800;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
  margin-bottom: 4px;
}
.sto-meta { display: flex; align-items: center; gap: 6px; }
.sto-price {
  font-size: 15px; font-weight: 800;
  color: var(--lblue);
}
.sto-dot { color: rgba(255,255,255,.5); font-size: 12px; }
.sto-dur { font-size: 12px; color: rgba(255,255,255,.8); font-weight: 500; }

/* Card body */
.svc-tile-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.stb-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.6; margin-bottom: 14px;
}

/* Feature list */
.stb-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 18px;
  flex: 1;
}
.stb-features li {
  font-size: 12px; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 7px;
}
.stb-features li::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0;
  background: var(--blue);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l2.5 2.5L12 5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}

/* CTA row */
.stb-cta {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.stb-price-big {
  font-size: 18px; font-weight: 800; color: var(--navy);
  white-space: nowrap;
}
.stb-btn {
  flex: 1;
  padding: 11px 16px;
  font-size: 13px;
}
