/* ==========================================================================
   SERVICE PAGES – Expanded Content Sections
   Added to complement the existing .lesson-details-container
   ========================================================================== */

.service-depth {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 24px 20px;
  font-family: 'Inter', sans-serif;
  color: #eaf7ff;
}

.service-depth h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: #fff;
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.service-depth h2:first-child {
  margin-top: 0;
}

.service-depth p {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(234, 247, 255, 0.88);
  margin: 0 0 16px;
}

.service-depth ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.service-depth ul li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(234, 247, 255, 0.85);
}

.service-depth ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--r-accent, #00d4ff);
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.service-depth strong {
  color: #fff;
  font-weight: 700;
}

/* Session timeline */
.session-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 20px 0 28px;
  padding-left: 28px;
  border-left: 2px solid rgba(0, 212, 255, 0.2);
}

.session-timeline .tl-step {
  position: relative;
  padding: 12px 0 12px 20px;
}

.session-timeline .tl-step::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--r-bg, #050a14);
  border: 2px solid var(--r-accent, #00d4ff);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.35);
}

.session-timeline .tl-time {
  font-size: 13px;
  font-weight: 700;
  color: var(--r-accent, #00d4ff);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.session-timeline .tl-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(234, 247, 255, 0.85);
}

/* Service-specific FAQ section */
.service-faq {
  margin: 32px 0 20px;
}

.service-faq details {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 10px;
  background: rgba(14, 18, 28, 0.3);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-faq details:hover {
  background: rgba(255, 255, 255, 0.03);
}

.service-faq details[open] {
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.08);
}

.service-faq summary {
  padding: 14px 18px;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 700;
  color: #eaf7ff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-faq summary::-webkit-details-marker {
  display: none;
}

.service-faq summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
  color: var(--r-accent, #00d4ff);
  transition: transform 0.2s;
}

.service-faq details[open] summary::after {
  content: "\2212";
}

.service-faq .sfaq-answer {
  padding: 0 18px 16px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(234, 247, 255, 0.82);
}

/* Related services grid */
.related-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 20px 0 10px;
}

.related-services a {
  display: block;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(14, 18, 28, 0.25);
  color: #eaf7ff;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.related-services a:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.1);
}

.related-services .rs-price {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(234, 247, 255, 0.55);
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .service-depth {
    padding: 24px 16px 16px;
  }

  .service-depth h2 {
    font-size: 20px;
    margin: 28px 0 12px;
  }

  .related-services {
    grid-template-columns: 1fr;
  }
}


/* Detail-page booking shell */
.detail-booking-section {
  max-width: 1120px;
  margin: 24px auto 56px;
  padding: 0 24px;
}

.dp-booking-shell {
  position: relative;
  border: 1px solid rgba(19, 185, 255, 0.16);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(4, 10, 22, 0.96), rgba(6, 14, 28, 0.92));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.dp-booking-copy {
  padding: 24px 24px 0;
}

.dp-booking-eyebrow {
  margin: 0 0 10px;
  color: var(--r-accent, #13b9ff);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

.dp-booking-title {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.08;
  font-weight: 800;
}

.dp-booking-meta {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 700;
}

.dp-booking-subtitle,
.dp-booking-note,
.dp-booking-zone-info,
.dp-booking-fallback {
  margin: 10px 0 0;
  color: rgba(223, 236, 247, 0.82);
  line-height: 1.6;
  font-size: 15px;
}

.dp-booking-zone-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 24px 0;
}

.dp-zone-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #edf7ff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.dp-zone-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(19, 185, 255, 0.45);
}

.dp-zone-btn.is-active {
  background: linear-gradient(135deg, rgba(19, 185, 255, 0.24), rgba(0, 134, 252, 0.18));
  border-color: rgba(19, 185, 255, 0.75);
  box-shadow: 0 0 0 1px rgba(19, 185, 255, 0.14) inset;
}

.dp-booking-frame-wrap {
  position: relative;
  min-height: 980px;
  margin: 18px 24px 0;
  border-radius: 24px;
  overflow: hidden;
  background: #1b1f25;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.dp-booking-loading,
.dp-booking-unavailable {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 24px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}

.dp-booking-unavailable h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
}

