@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Bold.eot');
    src: local('Manrope Bold'), local('Manrope-Bold'),
        url('../fonts/Manrope-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Manrope-Bold.woff2') format('woff2'),
        url('../fonts/Manrope-Bold.woff') format('woff'),
        url('../fonts/Manrope-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Semibold.eot');
    src: local('Manrope Semibold'), local('Manrope-Semibold'),
        url('../fonts/Manrope-Semibold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Manrope-Semibold.woff2') format('woff2'),
        url('../fonts/Manrope-Semibold.woff') format('woff'),
        url('../fonts/Manrope-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Regular.eot');
    src: local('Manrope Regular'), local('Manrope-Regular'),
        url('../fonts/Manrope-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Manrope-Regular.woff2') format('woff2'),
        url('../fonts/Manrope-Regular.woff') format('woff'),
        url('../fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Light.eot');
    src: local('Manrope Light'), local('Manrope-Light'),
        url('../fonts/Manrope-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Manrope-Light.woff2') format('woff2'),
        url('../fonts/Manrope-Light.woff') format('woff'),
        url('../fonts/Manrope-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Thin.eot');
    src: local('Manrope Thin'), local('Manrope-Thin'),
        url('../fonts/Manrope-Thin.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Manrope-Thin.woff2') format('woff2'),
        url('../fonts/Manrope-Thin.woff') format('woff'),
        url('../fonts/Manrope-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Medium.eot');
    src: local('Manrope Medium'), local('Manrope-Medium'),
        url('../fonts/Manrope-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Manrope-Medium.woff2') format('woff2'),
        url('../fonts/Manrope-Medium.woff') format('woff'),
        url('../fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-ExtraBold.eot');
    src: local('Manrope ExtraBold'), local('Manrope-ExtraBold'),
        url('../fonts/Manrope-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Manrope-ExtraBold.woff2') format('woff2'),
        url('../fonts/Manrope-ExtraBold.woff') format('woff'),
        url('../fonts/Manrope-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}


:root {
  --white: #ffffff;
  --teal: #358ba0;
  --teal-light: #4fa8c0;
  --teal-dark: #2a6e81;
  --rose: #9c3a6b;
  --rose-light: #b8517f;
  --rose-dark: #7d2d54;
  --bg: #f7fafb;
  --text: #1e2d32;
  --text-muted: #6b8a95;
  --border: rgba(55,137,159,0.15);
  --shadow: 0 8px 40px rgba(55,137,159,0.12);
  --shadow-hover: 0 16px 20px rgba(55,137,159,0.22);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope';
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Manrope';
  font-weight: 600;
}

.mob { display:none !important }

.my_text h3 { font-size:20px; color:#358ba0; margin-bottom:20px}

/* ─── HEADER ────────────────────────────────── */
.top-bar {
  background: var(--teal);
  color: var(--white);
  padding: 8px 0;
  font-size: 16px;
}
.top-bar a { color: var(--white); text-decoration: none; opacity: 1; transition: opacity .2s }
.top-bar a:hover { opacity: 1; }

.top-bar img { width:20px }

.top-bar .container {
  display: flex;
  justify-content: center;
}

.top-bar .desc {
  margin: 0 auto;
}

.header-time { padding-left:100px }

header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(55,137,159,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  width: 250px
}

.header-contacts {
  display: flex;
  flex-direction: column;
  margin-left: auto;
}
.header-contacts a {
  font-size: 22px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
}
.header-contacts small {
  font-size: 13px;
  color: var(--text-muted);
}

.search-form {
  position: relative;
}
.search-form input {
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: 8px 40px 8px 18px;
  font-family: 'Manrope';
  font-size: 13px;
  outline: none;
  width: 300px;
  transition: var(--transition);
  color: var(--text);
}
.search-form input:focus {
  border-color: var(--teal);
  width: 240px;
}
.search-form button {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--teal); cursor: pointer; font-size: 14px;
}

.btn-appointment {
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-family: 'Manrope';
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(156,58,107,0.3);
  text-decoration: none;
}
.btn-appointment:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(156,58,107,0.4);
}

/* ─── NAV ────────────────────────────────────── */
nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative
}
nav .container {
  position: relative
}
.navbar-custom {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0 0 0 -25px;
  padding: 0;
}
.navbar-custom > li {
  position: relative;
}
.navbar-custom > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 30px 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.navbar-custom > li > a:hover,
.navbar-custom > li:hover > a {
  color: var(--teal);
}
.navbar-custom > li > a i {
  font-size: 10px;
  transition: transform .3s;
}
.navbar-custom > li:hover > a i {
  transform: rotate(180deg);
}

