/* ── SERVICE DETAIL PAGE STYLES ── */

/* HERO */
.svc-hero {
  padding-top: var(--nav-h);
  background: #0c0e1d;
  position: relative;
}
.svc-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 10% 55%, rgba(110,63,141,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(18,115,109,0.14) 0%, transparent 55%);
}
.svc-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; padding: 80px 40px;
  position: relative; z-index: 1;
}
.svc-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  background: #1a1c2e; position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.14),
    0 40px 100px rgba(5,3,12,0.7),
    0 0 80px rgba(110,63,141,0.22);
}
.svc-img-wrap::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: rgba(255,255,255,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), inset 0 -1px 0 rgba(255,255,255,0.06);
}
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.svc-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 400; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(250,247,242,0.72); text-decoration: none;
  margin-bottom: 28px; transition: color 0.2s;
}
.svc-back:hover { color: rgba(250,247,242,0.85); }

.svc-cat {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: #12736D; margin-bottom: 14px;
}

.svc-name {
  font-family: var(--serif); font-size: clamp(30px, 4vw, 56px);
  font-weight: 400; line-height: 1.1; margin-bottom: 10px; letter-spacing: -0.01em;
  color: #faf7f2;
}

.svc-price-row {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; align-items: center;
}
.svc-price {
  font-size: 20px; font-weight: 400; color: #ADCD52; letter-spacing: -0.01em;
}
.svc-duration {
  font-size: 13px; color: rgba(250,247,242,0.6); letter-spacing: 0.04em;
  padding: 5px 14px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}

.svc-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 28px; }
.svc-desc { font-size: 17px; line-height: 1.82; color: rgba(250,247,242,0.7); margin-bottom: 28px; }

.svc-book-btn {
  display: inline-flex; align-items: center;
  padding: 15px 36px; border-radius: 100px;
  background: #12736D; color: #faf7f2;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase; text-decoration: none;
  transition: background 0.25s, transform 0.25s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.25s;
  margin-bottom: 12px;
}
.svc-book-btn:hover {
  background: #ADCD52; color: #1c1816;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -10px rgba(173,205,82,0.55);
}

.svc-consult { display: block; font-size: 13px; color: rgba(250,247,242,0.4); }
.svc-consult a { color: rgba(250,247,242,0.7); text-decoration: underline; }

/* DETAIL BLOCKS */
.svc-details {
  background: #0c0e1d; padding: 80px 40px;
  position: relative; overflow: hidden;
}
.svc-details::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(18,115,109,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 60%, rgba(110,63,141,0.1) 0%, transparent 55%);
}
.svc-details-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
  position: relative; z-index: 1;
}
.svc-detail-block {
  background: rgba(255,255,255,0.04); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14); position: relative;
}
.svc-detail-block::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); pointer-events: none;
  background: rgba(255,255,255,0.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), inset 0 -1px 0 rgba(255,255,255,0.05);
}
.svc-detail-block h2 {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: #ADCD52;
  margin-bottom: 20px;
}
.svc-detail-block ul { list-style: none; padding: 0; }
.svc-detail-block li {
  font-size: 17px; line-height: 1.75; color: rgba(250,247,242,0.72);
  padding: 10px 0 10px 24px; border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.svc-detail-block li:last-child { border-bottom: none; }
.svc-detail-block li::before {
  content: "→"; position: absolute; left: 0;
  color: #12736D; font-size: 12px;
}

/* PROVIDERS */
.svc-providers-section { background: #0c0e1d; padding: 80px 40px; position: relative; overflow: hidden; }
.svc-providers-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 88% 12%, rgba(173,205,82,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 8% 92%, rgba(110,63,141,0.12) 0%, transparent 55%);
}
.svc-providers-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.svc-providers-inner h3 {
  font-family: var(--serif); font-size: 34px; font-weight: 400;
  margin-bottom: 32px; letter-spacing: -0.01em; color: #faf7f2;
}
.svc-providers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.svc-provider-card {
  display: block; text-decoration: none; color: inherit; text-align: center;
  transition: transform 0.3s cubic-bezier(0.2,0.7,0.2,1);
}
.svc-provider-card:hover { transform: translateY(-4px); }
.svc-provider-photo {
  aspect-ratio: 1/1; border-radius: 50%; overflow: hidden;
  background: #1a1c2e; margin-bottom: 16px;
  box-shadow:
    0 0 0 2px rgba(18,115,109,0.5),
    0 0 40px rgba(110,63,141,0.28),
    0 16px 48px rgba(5,3,12,0.6);
  transition: box-shadow 0.3s ease;
}
.svc-provider-card:hover .svc-provider-photo {
  box-shadow:
    0 0 0 2px rgba(173,205,82,0.7),
    0 0 60px rgba(110,63,141,0.4),
    0 16px 48px rgba(5,3,12,0.7);
}
.svc-provider-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.svc-provider-card:hover .svc-provider-photo img { transform: scale(1.05); }
.svc-provider-name {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  margin-bottom: 4px; color: #faf7f2;
}
.svc-provider-role {
  font-size: 11px; color: rgba(250,247,242,0.72);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* RELATED SERVICES */
.svc-related { background: #0c0e1d; padding: 80px 40px; position: relative; overflow: hidden; }
.svc-related::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 12% 10%, rgba(18,115,109,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 90% 90%, rgba(110,63,141,0.1) 0%, transparent 55%);
}
.svc-related-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.svc-related-inner h3 {
  font-family: var(--serif); font-size: 34px; font-weight: 400;
  margin-bottom: 32px; letter-spacing: -0.01em; color: #faf7f2;
}
.svc-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.svc-related-card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14);
  transition: transform 0.3s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.3s;
}
.svc-related-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 3;
  background: linear-gradient(to right,
    #ADCD52, #12736D, #363971, #6E3F8D,
    #BA7EC9, #585BA7, #52BCA3, #D9E493
  );
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1);
}
.svc-related-card:hover::before { transform: scaleX(1); }
.svc-related-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), inset 0 -1px 0 rgba(255,255,255,0.05);
}
.svc-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14), 0 20px 50px rgba(5,3,12,0.6), 0 0 30px rgba(110,63,141,0.22);
}
.svc-related-img { aspect-ratio: 3/2; overflow: hidden; background: #1a1c2e; }
.svc-related-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.svc-related-card:hover .svc-related-img img { transform: scale(1.05); }
.svc-related-body { padding: 20px 24px 24px; }
.svc-related-name {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  margin-bottom: 6px; color: #faf7f2;
}
.svc-related-price { font-size: 12px; color: #ADCD52; letter-spacing: 0.04em; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .svc-hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 60px; }
  .svc-details-inner { grid-template-columns: 1fr; gap: 20px; }
  .svc-details { padding: 56px 24px; }
  .svc-providers-grid { grid-template-columns: repeat(2,1fr); }
  .svc-providers-section { padding: 56px 24px; }
  .svc-related-grid { grid-template-columns: repeat(2,1fr); }
  .svc-related { padding: 56px 24px; }
}
@media (max-width: 560px) {
  .svc-providers-grid { grid-template-columns: 1fr 1fr; }
  .svc-related-grid { grid-template-columns: 1fr; }
}

/* ── MOBILE TYPE LEGIBILITY ──
   Bump the smallest captions on service pages so they read comfortably. */
@media (max-width: 600px) {
  .svc-related-price { font-size: 13px; }
  .svc-provider-role { font-size: 12px; }
}