.dp-booking-unavailable p {
  margin: 0 0 12px;
}

.dp-booking-unavailable a,
.dp-booking-fallback a {
  color: var(--r-accent, #13b9ff);
}

.dp-booking-iframe {
  display: block;
  width: 100%;
  height: 1120px;
  border: 0;
  background: #1b1f25;
}

.dp-booking-footer {
  padding: 16px 24px 24px;
}

@media (max-width: 768px) {
  .detail-booking-section {
    margin: 18px auto 34px;
    padding: 0;
  }

  .dp-booking-shell {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .dp-booking-copy {
    padding: 18px 16px 0;
  }

  .dp-booking-title {
    font-size: 32px;
  }

  .dp-booking-meta {
    font-size: 15px;
  }

  .dp-booking-subtitle,
  .dp-booking-note,
  .dp-booking-zone-info,
  .dp-booking-fallback {
    font-size: 14px;
  }

  .dp-booking-zone-toggle {
    padding: 16px 12px 0;
    gap: 8px;
  }

  .dp-zone-btn {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    min-width: 0;
    padding: 11px 12px;
  }

  .dp-booking-frame-wrap {
    min-height: 880px;
    margin: 16px 0 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
  }

  .dp-booking-iframe {
    height: 1220px;
  }

  .dp-booking-footer {
    padding: 14px 16px 18px;
  }
}

/* ==========================================================================
   FOCUS SESSION PROTOTYPE — scoped to /standard-lesson-60-minutes/ only
   ========================================================================== */

.sp-focus-prototype {
  padding-bottom: 24px;
}

.sp-focus-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.sp-focus-section {
  position: relative;
  padding: 18px 0;
}

.sp-focus-section + .sp-focus-section {
  padding-top: 8px;
}

.sp-focus-hero {
  padding: 26px 0 24px;
}

.sp-focus-hero .sp-focus-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 32px;
  border: 1px solid rgba(80, 188, 255, 0.18);
  background:
    radial-gradient(1100px 440px at 0% 0%, rgba(19, 185, 255, 0.14), transparent 54%),
    radial-gradient(780px 300px at 100% 100%, rgba(212, 175, 55, 0.09), transparent 52%),
    linear-gradient(180deg, rgba(7, 15, 27, 0.94), rgba(8, 14, 24, 0.88));
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sp-focus-hero .sp-focus-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent 34%),
    linear-gradient(0deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.sp-eyebrow,
.sp-section-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(19, 185, 255, 0.92);
}

.sp-focus-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 5.3vw, 60px);
  line-height: 0.98;
  font-weight: 800;
  color: #ffffff;
  text-wrap: balance;
}

.sp-subtitle {
  margin: 16px 0 0;
  max-width: 780px;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: rgba(234, 247, 255, 0.84);
}

.sp-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.sp-fact-card {
  position: relative;
  min-height: 148px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.sp-fact-kicker {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.88);
}

.sp-fact-card strong {
  display: block;
  font-size: 21px;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 10px;
}

.sp-fact-card p {
  margin: 0;
  font-size: 14.4px;
  line-height: 1.55;
  color: rgba(234, 247, 255, 0.75);
}

.sp-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 18px;
  margin-top: 26px;
}

.sp-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  color: #06121d;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #6ae7ff, #17bfff);
  box-shadow: 0 14px 34px rgba(19, 185, 255, 0.25);
}

.sp-primary-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(19, 185, 255, 0.33);
}

.sp-hero-note {
  margin: 0;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(234, 247, 255, 0.72);
}

.sp-section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.sp-section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
  text-wrap: balance;
}

.sp-info-grid {
  display: grid;
  gap: 16px;
}

.sp-info-grid--2x2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sp-info-card {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.sp-info-card::before,
.sp-skill-card::before,
.sp-outcome-card::before,
.sp-related-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 40%);
}

.sp-info-card h3,
.sp-skill-card h3,
.sp-outcome-card h3,
.sp-flow-card h3,
.sp-related-card strong {
  margin: 0 0 8px;
  color: #fff;
  font-size: 19px;
  line-height: 1.15;
}

