/***
=============================================
Treatments Pages
=============================================
***/

.treatments-listing {
  padding: 72px 0 96px;
  background:
    radial-gradient(circle at 8% 0%, rgba(var(--mediplace-base-rgb), 0.05), transparent 28%),
    linear-gradient(180deg, #f7fcfe 0%, #ffffff 42%);
}

.treatments-listing__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.treatments-listing__top h2 {
  margin: 10px 0 0;
  max-width: 640px;
  color: var(--mediplace-black);
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.treatments-listing__summary {
  flex-shrink: 0;
  min-width: 128px;
  padding: 18px 20px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(var(--mediplace-base-rgb), 0.12);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(12, 35, 64, 0.06);
}

.treatments-listing__summary strong {
  display: block;
  color: var(--mediplace-base);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.treatments-listing__summary span {
  display: block;
  margin-top: 8px;
  color: rgba(var(--mediplace-black-rgb), 0.58);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.treatments-listing__toolbar {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(var(--mediplace-base-rgb), 0.1);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(12, 35, 64, 0.05);
}

.treatments-listing__search {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: none;
  min-height: 52px;
  margin-bottom: 0;
  padding: 0 16px;
  background: #f7fcfe;
  border: 1px solid rgba(var(--mediplace-base-rgb), 0.14);
  border-radius: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.treatments-listing__search:focus-within {
  border-color: rgba(var(--mediplace-base-rgb), 0.4);
  box-shadow: 0 0 0 4px rgba(var(--mediplace-base-rgb), 0.1);
}

.treatments-listing__search i {
  color: var(--mediplace-base);
  font-size: 14px;
}

.treatments-listing__search input {
  width: 100%;
  height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--mediplace-black);
  font-size: 14px;
  font-weight: 700;
}

.treatments-listing__search input::placeholder {
  color: rgba(var(--mediplace-black-rgb), 0.42);
  font-weight: 600;
}

.treatments-listing__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: rgba(var(--mediplace-black-rgb), 0.55);
  background: rgba(var(--mediplace-base-rgb), 0.08);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.treatments-listing__clear:hover {
  color: var(--mediplace-black);
  background: rgba(var(--mediplace-base-rgb), 0.14);
}

.treatments-listing__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.treatments-listing__chip {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  color: rgba(var(--mediplace-black-rgb), 0.72);
  background: #f7fcfe;
  border: 1px solid rgba(var(--mediplace-base-rgb), 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.treatments-listing__chip:hover,
.treatments-listing__chip.is-active {
  color: var(--mediplace-white);
  background: var(--mediplace-base);
  border-color: var(--mediplace-base);
  box-shadow: 0 12px 28px rgba(var(--mediplace-base-rgb), 0.24);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.treatment-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--mediplace-white);
  border: 1px solid rgba(var(--mediplace-base-rgb), 0.12);
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(12, 35, 64, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--mediplace-base-rgb), 0.28);
  box-shadow: 0 28px 70px rgba(12, 35, 64, 0.14);
}

.treatment-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e8f3f8;
}

.treatment-card__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.treatment-card:hover .treatment-card__media img {
  transform: scale(1.05);
}

.treatment-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  padding: 8px 12px;
  color: var(--mediplace-white);
  background: rgba(12, 35, 64, 0.78);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  backdrop-filter: blur(6px);
}

.treatment-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.treatment-card__price {
  margin: 0 0 8px;
  color: var(--mediplace-base);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.treatment-card__price span {
  margin-right: 4px;
  color: rgba(var(--mediplace-black-rgb), 0.45);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.treatment-card__body h3 {
  margin: 0 0 10px;
  color: var(--mediplace-black);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.treatment-card__body h3 a {
  color: inherit;
  transition: color 0.25s ease;
}

.treatment-card__body h3 a:hover {
  color: var(--mediplace-base);
}

.treatment-card__excerpt {
  margin: 0 0 14px;
  color: rgba(var(--mediplace-black-rgb), 0.6);
  font-size: 14px;
  line-height: 23px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.treatment-card__highlights {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.treatment-card__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(var(--mediplace-black-rgb), 0.68);
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
}

.treatment-card__highlights i {
  margin-top: 3px;
  color: #8bc34a;
  font-size: 10px;
}

.treatment-card__body .thm-btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ===== Treatment Cost Page (healzone.co.in style) ===== */
.tcp-breadcrumb {
  padding: 18px 0;
  background: #f3fbfe;
  border-bottom: 1px solid rgba(var(--mediplace-base-rgb), 0.1);
}

.tcp-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.tcp-breadcrumb li,
.tcp-breadcrumb a {
  color: rgba(var(--mediplace-black-rgb), 0.62);
  font-size: 14px;
  font-weight: 700;
}

.tcp-breadcrumb a:hover {
  color: var(--mediplace-base);
}

.tcp-breadcrumb li:last-child {
  color: var(--mediplace-black);
  font-weight: 800;
}

.tcp-breadcrumb span {
  color: var(--mediplace-base);
  font-size: 12px;
}

.tcp-page {
  padding: 36px 0 90px;
  background:
    radial-gradient(circle at 8% 0%, rgba(var(--mediplace-base-rgb), 0.06), transparent 28%),
    #ffffff;
}

.tcp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

/* page-wrapper overflow:hidden breaks sticky — lift it on cost pages */
body.treatment-cost-page .page-wrapper {
  overflow: visible;
}

.tcp-main {
  min-width: 0;
}

.tcp-title-block {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(var(--mediplace-base-rgb), 0.12);
}

.tcp-title-block h1 {
  margin: 0 0 18px;
  color: var(--mediplace-black);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.tcp-featured {
  margin: 0 0 18px;
  border-radius: 20px;
  overflow: hidden;
  background: #eef6fa;
  box-shadow: 0 14px 36px rgba(12, 35, 64, 0.08);
}

.tcp-featured img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.tcp-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: none;
}

.tcp-stats div {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 14px 12px 14px 16px;
  background: linear-gradient(180deg, #f4fbfe 0%, #ffffff 100%);
  border: 1px solid rgba(var(--mediplace-base-rgb), 0.14);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(12, 35, 64, 0.05);
}

.tcp-stats div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--mediplace-base);
}

.tcp-stats span {
  display: block;
  margin-bottom: 6px;
  color: rgba(var(--mediplace-black-rgb), 0.55);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tcp-stats strong {
  display: block;
  color: var(--mediplace-base);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.15;
  font-weight: 900;
}

.tcp-text {
  margin: 0 0 16px;
  color: rgba(var(--mediplace-black-rgb), 0.64);
  font-size: 15px;
  line-height: 27px;
}

.tcp-section {
  margin-top: 48px;
  padding-top: 8px;
}

.tcp-section > h2,
.tcp-section__head > h2 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 12px;
  color: var(--mediplace-black);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.tcp-section > h2::after,
.tcp-section__head > h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: var(--mediplace-base);
  border-radius: 99px;
}

.tcp-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  margin-bottom: 22px;
}

.tcp-section__head > h2 {
  flex: 1 1 240px;
  margin-bottom: 0;
  min-width: 0;
}

.tcp-city-filter {
  flex: 0 0 auto;
  min-width: 168px;
}

/* Keep native select — theme niceSelect targets all selects unless .ignore */
.tcp-city-filter select.ignore,
.tcp-city-filter select.tcp-city-filter__select {
  display: block !important;
}

.tcp-city-filter .nice-select {
  display: none !important;
}

.tcp-city-filter select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-width: 168px;
  padding: 11px 38px 11px 16px;
  border: 1px solid #d8e2ec;
  border-radius: 999px;
  background-color: #f6f9fc;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a5a6a' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px 7px;
  color: var(--mediplace-black);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.tcp-city-filter select:hover,
.tcp-city-filter select:focus {
  border-color: var(--mediplace-base);
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.tcp-doctors-empty {
  margin: 0 0 8px;
  padding: 18px 16px;
  border-radius: 12px;
  background: #f4f7fa;
  color: #5b6b7a;
}

.tcp-subtitle {
  margin: 22px 0 12px;
  color: var(--mediplace-black);
  font-size: 18px;
  font-weight: 800;
}

.tcp-bullets,
.tcp-numbered,
.tcp-type-card ul,
.tcp-procedure ul,
.tcp-conditions ul,
.tcp-why ul,
.tcp-help ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.tcp-bullets li,
.tcp-type-card ul li,
.tcp-procedure ul li,
.tcp-conditions ul li,
.tcp-why ul li,
.tcp-help ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: rgba(var(--mediplace-black-rgb), 0.64);
  font-size: 15px;
  line-height: 24px;
}

.tcp-bullets li::before,
.tcp-type-card ul li::before,
.tcp-procedure ul li::before,
.tcp-conditions ul li::before,
.tcp-why ul li::before,
.tcp-help ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--mediplace-base);
  border-radius: 50%;
}

.tcp-numbered {
  counter-reset: tcp;
}

.tcp-numbered li {
  position: relative;
  padding: 14px 16px 14px 48px;
  margin-bottom: 10px;
  color: rgba(var(--mediplace-black-rgb), 0.64);
  background: #f7fcfe;
  border: 1px solid rgba(var(--mediplace-base-rgb), 0.1);
  border-radius: 14px;
  font-size: 15px;
  line-height: 24px;
  counter-increment: tcp;
}

.tcp-numbered li::before {
  content: counter(tcp);
  position: absolute;
  left: 12px;
  top: 14px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mediplace-white);
  background: var(--mediplace-base);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.tcp-carousel-wrap {
  position: relative;
}

.tcp-doctors-carousel,
.tcp-hospitals-carousel {
  position: relative;
}

.tcp-doctors-carousel .owl-stage-outer,
.tcp-hospitals-carousel .owl-stage-outer {
  overflow: hidden;
}

.tcp-doctors-carousel .owl-item,
.tcp-hospitals-carousel .owl-item {
  height: auto;
}

.tcp-doctors-carousel .tcp-doctor-card,
.tcp-hospitals-carousel .tcp-hospital-card {
  height: 100%;
  margin: 0;
}

.tcp-doctors-carousel.owl-theme .owl-nav,
.tcp-hospitals-carousel.owl-theme .owl-nav {
  position: absolute;
  top: 38%;
  left: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 3;
}

.tcp-doctors-carousel.owl-theme .owl-nav [class*="owl-"],
.tcp-hospitals-carousel.owl-theme .owl-nav [class*="owl-"] {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--mediplace-black);
  background: #fff;
  border: 1px solid rgba(var(--mediplace-base-rgb), 0.16);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(12, 35, 64, 0.12);
  font-size: 14px;
  pointer-events: auto;
  transition: all 0.25s ease;
}

.tcp-doctors-carousel.owl-theme .owl-nav [class*="owl-"]:hover,
.tcp-hospitals-carousel.owl-theme .owl-nav [class*="owl-"]:hover {
  color: #fff;
  background: var(--mediplace-base);
  border-color: var(--mediplace-base);
}

.tcp-doctors-carousel.owl-theme .owl-nav [class*="owl-"].disabled,
.tcp-hospitals-carousel.owl-theme .owl-nav [class*="owl-"].disabled {
  opacity: 0.35;
  cursor: default;
}

.tcp-doctor-card,
.tcp-hospital-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(var(--mediplace-base-rgb), 0.12);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(12, 35, 64, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tcp-doctor-card:hover,
.tcp-hospital-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(12, 35, 64, 0.12);
}

.tcp-doctor-card__media,
.tcp-hospital-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #edf5f9;
}

