/* ============================================================
   SERVICE SILO PAGE STYLES
   Used by: /services/*.html
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* Service Hero */
.service-hero {
  background: linear-gradient(135deg, #1a2e1a 0%, #2d4a2d 50%, #1a3a2a 100%);
  padding: 7rem 0 4rem;
  color: #fff;
}
.service-hero__inner { max-width: 800px; }
.service-hero__title {
  font-family: 'Zodiak', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.service-hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 680px;
}
.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.service-hero__includes {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}

/* Service Content Grid */
.service-content__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .service-content__grid {
    grid-template-columns: 1fr;
  }
  .service-content__sidebar {
    order: -1;
  }
}

/* Body Content */
.service-content__body h2 {
  font-family: 'Zodiak', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a2e1a;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.service-content__body h2:first-child { margin-top: 0; }
.service-content__body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 1rem;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.service-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  color: #3a3a3a;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3a7a3a;
}

/* Sidebar Cards */
.service-content__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: #fff;
  border: 1px solid #e8ede8;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.sidebar-card h3 {
  font-family: 'Zodiak', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1a2e1a;
  margin-bottom: 1rem;
}
.sidebar-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0.5rem;
}
.sidebar-card p:last-child { margin-bottom: 0; }

/* Session options in sidebar */
.sidebar-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.sidebar-option:last-child { border-bottom: none; }
.sidebar-option__label {
  flex: 1;
  font-size: 0.9rem;
  color: #3a3a3a;
}
.sidebar-option__price {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a2e1a;
  min-width: 48px;
  text-align: right;
}

/* Promo sidebar card */
.sidebar-card--promo {
  background: linear-gradient(135deg, #1a2e1a, #2d4a2d);
  border-color: transparent;
  text-align: center;
}
.sidebar-promo__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7) !important;
  margin-bottom: 0.25rem !important;
}
.sidebar-promo__code {
  font-family: monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: #a8d5a2 !important;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem !important;
}
.sidebar-promo__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65) !important;
}

/* Includes list in sidebar */
.sidebar-includes {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-includes li {
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
  font-size: 0.875rem;
  color: #555;
}
.sidebar-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3a7a3a;
  font-weight: 700;
}

/* Related Services */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr; }
}
.related-card {
  display: block;
  background: #fff;
  border: 1px solid #e8ede8;
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #3a7a3a;
}
.related-card h3 {
  font-family: 'Zodiak', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a2e1a;
  margin-bottom: 0.5rem;
}
.related-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #666;
}

/* Button sizes for service pages */
.btn--sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}
.btn--secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.8);
}
.btn--outline {
  background: transparent;
  color: #1a2e1a;
  border: 2px solid #1a2e1a;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn--outline:hover {
  background: #1a2e1a;
  color: #fff;
}

/* ── FAQ Section ─────────────────────────────────────── */
.service-faq {
  background: #fff;
}

.service-faq__inner {
  max-width: 860px;
  margin: 0 auto;
}

.service-faq .section__title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid #e0e7e0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.faq-item[open] {
  box-shadow: 0 4px 16px rgba(44, 77, 44, 0.08);
}

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a2e1a;
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  line-height: 1.4;
}

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

.faq-item__q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: #3a6b3a;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item[open] .faq-item__q::after {
  transform: rotate(45deg);
}

.faq-item__a {
  padding: 0 1.4rem 1.2rem;
  border-top: 1px solid #e0e7e0;
}

.faq-item__a p {
  margin: 0.9rem 0 0;
  font-size: 0.96rem;
  color: #3d4d3d;
  line-height: 1.7;
}