.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  min-width: 250px;
  z-index: 999;
  overflow: hidden;
  border: 1px solid var(--border);
}
.navbar-custom > li:hover .dropdown-menu-custom {
  display: block;
}
.dropdown-menu-custom a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  transition: all .2s;
}
.dropdown-menu-custom a:hover {
  background: var(--bg);
  color: var(--teal);
  padding-left: 26px;
}

.slab_icon { position: absolute; right:20px; top:10px }
.slab_icon svg { transform: scale(1.2) }

/* ─── SECTION TITLES ─────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--rose);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--rose);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  color: var(--text);
}
.section-title span { color: var(--teal); }

/* ─── SLIDER ──────────────────────────────────── */
.slider-section {
  background: var(--bg);
  padding: 20px 0 30px;
}
.slider-wrap {
  border-radius: 28px;
  position: relative;
  box-shadow: var(--shadow);
}
.slide {
  display: none;
  position: relative;
}

.slide img {
  width:100%;
  border-radius:20px
}

.slide.active { display: block; }

.slide-bg {
  width: 100%;
  height: auto;
  display: block;
}

/* Placeholder slides with gradient */
.slide-placeholder {
  height: auto;
  display: flex;
  align-items: center;
}

.slide-content {
  padding: 0 80px;
  color: white;
  max-width: 560px;
}
.slide-content .badge-pill {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
}
.slide-content h2 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: white;
}
.slide-content p {
  font-size: 16px;
  opacity: .85;
  margin-bottom: 32px;
  line-height: 1.6;
}
.slide-deco {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}
.slide-deco::before {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.1);
}

.slider-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.slider-dot.active {
  background: white;
  width: 28px;
  border-radius: 4px;
}
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-prev:hover, .slider-next:hover {
  background: rgba(255,255,255,0.3);
}

