/* ── Service page shared styles ── */
.page-hero { background: var(--black); padding: 3rem 2rem; border-bottom: 3px solid var(--red); }
.page-hero h1 { font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; line-height: 1.2; }
.page-hero p { font-size: 15px; color: #aaa; line-height: 1.75; max-width: 580px; font-family: Arial, sans-serif; }
.breadcrumb { font-size: 12px; color: #555; font-family: Arial, sans-serif; margin-bottom: 1rem; display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--red); }
.breadcrumb i { font-size: 11px; color: #444; }

.service-body { padding: 3rem 2rem; background: var(--white); }
.service-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }

/* ── Main content ── */
.service-intro { font-size: 16px; color: #444; line-height: 1.8; margin-bottom: 2rem; font-family: Arial, sans-serif; }
.service-intro strong { color: var(--black); }

.service-group { margin-bottom: 2rem; }
.service-group h3 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 0.85rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--red); display: inline-block; font-family: Arial, sans-serif; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-list li { font-size: 14px; color: #555; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; font-family: Arial, sans-serif; }
.service-list li i { color: var(--red); font-size: 15px; flex-shrink: 0; margin-top: 2px; }

.highlight-box { background: #f5f5f5; border-left: 4px solid var(--red); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.highlight-box p { font-size: 14px; color: #555; line-height: 1.75; font-family: Arial, sans-serif; }
.highlight-box strong { color: var(--black); }

.pricing-table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; }
.pricing-table th { background: var(--black); color: var(--white); padding: 10px 14px; text-align: left; font-size: 13px; font-family: Arial, sans-serif; font-weight: 700; }
.pricing-table td { padding: 10px 14px; font-size: 14px; font-family: Arial, sans-serif; border-bottom: 0.5px solid #eee; color: #444; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:last-child { color: var(--red); font-weight: 700; white-space: nowrap; }
.pricing-table tr:nth-child(even) td { background: #fafafa; }

/* ── Sidebar ── */
.sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card { background: var(--white); border: 0.5px solid #ddd; border-radius: var(--radius-lg); padding: 1.25rem; }
.sidebar-card h4 { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; font-family: Arial, sans-serif; display: flex; align-items: center; gap: 6px; }
.sidebar-card h4 i { color: var(--red); font-size: 15px; }
.book-card { background: var(--black); border: none; }
.book-card h4 { color: var(--white); }
.book-card p { font-size: 13px; color: #aaa; line-height: 1.6; margin-bottom: 1rem; font-family: Arial, sans-serif; }
.book-card .book-btn { background: var(--red); color: var(--white); border: none; padding: 12px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; cursor: pointer; font-family: Arial, sans-serif; width: 100%; text-align: center; display: block; }
.book-card .book-btn:hover { background: var(--red-dark); }
.other-services { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.other-services li a { display: flex; align-items: center; gap: 8px; padding: 8px 0; font-size: 13px; color: #555; font-family: Arial, sans-serif; border-bottom: 0.5px solid #f0f0f0; transition: color 0.15s; }
.other-services li:last-child a { border-bottom: none; }
.other-services li a:hover { color: var(--red); }
.other-services li a i { font-size: 14px; color: var(--red); flex-shrink: 0; }
.contact-list { display: flex; flex-direction: column; gap: 8px; }
.contact-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #555; font-family: Arial, sans-serif; list-style: none; }
.contact-list li i { color: var(--red); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.contact-list a { color: var(--red); }

/* ── CTA band ── */
.cta-band { background: var(--red); padding: 2.5rem 2rem; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.cta-band h3 { font-size: 22px; font-weight: 700; color: var(--white); }
.cta-band p { font-size: 14px; color: rgba(255,255,255,0.78); margin-top: 0.25rem; font-family: Arial, sans-serif; }
.cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .service-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 600px) {
  .page-hero { padding: 2.5rem 1.25rem; }
  .page-hero h1 { font-size: 24px; }
  .service-body { padding: 2rem 1.25rem; }
  .sidebar { grid-template-columns: 1fr; }
  .cta-band { padding: 2rem 1.25rem; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