.tcp-doctor-card__media img,
.tcp-hospital-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tcp-doctor-card:hover .tcp-doctor-card__media img,
.tcp-hospital-card:hover .tcp-hospital-card__media img {
  transform: scale(1.04);
}

.tcp-doctor-card__body,
.tcp-hospital-card__body {
  padding: 14px;
}

.tcp-doctor-card h3,
.tcp-hospital-card h3 {
  margin: 0 0 6px;
  color: var(--mediplace-black);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.tcp-doctor-card p,
.tcp-hospital-card p {
  margin: 0 0 5px;
  color: rgba(var(--mediplace-black-rgb), 0.6);
  font-size: 12px;
  line-height: 18px;
}

.tcp-doctor-card__degree {
  font-weight: 700 !important;
}

.tcp-doctor-card__specialty {
  display: inline-flex;
  margin-bottom: 10px !important;
  padding: 5px 10px;
  color: var(--mediplace-base) !important;
  background: rgba(var(--mediplace-base-rgb), 0.1);
  border-radius: 999px;
  font-size: 11px !important;
  font-weight: 800 !important;
}

.tcp-doctor-card__exp,
.tcp-doctor-card__hospital,
.tcp-hospital-card p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.tcp-doctor-card__exp i,
.tcp-doctor-card__hospital i,
.tcp-hospital-card p i {
  margin-top: 3px;
  color: var(--mediplace-base);
  font-size: 12px;
}

.tcp-doctor-card__hospital {
  font-weight: 700;
  color: var(--mediplace-black) !important;
}

.tcp-doctor-card .thm-btn,
.tcp-hospital-card .thm-btn {
  margin-top: 12px;
  min-height: 40px;
  padding: 8px 14px;
  font-size: 12px;
}

.tcp-hospital-card__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tcp-hospital-card__actions .thm-btn {
  margin-top: 0;
  flex: 1 1 auto;
  justify-content: center;
}

.tcp-hospital-card__wa {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #20d467;
  background: rgba(32, 212, 103, 0.12);
  border: 1px solid rgba(32, 212, 103, 0.28);
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.25s ease;
}

.tcp-hospital-card__wa:hover {
  color: #fff;
  background: #20d467;
}

.tcp-more {
  margin-top: 18px;
}

.tcp-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(var(--mediplace-base-rgb), 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(12, 35, 64, 0.05);
}

.tcp-table-wrap table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

.tcp-table-wrap th,
.tcp-table-wrap td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(var(--mediplace-base-rgb), 0.1);
  color: rgba(var(--mediplace-black-rgb), 0.7);
  font-size: 14px;
  line-height: 22px;
  text-align: left;
}