.btn-white {
  background: white;
  color: var(--teal);
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: 'Manrope';
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.slider-section  .owl-theme .owl-controls { 
  margin-top:-30px
}

/* ─── SERVICES ───────────────────────────────── */
.services-section {
  padding: 40px 0 80px;
  background: var(--white);
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 260px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(55,137,159,0.1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center !important;
  transition: transform .6s;
}
.service-card:hover .service-card-bg {
  transform: scale(1.05);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,45,50,0.85) 0%, rgba(30,45,50,0.2) 60%, transparent 100%);
  transition: var(--transition);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(55,137,159,0.9) 0%, rgba(55,137,159,0.4) 70%, rgba(55,137,159,0.1) 100%);
}
.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.service-card-content h3 {
  color: white;
  font-size: 20px;
  line-height: 1.2;
}
.service-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
  margin-left: 12px;
  transition: var(--transition);
}
.service-card:hover .service-arrow {
  background: var(--rose);
  color: white;
  transform: translateX(4px);
}
/* Placeholder bg colors for services */
.s1 { background: linear-gradient(135deg, #2a6e81, #4fa8c0); }
.s2 { background: linear-gradient(135deg, #7d2d54, #b8517f); }
.s3 { background: linear-gradient(135deg, #1e4a56, #37899f); }
.s4 { background: linear-gradient(135deg, #5d1e3c, #9c3a6b); }
.s5 { background: linear-gradient(135deg, #0d3d4a, #2a6e81); }
.s6 { background: linear-gradient(135deg, #4a1030, #7d2d54); }

/* ─── ADVANTAGES ─────────────────────────────── */
.advantages-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
  position: relative;
  overflow: hidden;
}
.advantages-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.08);
}
.advantages-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(156,58,107,0.2);
}
.adv-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
  height: 100%;
}
.adv-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.adv-icon {
  width: 64px; height: 64px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: white;
  margin: 0 auto 20px;
}
.adv-icon img {
  width: 48px;
}
.adv-card h4 {
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
}
.adv-card p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
}
.adv-cta {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

/* ─── DOCTORS ────────────────────────────────── */
.doctors-section {
  padding: 60px 0 40px;
  background: var(--bg);
}
.doctor-card {
  background: white;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(55,137,159,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.doctor-photo-placeholder {
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.doctor-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.doctor-photo {
  background-size: cover;
  background-position: top center;
  position: relative;
  overflow: hidden;
}
.doctor-photo-placeholder {
  display: block;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.doctor-photo-placeholder img {
  width: 100%;
}
.doctor-avatar {
  width: 130px;
  height: 160px;
  border-radius: 65px 65px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  color: white;
  position: absolute;
  bottom: 0;
}
.doc-1 .doctor-photo-placeholder { background: linear-gradient(180deg, #d4e8ee, #a8d4dd); }
.doc-2 .doctor-photo-placeholder { background: linear-gradient(180deg, #e8d4de, #d4a8bc); }
.doc-3 .doctor-photo-placeholder { background: linear-gradient(180deg, #d4e8ee, #8fc9d7); }
.doc-4 .doctor-photo-placeholder { background: linear-gradient(180deg, #e8d4de, #c890a8); }
.doc-1 .doctor-avatar, .doc-3 .doctor-avatar { background: linear-gradient(180deg, var(--teal), var(--teal-dark)); }
.doc-2 .doctor-avatar, .doc-4 .doctor-avatar { background: linear-gradient(180deg, var(--rose), var(--rose-dark)); }

.doctor-body {
  padding: 24px;
}
.doctor-body h4 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--text);
}
.doctor-spec {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 14px 0;
}
.doctor-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  padding-left:15px;
  margin-bottom:5px
}
.doctor-spec-item i {
  color: var(--teal);
  width: 16px;
}

/* ─── CAROUSEL NAV ───────────────────────────── */
.carousel-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  background: none;
  color: var(--teal);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.carousel-btn:hover {
  background: var(--teal);
  color: white;
}

/* ─── FORM BLOCK ─────────────────────────────── */



.form-section {
  padding: 80px 0;
  background: #f7fafb;
}
.form-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.form-doctor-side {
  background: linear-gradient(160deg, var(--rose-dark), var(--rose), var(--rose-light));
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 440px;
}
.form-doctor-side::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.form-doctor-side img {
  width:300px
}
.form-doctor-avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  /* background: rgba(255,255,255,0.15);
  border: 3px solid rgba(255,255,255,0.3); */
  font-size: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.form-doctor-avatar img {
  width:220px;
  margin-top:-17px
}
.form-doctor-side h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.form-doctor-side p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.6;
  position: relative; z-index: 1;
}

.form-right-side {
  background: var(--bg);
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-right-side h2 {
  font-size: 36px;
  margin-bottom: 8px;
}
.form-right-side .sub {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 18px;
}

.clinic-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  font-family: 'Manrope';
  font-size: 14px;
  color: var(--text);
  background: white;
  outline: none;
  transition: var(--transition);
  margin-bottom: 16px;
}
.clinic-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(55,137,159,0.1);
}
.clinic-input::placeholder { color: #b0c4cb; }

.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-family: 'Manrope';
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(55,137,159,0.35);
  width: 100%;
}
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(55,137,159,0.45);
}

/* ─── ABOUT ───────────────────────────────────── */
.about-section {
  padding: 0px 0 60px;
  background: var(--bg);
}
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  display: inline-block;
  font-size: 100px;
  position: relative;
}
.about-img-wrap img {
  width: 100%;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.stat-item {
  background: white;
  border-radius: var(--radius-sm);
  padding: 20px;
  border-left: 3px solid var(--teal);
  box-shadow: 0 2px 12px rgba(55,137,159,0.07);
}
.stat-item:nth-child(even) { border-left-color: var(--rose); }
.stat-item strong {
  display: block;
  font-family: 'Manrope';
  font-size: 36px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.stat-item:nth-child(even) strong { color: var(--rose); }
.stat-item span {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* ─── REVIEWS ────────────────────────────────── */
.reviews-section {
  padding: 40px 0;
  background: white;
}
.platform-rating {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  border: 1.5px solid var(--border);
}
.platform-rating:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}
.platform-logo {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.platform-logo img {
  width: 56px;
  border-radius: 14px;
}
.p-yandex { background: linear-gradient(135deg, #fc0, #f90); }
.p-google { background: linear-gradient(135deg, #4285f4, #34a853); }
.p-prodoc { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.platform-info strong { display: block; font-size: 18px; margin-bottom: 0; }
.stars { color: #ffc107; font-size: 28px; }
.stars span { color: var(--text-muted); font-size: 24px; margin-left: 4px; font-weight:700 }

.review-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.reviewer-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  margin-top:-10px
}
.reviewer-avatar img {
  width: 46px;
  border-radius: 50%;
}
.ra-1 { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.ra-2 { background: linear-gradient(135deg, var(--rose), var(--rose-dark)); }
.ra-3 { background: linear-gradient(135deg, var(--teal-dark), #0d3d4a); }

.review-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}
.review-date {
  font-size: 14px;
  color: #aac;
  margin-top: 12px;
}

/* ─── NEWS ───────────────────────────────────── */
.news-section {
  padding: 80px 0;
  background: var(--bg);
}
.news-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(55,137,159,0.07);
  height: 100%;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.news-img {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
}
.n1 { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.n2 { background: linear-gradient(135deg, var(--rose-dark), var(--rose)); }
.n3 { background: linear-gradient(135deg, #1e4a56, var(--teal-dark)); }
.n4 { background: linear-gradient(135deg, #4a1030, var(--rose-dark)); }
.news-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: #37899f;
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
}
.news-body {
  padding: 22px;
}
.news-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.news-body h5 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--text);
}
.news-body p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  margin-top: 14px;
}
.news-link:hover { color: var(--rose); }

/* ─── CONTACTS ───────────────────────────────── */
.contacts-section {
  padding: 40px 0 60px;
  background: white;
}
.contact-info-block {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px;
  height: 100%;
  border: 1.5px solid var(--border);
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item strong { font-weight:500; font-size: 16px; margin-bottom: 2px; color: var(--text-muted); display:block }
.contact-item span { font-weight:700; font-size: 18px }

.hours-table {
  background: white;
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 40px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { color: var(--teal); font-weight: 500; }
.hours-row.weekend span:last-child { color: var(--rose); }

.map-placeholder {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  border-radius: var(--radius);
  height: 100%;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.map-placeholder:hover { box-shadow: var(--shadow-hover); }
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.map-placeholder i { font-size: 60px; opacity: .7; }
.map-placeholder h4 { font-size: 22px; color: white; position: relative; }
.map-placeholder p { font-size: 14px; opacity: .75; position: relative; }
.map-placeholder .map-pin {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  border: 2px solid rgba(255,255,255,0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.2); }
  50% { box-shadow: 0 0 0 20px rgba(255,255,255,0); }
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--teal);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-logo img {
  width:90%
}
.footer-logo p {
  font-size: 16px;
  margin-top: 8px;
  line-height: 1.6;
  opacity: .6;
  max-width: 280px;
}
.footer-col h6 {
  color: white;
  font-family: 'Manrope';
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 16px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--teal-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 48px;
}
.footer-bottom p { font-size: 16px; opacity: .8; color: rgba(255,255,255,0.8); }
.footer-bottom p a { font-size: 16px; opacity: .8; color: rgba(255,255,255,0.8); }

/* ─── UTILITIES ──────────────────────────────── */
.btn-rose {
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: 'Manrope';
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(156,58,107,0.3);
  text-decoration: none;
  display: inline-block;
}
.btn-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(156,58,107,0.45);
  color: white;
}
.btn-outline-teal {
  background: none;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: 'Manrope';
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: white;
}

.news-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.news-carousel-wrap {
  overflow: hidden;
}
.news-carousel-track .news-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
}

.col-footer-right { padding-left: 50px; margin-top:50px }

.footer-link li a { font-size:14px }


/* ─── BREADCRUMBS ─────────────────────────────── */
.breadcrumb-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
}
.breadcrumb-wrap a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb-wrap a:hover { color: var(--teal); }
.breadcrumb-wrap .bc-sep { color: var(--border); font-size: 12px; }
.breadcrumb-wrap .bc-current { color: var(--text); font-weight: 500; }

/* ─── DOCTOR PAGE ─────────────────────────────── */
.doctor-page {
  padding: 52px 0 72px;
  background: var(--white);
}

/* Левая колонка: фото + кнопка */
.doc-photo-col { position: sticky; top: 110px; }

.doc-photo-frame {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #d4e8ee, #8fc9d7);
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
}
.doc-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.doc-photo-frame .doc-avatar-placeholder {
  font-size: 120px;
  padding-bottom: 0;
  color: rgba(255,255,255,0.7);
  line-height: 1;
}

.doc-badge-category {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 10px rgba(55,137,159,0.15);
}
.doc-badge-category i { font-size: 13px; color: var(--rose); }

.btn-zapis {
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
  color: white; border: none;
  padding: 16px 0;
  border-radius: 18px;
  font-family: 'Manrope'; font-size: 19px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 6px 22px rgba(156,58,107,0.32);
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 22px;
  text-decoration: none;
}
.btn-zapis:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(156,58,107,0.42);
  color: white;
}

.doc-price-block {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.doc-price-block .price-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.doc-price-block .price-val {
  font-size: 24px;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}
.doc-price-block .price-val span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

/* Правая колонка: информация */
.doc-info-col {}

.doc-spec-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(53,139,160,0.1);
  color: var(--teal);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: .3px;
}
.doc-spec-tag i { font-size: 14px; }

.doc-fio {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 700;
}

.doc-nauch {
  font-size: 16px;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.doc-nauch i { font-size: 14px; }

/* Блок стажа и характеристик */
.doc-stats-row {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.doc-stat-pill {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 160px;
}
.doc-stat-pill .pill-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px; flex-shrink: 0;
}
.doc-stat-pill:nth-child(2) .pill-icon {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
}
.doc-stat-pill:nth-child(3) .pill-icon {
  background: linear-gradient(135deg, var(--teal-dark), #0d3d4a);
}
.doc-stat-pill .pill-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.doc-stat-pill .pill-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Описание */
.doc-about-block {
  margin-bottom: 36px;
}
.doc-about-block h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.doc-about-block h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.doc-about-block p {
  font-size: 17px;
  line-height: 1.75;
  color: #3d5560;
}

/* Образование */
.edu-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.edu-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), rgba(53,139,160,0.1));
  border-radius: 2px;
}
.edu-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}
.edu-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  position: relative;
  z-index: 1;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 2px 10px rgba(55,137,159,0.15);
}
.edu-body {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  flex: 1;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  transition: border-color .2s;
}
.edu-item:hover .edu-body {
  border-color: var(--teal);
}

/* Боковая кнопка записи — мобильная */
.mobile-zapis-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  padding: 14px 20px;
  box-shadow: 0 -4px 20px rgba(55,137,159,0.15);
  z-index: 900;
}

.footer-col-top { margin-top:30px }

.clinic-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-clinic {
 color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 14px 36px;
  border-radius: 30px;
  font-family: 'Manrope';
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);

}

.btn-clinic:hover, .btn-clinic.active {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: #fff;
    border: 1.5px solid var(--teal);
}

.btn-clinic:focus {
    outline: none;
}

#clinic-widget-render-zone .medflex-prices-widget {
    max-width: 100% !important;
    width: 100% !important;
}

#clinic-widget-render-zone {
    max-width: 100% !important;
    width: 100% !important;
    height: 940px !important; 
    overflow: hidden !important;
    position: relative;
}

#clinic-widget-render-zone iframe {
    max-width: 100% !important;
    width: 100% !important;
    min-height: 1006px !important; 
}

@media (max-width: 768px) {
  .news-carousel-track .news-card {
    flex: 0 0 calc(100% - 0px);
    min-width: calc(100% - 0px);
  }

  .desc { display:none !important }
  .mob { display:block !important }

  .footer-col-top { margin-top:0; margin-bottom:30px }

}

.doctors-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(0.25, 0.8, 0.25, 1);
  align-items: stretch;
  padding-bottom:15px
}
.doctors-carousel-wrap {
  overflow: hidden;
  padding: 20px;
  margin: -20px;
}
.doctors-carousel-track .doctor-card {
  flex: 0 0 calc(25% - 18px);
  min-width: calc(25% - 18px);
  display: flex;
  flex-direction: column;
  height: auto;
}
.doctor-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.doctor-body .btn-rose {
  margin-top: auto;
}
@media (max-width: 992px) {
  .doctors-carousel-track .doctor-card {
    flex: 0 0 calc(100% - 12px);
    min-width: calc(100% - 12px);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--teal);
  cursor: pointer;
  position: absolute;
  right:20px
}
@media (max-width: 991px) {
  .nav-toggle { display: block; }
  .navbar-custom { display: none; flex-direction: column; width: 100%; }
  .navbar-custom.open { display: flex; }
  .navbar-custom > li > a { padding: 10px 16px; }
  .dropdown-menu-custom { position: static; box-shadow: none; border: none; background: var(--bg); }
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .search-form input { width: 150px; }
  .slide-content { padding: 0 40px; }
  .slide-content h2 { font-size: 32px; }
  .slide-deco { display: none; }
  .doc-photo-col { position: static; }
  .doc-stats-row { flex-direction: column; }
  .doc-stat-pill { min-width: 0; }
}

/* ─── HERO УСЛУГИ ─────────────────────────────── */
.service-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 55%, var(--teal-light) 100%);
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.08);
}
.service-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.08);
}
.service-hero-inner { position: relative; z-index: 1; }
.service-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white; border-radius: 30px;
  padding: 6px 18px; font-size: 14px; font-weight: 600;
  margin-bottom: 20px; letter-spacing: .3px;
}
.service-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
}
.service-hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
}
.service-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.service-hero-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
/* .service-hero-icon-circle {
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 96px;
  color: white;
  position: relative;
} */
/* 
.service-hero-icon-circle::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.12);
} */
 .service-hero-icon-circle img {
  border-radius: 20px;
  box-shadow: var(--shadow);
 }
.service-hero-stats {
  display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap;
}
.hero-stat-pill {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 12px 20px;
  color: white;
  text-align: center;
  flex: 1;
  min-width: 110px;
}
.hero-stat-pill .pill-num {
  font-size: 26px; font-weight: 700; line-height: 1;
}
.hero-stat-pill .pill-txt {
  font-size: 12px; opacity: .8; margin-top: 4px;
}

.branch-body p {
  font-size: 14px;
}

.branch-body ul li {
  font-size: 14px;
}

/* ─── О УСЛУГЕ (основной текст) ───────────────── */
.service-main-section {
  padding: 72px 0;
  background: var(--white);
}
.service-text-block p {
  font-size: 17px;
  line-height: 1.8;
  color: #3d5560;
  margin-bottom: 20px;
}
.service-text-block p:last-child { margin-bottom: 0; }

/* Боковая карточка записи (sticky sidebar) */
.service-sidebar { position: sticky; top: 110px; }
.service-cta-card {
  background: var(--bg);
  border-radius: 24px;
  border: 1.5px solid var(--border);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.service-cta-card .cta-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.service-cta-card .cta-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.service-cta-card .clinic-input { margin-bottom: 12px; }
.service-price-pill {
  display: flex; align-items: center; justify-content: space-between;
  background: white; border-radius: 14px;
  border: 1.5px solid var(--border);
  padding: 14px 18px; margin-bottom: 16px;
}
.service-price-pill .price-from { font-size: 13px; color: var(--text-muted); }
.service-price-pill .price-num { font-size: 22px; font-weight: 700; color: var(--teal); }
.service-price-pill .price-num span { font-size: 14px; font-weight: 400; color: var(--text-muted); }

/* ─── ПОКАЗАНИЯ ───────────────────────────────── */
.service-indications {
  padding: 72px 0;
  background: var(--bg);
}
.indications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.indication-item {
  background: white;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  font-size: 16px;
  color: var(--text);
  line-height: 1.4;
}
.indication-item:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(55,137,159,0.1);
  transform: translateX(4px);
}
.indication-check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; flex-shrink: 0;
}

/* ─── ПРЕИМУЩЕСТВА УСЛУГИ ─────────────────────── */
.service-advantages {
  padding: 72px 0;
  background: var(--white);
}
.service-adv-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-adv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--teal), var(--teal-light));
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity .3s;
}
.service-adv-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-adv-card:hover::before { opacity: 1; }
.service-adv-card:nth-child(2n) { border-top: 3px solid var(--rose-light); }
.service-adv-card:nth-child(2n)::before { background: linear-gradient(to bottom, var(--rose), var(--rose-light)); }
.service-adv-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: white;
  margin-bottom: 20px;
}
.service-adv-card:nth-child(2n) .service-adv-icon {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
}
.service-adv-card h4 { font-size: 18px; color: var(--text); margin-bottom: 10px; }
.service-adv-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ─── ПРАЙС / ПРОЦЕДУРЫ ───────────────────────── */
.service-prices {
  padding: 72px 0;
  background: var(--bg);
}
.price-table {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-top: 40px;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--bg); }
.price-row-head {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: white; font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 14px 28px; cursor: default;
}
.price-row-head:hover { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.price-name { font-size: 16px; color: var(--text); font-weight: 500; }
.price-time { font-size: 14px; color: var(--text-muted); white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.price-time i { color: var(--teal); }
.price-val { font-size: 20px; font-weight: 700; color: var(--teal); white-space: nowrap; }
.price-val span { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.price-action { display: flex; justify-content: center; padding: 28px; background: var(--bg); border-top: 1px solid var(--border); }

/* ─── ВРАЧИ УСЛУГИ ────────────────────────────── */
.service-doctors {
  padding: 72px 0;
  background: var(--white);
}
.service-doc-card {
  background: var(--bg);
  border-radius: 20px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
}
.service-doc-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-doc-photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: white;
  overflow: hidden;
}
.service-doc-photo img { width: 100%; height: 100%; object-fit: cover; }
.service-doc-info { flex: 1; min-width: 0; }
.service-doc-info h5 { font-size: 17px; color: var(--text); margin-bottom: 4px; }
.service-doc-spec { font-size: 14px; color: var(--teal); font-weight: 500; margin-bottom: 8px; min-height:40px; line-clamp: 2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden; }
.service-doc-stazh {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; border-radius: 20px;
  padding: 4px 12px; font-size: 12px; color: var(--text-muted);
  border: 1px solid var(--border);
}
.service-doc-stazh i { color: var(--teal); font-size: 12px; }
.service-doc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 5px;
    float: right; /* Прижимает вправо */
    transition: color .2s;
}

/* Очистка потока после родителя */
.parent::after {
    content: '';
    display: table;
    clear: both;
}
.service-doc-link:hover { color: var(--rose); }

/* ─── FAQ ─────────────────────────────────────── */
.service-faq {
  padding: 72px 0;
  background: var(--bg);
}
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item.open { border-color: var(--teal); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  font-size: 17px; font-weight: 600; color: var(--text);
  user-select: none;
}
.faq-question i {
  font-size: 18px; color: var(--teal); flex-shrink: 0;
  transition: transform .35s;
}
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  font-size: 16px; color: var(--text-muted); line-height: 1.75;
  padding: 0 26px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 26px 22px; }

