
/* Hero услуги на странице single service */
.service-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 10% 4px;
  background-color: #ffffff;
  font-family: 'Open Sans', sans-serif;
}

.service-hero .container {
  max-width: 900px;
  width: 100%;
  display: block;
}

/* === Стили без фото (как promo-hero) === */
.service-hero h1 {
  font-size: 32px;
  margin-top: 15px;
  margin-bottom: 30px;
  color: #333;
}

.service-hero .lead-text {
  font-size: 20px;
  color: #555;
  margin-bottom: 35px;
}

.service-hero .btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #B77F41;
  color: #fff;
  font-size: 24px;

  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  width: auto;
  transition: 0.3s;
}

.service-hero .btn:hover {
  background-color: #A06D38;
}

/* === Режим С фотографией === */
.service-hero--with-image {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.service-hero--with-image .container {
  flex: 1 1 60%;
}

.service-hero--with-image h1 {
  font-size: clamp(18px, calc(1rem + 2vw), 36px);
  line-height: 1.2;
  max-width: 520px;
}

.service-hero--with-image .lead-text {
  font-size: clamp(15px, calc(0.8rem + 1vw), 20px);
  max-width: 80%;
}

.service-hero--with-image .btn {
  font-size: 16px;
  padding: 10px 24px;
}

/* Hero изображение */
.hero-image {
  flex: 0 0 35%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* === Адаптив === */
@media (max-width: 980px) {
  .service-hero h1 { font-size: 28px; }
}

@media (max-width: 792px) {
  .service-hero {
    padding: 60px 6% 30px;
  }
  .service-hero h1 { font-size: 26px; margin-bottom: 28px; }
}

@media (max-width: 900px) {
  .service-hero--with-image {
    flex-direction: column;
    gap: 20px;
  }
  .hero-image {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .service-hero h1 { font-size: 22px; }
  .service-hero .lead-text { font-size: 16px; }
  .service-hero .btn {
    font-size: 18px;
    padding: 10px 24px;
  }
}

@media (max-width: 480px) {
  .service-hero {
    padding: 20px 20px 10px;
  }
  .service-hero h1 {
    margin-top: 8px;
    margin-bottom: 14px;
  }
  .service-hero .lead-text {
    margin-bottom: 18px;
  }
}

@media (max-width: 375px) {
  .service-hero h1 {
    font-size: 24px;
    margin-top: 6px;
    margin-bottom: 10px;
  }
  .service-hero .lead-text {
    margin-bottom: 14px;
  }
}
/* === HERO С ЦЕНАМИ === */
.service-hero--price {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 60px 10% 40px !important;
    gap: 40px;
    flex-wrap: nowrap !important;
}

.service-hero--price .content {
    max-width: 52%;
    flex-shrink: 0;
}

/* Блок цен */
.hero-price-block {
    flex-shrink: 0;
    width: 380px;
    background: #fff;
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 8px 32px rgba(178,118,60,0.13);
    border: 1.5px solid #f3e8d8;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-price-title {
    font-size: 18px;
    font-weight: 700;
    color: #b2763c;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-price-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}

.hero-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0e8df;
}
.hero-price-row:last-child {
    border-bottom: none;
}

.hero-price-zone {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    flex: 1;
}

.hero-price-value {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-price-from {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}
.hero-price-from strong {
    color: #b2763c;
    font-size: 36px;
}




.service-hero:not(.service-hero--price) {
    flex-direction: column;
}

/* Адаптив */
@media (max-width: 1100px) {
    .hero-price-block {
        width: 320px;
        padding: 22px 24px;
    }
}

@media (max-width: 900px) {
    .service-hero--price {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 30px 6% 30px !important;
        gap: 10px;
    }
    .service-hero--price .content {
        max-width: 100%;
    }
    .hero-price-block {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-price-title { font-size: 15px; }
    .hero-price-zone  { font-size: 13px; }
    .hero-price-value { font-size: 14px; }
        .service-hero--price {
        padding-top: 80px !important;
    }
}

/* === ПОКАЗАНИЯ И ПРОТИВОПОКАЗАНИЯ === */
.service-indications-contra {
  padding: 4px 10% 4px;
}

.service-indications-contra .indications-contra-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-indications-contra .indications-block,
.service-indications-contra .contraindications-block {
  flex: 1 1 45%;
  background-color: #F9F9F9;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.service-indications-contra h2 {
  font-size: clamp(16px, 1.2rem + 0.3vw, 20px);
  margin-bottom: 10px;
  color: #333;
  text-align: center;
}

.service-indications-contra ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}

.service-indications-contra li {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .service-indications-contra {
    padding: 12px 6% 6px;
  }
  .service-indications-contra .indications-block,
  .service-indications-contra .contraindications-block {
    flex: 1 1 100%;
  }
}


/* === КАК ПРОХОДИТ ПРОЦЕДУРА === */
.service-steps {
  padding: 2px 10%;
}

.service-steps h2 {
  text-align: center;
  margin-bottom: 14px;
  font-size: clamp(18px, 1.3rem + 0.5vw, 24px);
}

.service-steps .steps-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; 
  gap: 8px;
  padding-left: 0;
}

.service-steps .step-card {
  background-color: #F9F9F9;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-size: 1rem;
  text-align: left;
  width: 100%;
  max-width: 680px; 
}

.service-steps .step-card h3 {
  margin-top: 0;
  margin-bottom: 4px;
  font-size: 1rem;
  color: #333;
}

.service-steps .step-card p {
  margin: 0;
  line-height: 1.5;
  color: #555;
}

@media (max-width: 768px) {
  .service-steps {
    padding: 8px 6%;
  }
  .service-steps .step-card {
    max-width: 100%;
  }
}


/* === РЕЗУЛЬТАТ И КУРС === */
.service-result-course {
  padding: 8px 10% 4px;
}

.service-result-course .result-course-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-result-course .result-block,
.service-result-course .course-block {
  flex: 0 0 auto;
  background: linear-gradient(135deg, #fdf6ee 0%, #f5e9d6 100%);
  border-left: 4px solid #B77F41;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 1rem;
  color: #333;
  text-align: center;
}

.service-result-course .result-block strong,
.service-result-course .course-block strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #B77F41;
  margin-bottom: 6px;
}

.service-result-course p {
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .service-result-course {
    padding: 8px 6% 12px;
  }

}


/* === СТОИМОСТЬ === */
.service-price {
  padding: 4px 10% 24px;
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.service-price h2 {
  font-size: clamp(18px, 1.5vw, 26px);
  margin-bottom: 14px;
  text-align: left;
  color: #333;
}

.service-price table {
  width: 100%;
  border-collapse: collapse;
}

.service-price thead th {
  text-align: left;
  font-weight: 600;
  padding: 10px 12px;
  border-bottom: 2px solid #ddd;
  color: #333;
}

.service-price tbody td {
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  color: #555;
  font-size: 14px;
}

.service-price tbody td:nth-child(1) {
  max-width: 50%;
}

@media (max-width: 900px) {
  .service-price h2 { font-size: 22px; }
}

@media (max-width: 480px) {
  .service-price {
    padding: 12px 5% 20px;
  }
  .service-price h2 { font-size: 20px; }
  .service-price tbody td:nth-child(1) { max-width: 100%; }
}


.doctors-title {
  text-align: center;
  font-size: clamp(24px, 2vw, 36px);
  margin-bottom: 40px;
  color: #333;
}

.doctors-section-cta .button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #b2763c;
  color: #fff;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: .3s;
  margin-top: 20px;
}

.doctors-section-cta .button:hover {
  background-color: #945f2f;
}
.doctors-section-cta {
  background-color: #fff;
  padding: 60px 10%;
  text-align: center; 
}

.doctors-section-cta p {
  font-size: clamp(20px, 2vw, 32px); 
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}