.tcp-table-wrap th {
  background: #f3fbfe;
  color: var(--mediplace-black);
  font-weight: 800;
}

.tcp-table-wrap tr:last-child td {
  border-bottom: 0;
}

.tcp-table-wrap tr.is-highlight td {
  background: rgba(var(--mediplace-base-rgb), 0.08);
  color: var(--mediplace-black);
  font-weight: 800;
}

.tcp-table-wrap td:last-child,
.tcp-table-wrap th:last-child {
  font-weight: 800;
  color: var(--mediplace-black);
  white-space: nowrap;
}

.tcp-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tcp-conditions,
.tcp-why,
.tcp-help,
.tcp-procedure,
.tcp-risks {
  display: grid;
  gap: 14px;
}

.tcp-why,
.tcp-help,
.tcp-conditions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tcp-type-card,
.tcp-conditions article,
.tcp-why article,
.tcp-help article,
.tcp-procedure article,
.tcp-risks article {
  padding: 20px;
  background: linear-gradient(180deg, #f7fcfe 0%, #ffffff 100%);
  border: 1px solid rgba(var(--mediplace-base-rgb), 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(12, 35, 64, 0.04);
}

.tcp-procedure article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.tcp-step-no {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mediplace-white);
  background: var(--mediplace-base);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 900;
}

.tcp-type-card h3,
.tcp-conditions h3,
.tcp-why h3,
.tcp-help h3,
.tcp-procedure h3 {
  margin: 0 0 10px;
  color: var(--mediplace-black);
  font-size: 18px;
  font-weight: 800;
}

.tcp-type-card h4,
.tcp-risks h4 {
  margin: 14px 0 8px;
  color: var(--mediplace-black);
  font-size: 14px;
  font-weight: 800;
}

.tcp-type-card p,
.tcp-why p,
.tcp-risks p {
  margin: 0;
  color: rgba(var(--mediplace-black-rgb), 0.64);
  font-size: 14px;
  line-height: 23px;
}

.tcp-type-card__cost {
  display: inline-flex;
  margin-top: 14px !important;
  padding: 8px 12px;
  color: var(--mediplace-base) !important;
  background: rgba(var(--mediplace-base-rgb), 0.1);
  border-radius: 999px;
  font-weight: 800 !important;
  font-size: 13px !important;
}

.tcp-journey {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
  padding: 28px;
  color: var(--mediplace-white);
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, var(--mediplace-base) 0%, #0c2340 100%);
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(12, 35, 64, 0.16);
}

.tcp-journey h3 {
  margin: 0 0 8px;
  color: var(--mediplace-white);
  font-size: 24px;
  font-weight: 800;
}

.tcp-journey p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 22px;
}