@media (max-width: 991px) {
  .service-sidebar { position: static; }
  .service-hero-icon-wrap { display: none; }
}

@media (max-width: 768px) {

  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  * {
    box-sizing: border-box;
  }

  .service-doc-card { flex-direction: column; text-align: center; }
  .service-doc-info { display: flex; flex-direction: column; align-items: center; }

  .about-section {
    padding: 0 0 80px;
  }

}

.akcii-hero {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 55%, var(--rose-light) 100%);
  padding: 56px 0 60px;
  position: relative; overflow: hidden;
}
.akcii-hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 560px; height: 560px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.08);
}
.akcii-hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(55,137,159,0.15);
}
.akcii-hero-inner { position: relative; z-index: 1; }
.akcii-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25); color: white; border-radius: 30px;
  padding: 6px 18px; font-size: 14px; font-weight: 600;
  margin-bottom: 20px; letter-spacing: .3px;
}
.akcii-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1; color: white; margin-bottom: 20px; font-weight: 700;
}
.akcii-hero-desc {
  font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.7; max-width: 580px; margin-bottom: 36px;
}
.hero-stat-pill {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 14px;
  padding: 12px 20px; color: white; text-align: center; flex: 1; min-width: 110px;
}
.hero-stat-pill .pill-num { font-size: 26px; font-weight: 700; line-height: 1; }
.hero-stat-pill .pill-txt { font-size: 12px; opacity: .8; margin-top: 4px; }
.hero-stats { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-white {
  background: white; color: var(--rose); border: none;
  padding: 12px 28px; border-radius: 30px;
  font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 600;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition); box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: var(--rose); }