.sp-info-card p,
.sp-skill-card p,
.sp-outcome-card p,
.sp-flow-card p,
.sp-related-card p,
.sp-note-band__inner p {
  margin: 0;
  color: rgba(234, 247, 255, 0.78);
  line-height: 1.65;
  font-size: 15px;
}

.sp-skill-grid,
.sp-outcome-grid,
.sp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sp-skill-card,
.sp-outcome-card,
.sp-related-card {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    radial-gradient(180px 100px at 100% 0%, rgba(19,185,255,0.08), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.sp-skill-card h3,
.sp-outcome-card h3 {
  font-size: 18px;
}

.sp-footnote {
  margin: 16px 0 0;
  max-width: 760px;
  font-size: 14.2px;
  line-height: 1.6;
  color: rgba(234, 247, 255, 0.7);
}

.sp-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.sp-flow-card {
  position: relative;
  padding: 18px 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(19,185,255,0.15);
  background:
    linear-gradient(180deg, rgba(7,17,29,0.88), rgba(8,14,24,0.78));
  min-height: 210px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.sp-flow-card::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212,175,55,0.95), rgba(19,185,255,0.6));
  border-radius: 999px;
}

.sp-flow-time {
  display: block;
  margin-bottom: 34px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.9);
}

.sp-flow-card h3 {
  font-size: 18px;
  min-height: 42px;
}

.sp-note-band__inner {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 22px;
  border-radius: 24px;
  border: 1px solid rgba(212,175,55,0.16);
  background: linear-gradient(180deg, rgba(212,175,55,0.07), rgba(255,255,255,0.015));
}

.sp-note-band__inner h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
  color: #fff;
}

.sp-service-faq {
  margin-top: 0;
}

.sp-service-faq details {
  background: rgba(10, 17, 28, 0.52);
}

.detail-booking-section {
  margin-top: 18px;
}

.sp-related-section {
  padding-bottom: 42px;
}

.sp-related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sp-related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 20px 18px 18px;
  min-height: 210px;
}

.sp-related-card__eyebrow {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(19, 185, 255, 0.84);
}

.sp-related-card__price {
  display: inline-block;
  margin-top: 16px;
  color: rgba(212, 175, 55, 0.92);
  font-size: 13px;
  font-weight: 700;
}

.sp-related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(19,185,255,0.22);
  box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}

@media (max-width: 1100px) {
  .sp-fact-grid,
  .sp-skill-grid,
  .sp-outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sp-flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sp-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .sp-focus-hero .sp-focus-shell {
    padding: 26px 20px;
    border-radius: 26px;
  }

  .sp-fact-grid,
  .sp-info-grid--2x2,
  .sp-skill-grid,
  .sp-outcome-grid,
  .sp-flow-grid,
  .sp-related-grid {
    grid-template-columns: 1fr;
  }

  .sp-fact-card,
  .sp-flow-card,
  .sp-related-card {
    min-height: auto;
  }

  .sp-note-band__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sp-focus-shell {
    width: min(100%, calc(100% - 20px));
  }

  .sp-focus-hero {
    padding-top: 18px;
  }

  .sp-focus-hero h1 {
    font-size: clamp(31px, 8vw, 42px);
  }

  .sp-subtitle {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .sp-fact-grid {
    gap: 12px;
    margin-top: 22px;
  }

  .sp-fact-card,
  .sp-info-card,
  .sp-skill-card,
  .sp-outcome-card,
  .sp-flow-card,
  .sp-related-card {
    border-radius: 18px;
  }

  .sp-info-card,
  .sp-skill-card,
  .sp-outcome-card,
  .sp-flow-card,
  .sp-related-card {
    padding: 16px 16px 15px;
  }

  .sp-flow-time {
    margin-bottom: 18px;
  }

  .sp-flow-card::before {
    top: 14px;
    left: 16px;
  }

  .sp-note-band__inner {
    padding: 16px 16px;
  }

  .sp-section-heading {
    margin-bottom: 14px;
  }

  .sp-focus-section {
    padding: 14px 0;
  }
}
