/* ================================================================
   Medical-content Blade components — used inside hardcoded service /
   blog pages (resources/views/services/static/*.blade.php).
   Each component below maps to one anonymous Blade component.
   ================================================================ */

/* ============ <x-cost-table> ============ */
.cost-table-block {
  margin: 32px 0;
  padding: 24px;
  background: linear-gradient(160deg, #1a0e0d 0%, #0f0807 100%);
  border: 1px solid rgba(223,125,111,.18);
  border-radius: 14px;
}
.cost-table-block h3 {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 16px;
}
.cost-table {
  width: 100%;
  border-collapse: collapse;
}
.cost-table thead th {
  background: rgba(223,125,111,.12);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(223,125,111,.25);
}
.cost-table tbody td {
  color: #c8b9ad;
  font-size: 14.5px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cost-table tbody tr:last-child td { border-bottom: 0; }
.cost-table tbody td strong { color: #fff; font-weight: 600; }
.cost-th-price, .cost-td-price {
  text-align: right;
  font-weight: 700;
  color: #DF7D6F;
}
.cost-table-note {
  color: #8a7a6e;
  font-size: 12.5px;
  font-style: italic;
  margin: 12px 0 0;
}

/* ============ <x-doctor-callout> ============ */
.doctor-callout {
  display: flex;
  gap: 16px;
  margin: 28px 0;
  padding: 20px;
  background: rgba(223,125,111,.06);
  border-left: 4px solid #DF7D6F;
  border-radius: 0 12px 12px 0;
}
.doctor-callout-img {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #DF7D6F;
}
.doctor-callout-name {
  color: #fff;
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.doctor-callout-name strong { display: block; font-weight: 700; }
.doctor-callout-name span { color: #DF7D6F; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.doctor-callout-quote {
  color: #d6c5b8;
  font-style: italic;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.doctor-callout-quote::before {
  content: "\201C";
  color: #DF7D6F;
  font-size: 28px;
  line-height: 0;
  vertical-align: -10px;
  margin-right: 4px;
}

/* ============ <x-before-after> ============ */
.ba-figure {
  margin: 28px 0;
}
.ba-comparison {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(223,125,111,.2);
}
.ba-caption {
  color: #8a7a6e;
  font-size: 13px;
  font-style: italic;
  text-align: center;
  margin: 12px 0 0;
}

/* ============ <x-treatment-step> ============ */
.treatment-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin: 22px 0;
  padding: 18px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(223,125,111,.12);
  border-radius: 12px;
  transition: border-color .2s ease, background .2s ease;
}
.treatment-step:hover {
  border-color: rgba(223,125,111,.35);
  background: rgba(223,125,111,.04);
}
.treatment-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #DF7D6F 0%, #c8634f 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.treatment-step-title {
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.treatment-step-duration {
  font-size: 12px;
  color: #DF7D6F;
  background: rgba(223,125,111,.14);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.treatment-step-text {
  color: #c8b9ad;
  font-size: 14.5px;
  line-height: 1.65;
}
.treatment-step-text p { margin: 0 0 8px; }
.treatment-step-text p:last-child { margin-bottom: 0; }

/* ============ Mobile ============ */
@media (max-width: 575px) {
  .cost-table-block { padding: 18px; }
  .cost-table thead th, .cost-table tbody td { padding: 8px 10px; font-size: 13px; }
  .doctor-callout { flex-direction: column; align-items: flex-start; }
  .treatment-step { flex-direction: column; }
}