/* ─── FILTER TABS ────── */
.filter-section { background: var(--bg); padding: 12px 0 8px; border-bottom: 1px solid var(--border); }
.filter-tabs { display: flex; gap: 12px; flex-wrap: wrap; padding-bottom: 0; }
.filter-tab {
  padding: 9px 22px; border-radius: 30px;
  font-size: 15px; font-weight: 600; font-family: 'Manrope', sans-serif;
  cursor: pointer; border: 1.5px solid var(--border);
  background: white; color: var(--text-muted);
  transition: var(--transition); margin-top:10px; margin-right:5px
}
.filter-tab:hover { border-color: var(--teal); color: var(--teal); }
.filter-tab.active {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-color: var(--teal); color: white;
  box-shadow: 0 4px 14px rgba(55,137,159,0.3);
}

/* ─── PROMO CARDS ─────── */
.akcii-section { padding: 60px 0 80px; background: var(--white); }

.promo-card {
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 20px rgba(55,137,159,0.07);
}
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal);
}

.promo-card-img {
  position: relative;
}
.promo-card-img img {
  width:100%
}
.promo-card-body {
  padding: 24px 24px 20px; flex: 1; display: flex; flex-direction: column;
}
.promo-category {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: var(--teal); margin-bottom: 10px;
}
.promo-card-body h3 {
  font-size: 20px; line-height: 1.3; color: var(--text); margin-bottom: 20px;
}
.promo-card-body p {
  font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 10px
}
.promo-card-body .otst {
  flex: 1;
}