.tcp-journey__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tcp-journey .thm-btn {
  background: var(--mediplace-white);
  color: var(--mediplace-black);
}

.tcp-journey__wa {
  background: #0c2340 !important;
  color: var(--mediplace-white) !important;
}

.tcp-faq details {
  margin-bottom: 12px;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(var(--mediplace-base-rgb), 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(12, 35, 64, 0.04);
}

.tcp-faq details[open] {
  border-color: rgba(var(--mediplace-base-rgb), 0.28);
  box-shadow: 0 16px 40px rgba(12, 35, 64, 0.08);
}

.tcp-faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  color: var(--mediplace-black);
  background: #f7fcfe;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.tcp-faq summary::-webkit-details-marker {
  display: none;
}

.tcp-faq summary i {
  margin-top: 4px;
  color: var(--mediplace-base);
  font-size: 12px;
  transition: transform 0.25s ease;
}

.tcp-faq details[open] summary i {
  transform: rotate(45deg);
}

.tcp-faq details p {
  margin: 0;
  padding: 0 20px 18px;
  color: rgba(var(--mediplace-black-rgb), 0.64);
  background: #fff;
  font-size: 14px;
  line-height: 24px;
}

.tcp-sidebar {
  position: sticky;
  top: 110px;
  z-index: 20;
  align-self: start;
  height: fit-content;
}