/* Цена */
.promo-price-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.promo-price-new {
  font-size: 24px; font-weight: 800; color: var(--teal);
}
.promo-price-old {
  font-size: 16px; color: var(--text-muted); text-decoration: line-through;
}
.promo-price-currency { font-size: 14px; color: var(--text-muted); }

/* Срок */
.promo-deadline {
  display: flex; align-items: center; gap: 15px;
  background: var(--bg); border-radius: 12px; padding: 10px 14px;
  margin-bottom: 20px; margin-top: 20px; border: 1px solid var(--border);
}
.promo-deadline i { color: var(--rose); font-size: 14px; }
.promo-deadline-label { font-size: 12px; color: var(--text-muted); }
.promo-deadline-date { font-size: 14px; font-weight: 600; color: var(--text); }
.promo-deadline-urgent { color: var(--rose); }

/* Кнопка записи */
.btn-book {
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
  color: white; border: none; padding: 13px 24px; border-radius: 30px;
  font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 14px rgba(156,58,107,0.3);
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-book:hover {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(156,58,107,0.45);
}

/* ─── FEATURED / БОЛЬШАЯ КАРТОЧКА ─── */
.promo-card-featured {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  border-radius: var(--radius);
  padding: 44px 48px;
  display: flex; align-items: center; gap: 48px;
  position: relative; overflow: hidden;
  margin-bottom: 40px;
  border: none;
}
.promo-card-featured::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.08);
}
.promo-card-featured::after {
  content: '';
  position: absolute; bottom: -60px; left: 200px;
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(156,58,107,0.2);
}
.featured-content { flex: 1; position: relative; z-index: 1; }
.featured-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3); color: white;
  border-radius: 30px; padding: 6px 18px; font-size: 13px; font-weight: 600;
  margin-bottom: 16px;
}
.featured-content h2 { font-size: clamp(24px, 3vw, 38px); color: white; margin-bottom: 12px; }
.featured-content p { font-size: 16px; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 24px; }
.featured-price {
  display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px;
}
.featured-price-new { font-size: 44px; font-weight: 800; color: white; line-height: 1; }
.featured-price-old { font-size: 20px; color: rgba(255,255,255,0.5); text-decoration: line-through; }
.featured-deadline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px; padding: 8px 16px; color: rgba(255,255,255,0.85); font-size: 14px;
  margin-bottom: 28px;
}
.featured-deco {
  position: relative; z-index: 1; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.featured-deco-circle {
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: rgba(255,255,255,0.6);
}

/* ─── CTA BANNER ──────── */
.cta-banner {
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
  border-radius: var(--radius); padding: 44px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  margin-top: 56px; position: relative; overflow: hidden; margin-bottom:-70px
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.cta-banner-text { position: relative; z-index: 1; }
.cta-banner-text h3 { font-size: 28px; color: white; margin-bottom: 8px; }
.cta-banner-text p { font-size: 16px; color: rgba(255,255,255,0.8); }
.cta-banner-btn { position: relative; z-index: 1; flex-shrink: 0; }


@media (max-width: 991px) {
  .promo-card-featured { flex-direction: column; padding: 32px; }
  .featured-deco { display: none; }
  .cta-banner { flex-direction: column; text-align: center; padding: 32px; }
  .mobile-zapis-bar { display: block; }
  .modal-box { padding: 32px 24px; }
}
@media (max-width: 768px) {
  .filter-tabs { gap: 6px; }
  .filter-tab { font-size: 13px; padding: 8px 16px; }
}

.contacts-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 55%, var(--teal-light) 100%);
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}
.contacts-hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 560px; height: 560px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.08);
}
.contacts-hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(156,58,107,0.18);
}
.contacts-hero-inner { position: relative; z-index: 1; }
.contacts-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25); color: white; border-radius: 30px;
  padding: 6px 18px; font-size: 14px; font-weight: 600;
  margin-bottom: 20px; letter-spacing: .3px;
}
.contacts-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1; color: white; margin-bottom: 20px; font-weight: 700;
}
.contacts-hero-desc {
  font-size: 18px; color: rgba(255,255,255,0.85);
  line-height: 1.7; max-width: 580px; margin-bottom: 0;
}
.contacts-hero-stats { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-stat-pill {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 14px;
  padding: 12px 20px; color: white; text-align: center; flex: 1; min-width: 110px;
}
.hero-stat-pill .pill-num { font-size: 26px; font-weight: 700; line-height: 1; }
.hero-stat-pill .pill-txt { font-size: 12px; opacity: .8; margin-top: 4px; }

/* ─── BRANCH CARDS ───────── */
.branches-section { padding: 80px 0 0; background: var(--white); }

.branch-card {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.branch-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.branch-header {
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--border);
  background: white;
}
.branch-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white; font-size: 18px; font-weight: 700;
  margin-bottom: 14px;
}
.branch-card:nth-child(2) .branch-num {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
}
.branch-header h3 { font-size: 22px; color: var(--text); margin-bottom: 4px; }
.branch-header p { font-size: 14px; color: var(--text-muted); }

.branch-body { padding: 28px 32px; }

.branch-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 18px;
}
.branch-info-item:last-child { margin-bottom: 0; }
.branch-info-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(55,137,159,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 16px;
}
.branch-card:nth-child(2) .branch-info-icon {
  background: rgba(156,58,107,0.08);
  color: var(--rose);
}
.branch-info-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.branch-info-value { font-size: 16px; color: var(--text); font-weight: 500; line-height: 1.5; }
.branch-info-value a { color: var(--teal); text-decoration: none; }
.branch-info-value a:hover { text-decoration: underline; }
.branch-card:nth-child(2) .branch-info-value a { color: var(--rose); }

.branch-actions {
  padding: 20px 32px 28px;
  display: flex; gap: 10px; flex-wrap: wrap;
}

/* ─── MAP ─────────────── */
.map-section { padding: 0 0 80px; background: var(--white); }
.map-tabs {
  display: flex; gap: 0; border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
}
.map-tab {
  padding: 14px 32px; font-size: 16px; font-weight: 600;
  color: var(--text-muted); cursor: pointer; border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: color .2s, border-color .2s;
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: 'Manrope', sans-serif;
}
.map-tab.active { color: var(--teal); border-bottom-color: var(--teal); }
.map-tab:hover { color: var(--teal); }
.map-panel { display: none; }
.map-panel.active { display: block; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  height: 420px;
  background: #e8f3f7;
  position: relative;
}
/* Placeholder карты */
.map-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #e0eff4, #cde4ec);
  font-size: 64px; color: var(--teal);
}
.map-placeholder p { font-size: 16px; color: var(--text-muted); font-family: 'Manrope', sans-serif; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

.map-address-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border-radius: 14px; padding: 10px 18px;
  border: 1.5px solid var(--border); font-size: 15px; color: var(--text);
  margin-bottom: 16px;
}
.map-address-chip i { color: var(--teal); }


@media (max-width: 768px) {
  .map-tab { padding: 12px 18px; font-size: 14px; }
}