.tcp-contact-card {
  padding: 22px;
  color: var(--mediplace-white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 42%),
    linear-gradient(165deg, #156f9f 0%, #0c2340 72%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow:
    0 18px 48px rgba(12, 35, 64, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.tcp-contact-card__top {
  margin-bottom: 18px;
}

.tcp-contact-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 12px;
  color: #0c2340;
  background: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.tcp-contact-card__badge i {
  color: #25d366;
  font-size: 14px;
}

.tcp-contact-card h3 {
  margin: 0 0 8px;
  color: var(--mediplace-white);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.tcp-contact-card__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.tcp-contact-card__form {
  display: grid;
  gap: 12px;
}

.tcp-contact-card__field label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tcp-contact-card__field input,
.tcp-contact-card__phone select,
.tcp-contact-card__phone input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: var(--mediplace-black);
  background: #fff;
  border: 0;
  border-radius: 12px;
  outline: 0;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 1px 0 rgba(12, 35, 64, 0.06);
}

.tcp-contact-card__field input:focus,
.tcp-contact-card__phone select:focus,
.tcp-contact-card__phone input:focus {
  box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.45);
}

.tcp-contact-card__phone {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 8px;
}

.tcp-contact-card__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  margin-top: 4px;
  padding: 0 18px;
  color: #0c2340;
  background: linear-gradient(180deg, #9ed45a 0%, #8bc34a 100%);
  border: 0;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(139, 195, 74, 0.35);
}

.tcp-contact-card__submit:hover {
  color: #0c2340;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(139, 195, 74, 0.42);
}

.tcp-contact-card__submit i {
  font-size: 18px;
  color: #128c3a;
}

.tcp-contact-card__divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 16px 0 12px;
}

.tcp-contact-card__divider::before,
.tcp-contact-card__divider::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.tcp-contact-card__divider span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.tcp-contact-card__quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tcp-contact-card__quick a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.tcp-contact-card__quick a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.tcp-contact-card__note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 600;
}

.tcp-contact-card__note i {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.85);
}

.treatment-related {
  padding: 0 0 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbfe 100%);
}

.treatment-related__head {
  margin-bottom: 28px;
}

.treatment-related__head h2 {
  margin: 0;
  color: var(--mediplace-black);
  font-size: clamp(20px, 3.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
}

@media (max-width: 1199px) {
  .treatments-grid,
  .tcp-types,
  .tcp-why,
  .tcp-help,
  .tcp-conditions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tcp-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .tcp-layout {
    grid-template-columns: 1fr;
  }

  .tcp-sidebar {
    position: sticky;
    top: 96px;
    order: -1;
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 991px) {
  .treatments-listing__top,
  .tcp-journey {
    align-items: flex-start;
    flex-direction: column;
  }

  .treatments-listing__toolbar {
    padding: 16px;
    border-radius: 20px;
  }

  .treatments-listing,
  .tcp-page,
  .treatment-related {
    padding-bottom: 64px;
  }
}

@media (max-width: 767px) {
  .treatments-grid,
  .tcp-types,
  .tcp-why,
  .tcp-help,
  .tcp-conditions {
    grid-template-columns: 1fr;
  }

  .tcp-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .tcp-stats div {
    padding: 12px 8px 12px 12px;
  }

  .tcp-stats span {
    font-size: 10px;
    line-height: 1.15;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
  }

  .tcp-stats strong {
    font-size: 13px;
    line-height: 1.15;
  }

  .tcp-procedure article {
    grid-template-columns: 1fr;
  }

  .tcp-sidebar {
    position: relative;
    top: auto;
    max-width: none;
  }

  .treatment-card__body,
  .tcp-contact-card,
  .tcp-journey {
    padding: 18px;
    border-radius: 22px;
  }

  .treatments-listing__top h2,
  .treatment-related__head h2,
  .tcp-title-block h1 {
    font-size: 28px;
  }

  .tcp-doctors-carousel.owl-theme .owl-nav,
  .tcp-hospitals-carousel.owl-theme .owl-nav {
    left: 4px;
    right: 4px;
  }
}
