@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');



/* Базовые настройки */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  color: #222;
}

/* Контейнер */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== Верхняя строка ===== */
.table-topbar {
  background: #f7f8fa;
  border-bottom: 1px solid #e3e3e3;
  font-size: 14px;
}
.table-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8px 0;
}

/* Левая часть */
.table-topbar-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.table-logo img {
  display: block;
}
.table-slogan-title {
  font-size: 14px;
  color: #555;
  font-weight: 300;
}

/* Правая часть */
.table-topbar-right {
  display: flex;
  align-items: center;
  gap: 65px;
  flex-wrap: wrap;
}
.table-hours-time {
  color: #000;
}
.table-hours-sub {
  font-size: 12px;
  color: #777;
}
.table-address-line {
  font-weight: bold;
}
.table-address-city {
  font-size: 12px;
  color: #777;
}

/* Соц иконки */
.table-socials {
  display: flex;
  gap: 8px;
}
.table-social svg {
  fill: #4069e1;
}
.table-social:hover svg {
  fill: #2f4db7;
}
.table-social img {
    width:25px;
}
/* Контакты */
.table-phone {
    font-weight: 700;
    color: #000;
    text-decoration: none;
    font-size: 18px;
}
.table-request {
    font-size: 14px;
    color: #4069e1;
    text-decoration: underline;
    display: block;
    text-align: right;
    font-weight: 600;
}
.table-request:hover {
  color: #2f4db7;
}
.my-swiper,
.doctors-swiper {
    padding-bottom: 60px !important;
}
/* ===== Нижняя строка (навигация) ===== */
.table-navbar {
    background: #fff;
    /* border-bottom: 1px solid #e3e3e3; */
    -webkit-box-shadow: 0 10px 24px rgba(77, 99, 147, 0.1);
    box-shadow: 0 10px 24px rgba(77, 99, 147, 0.1);
}
.table-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
}

/* Бургер */
.table-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.table-burger-line {
  width: 24px;
  height: 3px;
  background: #222;
  display: block;
  border-radius: 2px;
}

/* Меню */
/* Основное меню */
.table-menu {
  display: flex;
}
.table-menu-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.table-menu-list li {
  position: relative; /* для позиционирования подменю */
}
.table-menu-list a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  padding: 10px 5px;
  display: inline-block;
}
.table-menu-list a:hover {
  color: #4069e1;
}

/* Подменю */
.table-menu-list .sub-menu {
  display: none;
  position: absolute;
  top: 100%; /* под родителем */
  left: 0;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  list-style: none;
  padding: 10px 0;
  min-width: 180px;
  z-index: 100;
}
.table-menu-list .sub-menu li {
  width: 100%;
}
.table-menu-list .sub-menu li a {
  padding: 8px 15px;
  display: block;
  color: #000;
}
.table-menu-list .sub-menu li a:hover {
  background: #f0f0f0;
  color: #4069e1;
}

/* Показываем подменю на hover */
.table-menu-list li:hover > .sub-menu {
  display: block;
}

/* Поиск */
.table-search-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  margin-left: 20px;
}
.table-search-btn img {
  width: 18px;
}
/* CTA */
.table-cta-btn {
  background: #4169E2;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 41px;
  font-weight: bold;
  margin-left: 20px;
  display: inline-block;
}
.table-cta-btn:hover {
  background: #4069e1;
}
.sub-menu li .sub-menu{
    left: 179px;
        min-width: 220px;
    padding-top: 0;

    top: 0;
}
.sub-menu li  .sub-menu li {
  border-bottom: 1px solid #ccc;
}
.sub-menu li  .sub-menu li a{
    padding: 9px 15px !important;

 
}
.sub-menu li a{
    font-size: 14px;
}

/* ===== Адаптив ===== */
@media (max-width: 820px) {
  .table-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .table-topbar-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .table-navbar-inner {
    flex-wrap: wrap;
  }

  /* Бургер показываем */
  .table-burger {
    display: flex;
  }

  /* Меню скрыто по умолчанию */
  .table-menu {
    display: none;
    width: 100%;
  }
  .table-menu.is-open {
    display: block;
    margin-top: 15px;
  }
  .table-menu-list {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .table-search-btn,
  .table-cta {
    margin-top: 10px;
  }
}





 .hero-slider { padding: 40px 0; }
  .swiper.my-swiper { position: relative; }
  .swiper.my-swiper .swiper-wrapper { align-items: center; }

  .slide-inner {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 28px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(2,12,34,0.06);
    position: relative;
  }

  /* Левая часть (текст) */
  .slide-left { flex: 1 1 55%; }
  .slide-title {
    font-size: 44px;
    margin-bottom: 18px;
    color: var(--text);
    line-height: 1.05;
  }
  .price-row { display:flex; gap:14px; align-items:center; margin-bottom:14px; }
  .price-old {
    padding:8px 16px;
    border-radius: 30px;
    border:1px solid #ddd;
    color:#888;
    background: #fff;
    position: relative;
  }
  .price-old::after{
    content:'';
    position:absolute;
    left:8px; right:8px; top:50%;
    height:2px; background:#cfcfcf;
    transform:translateY(-50%) rotate(-7deg);
  }
  .price-new{
    padding:8px 16px;
    border-radius:30px;
    background:#4169e26e;
    color:#4169E2;
    border:1px solid #4169E2;
    font-weight:700;
  }
  .slide-desc {
    color:#555;
    margin-bottom:22px;
    max-width:640px;
  }

  .slide-actions { display:flex; gap:18px; margin-top:8px; }
  .btn { text-decoration:none; padding:12px 20px; border-radius:10px; display:inline-block; font-weight:700; }
  .btn-outline {
    background:var(--accent-2);
    color:#fff;
  }
  .btn-primary {
    background:#4169E2;
    color:#fff;
  }

  /* Правая часть (картинка) */
  .slide-right { flex: 1 1 45%; display:flex; justify-content:center; }
  .img-frame {
    width:100%;
    max-width:520px;
    border-radius:16px;
    padding:14px;
    background: linear-gradient(180deg,#fff,#fafafa);
    border:6px solid rgba(255,255,255,0.6);
    box-shadow: 0 8px 30px rgba(2,12,34,0.06);
    position: relative;
  }
  .img-frame img {
    display:block;
    width:100%;
    height:auto;
    border-radius:10px;
    object-fit:cover;
    border:6px solid rgba(255,255,255,0.9);
  }

  /* Кастомные стрелки */
  .custom-nav {
    width:54px;
    height:54px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 6px 24px rgba(16,24,40,0.12);
    border:1px solid rgba(0,0,0,0.04);
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index: 20;
    cursor:pointer;
  }
  .my-swiper .swiper-button-prev { left: -28px; }
  .my-swiper .swiper-button-next { right: -28px; }

  /* Изменяем стрелку (внутри Swiper рисует псевдо-элементы). Скрываем стандарт и вставляем свои иконки: */
.my-swiper  .swiper-button-prev::after,
.my-swiper  .swiper-button-next::after { display:none; }

.my-swiper  .swiper-button-prev::before,
.my-swiper  .swiper-button-next::before {
    /* не используется, но оставляем на будущее */
  }

  .my-swiper  .swiper-button-prev::after,
   .my-swiper .swiper-button-next::after { content: none; }

  /* добавим иконки через псевдоэлементы */
.my-swiper   .swiper-button-prev::before {
    content: '‹';
    font-size: 26px;
    color: #111;
    position: relative;
    left: 1px;
  }
.my-swiper  .swiper-button-next::before {
    content: '›';
    font-size: 26px;
    color: #111;
    position: relative;
    left: -1px;
  }

  /* Пагинация (точки) */
.my-swiper   .swiper-pagination { text-align:center; margin-top:18px; }
.my-swiper  .swiper-pagination-bullet { width:10px; height:10px; opacity:0.4; }
.my-swiper  .swiper-pagination-bullet-active { opacity:1; transform:scale(1.1); }

  /* Адаптив */
  @media (max-width: 1024px) {
    .slide-title { font-size:36px; }
    .slide-inner { padding:22px; }
  }
  @media (max-width: 820px) {
    .slide-inner { flex-direction:column; gap:18px; padding:18px; }
    .slide-left, .slide-right { flex-basis: 100%; }
   .my-swiper .swiper-button-prev { left: 10px; top: auto; bottom: 90px; transform: none; }
  .my-swiper  .swiper-button-next { right: 10px; top: auto; bottom: 90px; transform: none; }
    .custom-nav { width:48px; height:48px; }
    .slide-title { font-size: 28px; }
    .img-frame { max-width:100%; }
  }

/* ===== Наши направления ===== */
.directions {
  padding: 60px 0;
  background: #fff;
}

.directions-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: left;
  color: #222;
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px 30px;
}

.direction-item {
    display: flex
;
    align-items: center;
    gap: 18px;
    padding-left: 115px;
    border-radius: 18px;
    background: #f7f8fa;
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s 
ease;
    position: relative;
    min-height: 125px;
}
.direction-item:hover {
  background: #edf0f8;
}
.direction-img {
    width: 99px;
    height: 122px;
    flex-shrink: 0;
    border-radius: 0 100% 100% 0px;
    overflow: hidden;
    position: absolute;
    left: 0;
}
.direction-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Адаптив */
@media (max-width: 768px) {
  .directions-title {
    font-size: 26px;
    text-align: center;
  }
  .directions-grid {
    gap: 16px;
  }
  .direction-item {
    padding: 16px;
  }
}
#reviews {
  padding-top: 50px;
  padding-bottom: 50px;
}
.review-name{
  font-size: 14px;
}
.preview-text {
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
}
.reviews-title {
  margin-bottom: 45px !important;
}
/* ===== Наши врачи ===== */
.doctors {
  padding: 60px 0;
  background: #f6f7f9;
}

.doctors-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}
.doctor-car{
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: left;
  position: relative;
}

.doctor-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: left;
  position: relative;
}

.doctor-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}

.doctor-top img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.doctor-badge {
  position: absolute;
  top: 0;
  left: 65px;
  font-size: 20px;
}

.doctor-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.doctor-text {
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
}

.doctor-exp {
  display: inline-block;
  font-size: 13px;
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 12px;
}

.doctor-place {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}

.doctor-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #4169E2;
  border-radius: 12px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}


.doctors-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.doctors-prev,
.doctors-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}







/* ===== СМИ о нас ===== */
.press {
  padding: 60px 0;
  background: #fff;
}

.press-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

.press-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.press-tab {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #dcdcdc;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.press-tab.active {
  background: #4169E2;
  color: #fff;
  border-color: #4169E2;
}

.press-swiper {
  position: relative;
  padding: 10px 0 40px;
}

.press-card {
  background: #f8f9fc;
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s;
}
.post-content4{
  padding-top: 50px;
  padding-bottom: 50px;
}
.press-card:hover {
  background: #edf0f8;
}
.press-readmore {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    margin-top: 21px;
}
.press-logo {
    max-height: 140px;
    margin: 0 auto 18px;
    display: block;
}
.press-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.press-card-text {
  font-size: 14px;
  color: #555;
}

/* Стрелки */
.press-prev,
.press-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 24px;
  color: #111;
  z-index: 10;
}

.press-prev { left: -20px; }
.press-next { right: -20px; }

/* Адаптив */
@media (max-width: 768px) {
  .press-title { text-align: center; font-size: 26px; }
  .press-tabs { justify-content: center; }
  .press-prev, .press-next { top: auto; bottom: -10px; }
  .press-prev { left: 35%; }
  .press-next { right: 35%; }
}



/* ===== О клинике ===== */
.about {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, #f9fbff 0%, #ffffff 100%);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image {
  position: relative;
  flex: 1 1 40%;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-shape {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #4169E2;
  opacity: 0.1;
  transform: rotate(-3deg);
  z-index: 1;
}

.about-content {
  flex: 1 1 55%;
  min-width: 300px;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.about-title::after {

}

.about-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #333;
}

.about-text strong {
  color: #111;
  font-weight: 600;
}

/* Адаптив */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-image {
    margin-bottom: 30px;
  }
}


/* ===== Почему выбирают нас ===== */
.features {
  padding: 80px 0;
  background: #fff;
}

.features-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #f9fbff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #4169E2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}






.reviews-section {
  padding: 60px 0;
  background: #f8f8f8;
}

.reviews-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.reviews-rating span {
  margin-right: 20px;
  font-size: 18px;
  font-weight: 600;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.review-text {
  font-size: 16px;
  margin-bottom: 15px;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.review-source {
  height: 24px;
}

.reviews-more {
  text-align: center;
  margin-top: 20px;
}

.reviews-more .btn {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}



.footer {
  background: #f8f9fa;
  padding: 50px 0 30px;
  font-size: 15px;
  color: #333;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #111;
}

.footer p, .footer a {
  color: #555;
  text-decoration: none;
  line-height: 1.6;
}

.footer a:hover {
  color: #d12c6a;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 14px;
  background: #e9ecef;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: #d12c6a;
  color: #fff;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
  text-align: center;
  font-size: 14px;
  color: #777;
}

.footer-note {
  margin-top: 5px;
  font-size: 13px;
}


.breadcrumbs {
  font-size: 14px;
  margin: 15px 0 25px;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  color: #666;
}

.breadcrumbs li+li:before {
  content: "›";
  margin: 0 8px;
  color: #aaa;
}

.breadcrumbs a {
  color: #0450A7; /* фирменный оттенок */
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}


/* ===== Контентный блок ===== */
.content-block {
  font-size: 16px;
  line-height: 1.6;
}

.content-block h1 {
  font-size: 28px;
  margin-bottom: 15px;
}

.content-block h2 {
  font-size: 22px;
  margin: 25px 0 15px;
}

.content-block p {
  margin-bottom: 15px;
}

.content-block ul {
  margin: 15px 0 20px 20px;
  list-style: disc;
}

.content-block li {
  margin-bottom: 8px;
}

.content-block blockquote {
  border-left: 4px solid #0073aa;
  padding-left: 15px;
  margin: 20px 0;
  font-style: italic;
  color: #555;
}

.content-block figure {
  margin: 25px 0;
  text-align: center;
}

.content-block img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.content-block figcaption {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}


/* Базовый стиль инфо-блока */
.info-box {
  border: 1px solid;
  border-radius: 6px;
  padding: 15px 20px;
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.info-box i {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Варианты блоков */

/* Успех / подарок / положительная инфо */
.info-box.success {
  border-color: #4CAF50;
  background: #f6fffa;
  color: #2d7a33;
}

.info-box.success i {
  color: #4CAF50;
}

/* Внимание / предупреждение */
.info-box.warning {
  border-color: #FF9800;
  background: #fffaf5;
  color: #b36b00;
}

.info-box.warning i {
  color: #FF9800;
}

/* Ошибка / негатив / проблема */
.info-box.danger {
  border-color: #f44336;
  background: #fffafa;
  color: #a94442;
}

.info-box.danger i {
  color: #f44336;
}



.price-table {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  text-align: left;
}

.price-table th {
  background: #0450A7;
  color: #fff;
  padding: 14px 18px;
  font-weight: 600;
}

.price-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
}

.price-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.price-table tbody tr:hover {
  background: #0450a73b;
  transition: 0.3s;
}

.tableprice,
.faq {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* Адаптив под мобилку */
@media (max-width: 700px) {
  .price-table table,
  .price-table thead,
  .price-table tbody,
  .price-table th,
  .price-table td,
  .price-table tr {
    display: block;
    width: 100%;
  }

  .price-table thead {
    display: none;
  }

  .price-table tr {
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
    padding: 10px;
  }

  .price-table td {
    border: none;
    padding: 10px;
    position: relative;
  }

  .price-table td::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: #009688;
  }
}


.uslugi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.usluga-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
  background: #fff;
  text-align: center;
}

.usluga-card:hover {
  transform: translateY(-5px);
}

.usluga-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.usluga-title {
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
}


.specialists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.specialist-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
  text-align: center;
  background: #fff;
}

.specialist-card:hover {
  transform: translateY(-5px);
}

.specialist-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.specialist-name {
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.review-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.review-name {
  font-weight: bold;
  margin-bottom: 10px;
}

.review-text {
  font-size: 14px;
  color: #555;
}

.doctor-inner {
  padding: 40px 0;
}

.doctor-card {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.doctor-photo {
  flex: 0 0 300px;
  text-align: center;
}

.doctor-photo img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
}

.doctor-info {
  flex: 1;
}

.doctor-name {
  font-size: 24px;
  margin-bottom: 10px;
}

.doctor-position {
  font-size: 18px;
  color: #666;
  margin-bottom: 15px;
}

.doctor-experience,
.doctor-address {
  margin-bottom: 15px;
  font-size: 16px;
}
.specialists-gri {
    display: grid
;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.doctor-car {
    display: flex
;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
    width: 100%;
}
.doctor-action {
  margin: 20px 0;
}
.doctor-name a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    line-height: 22px;
    display: block;
}
.specialists-archive{
  padding-top: 50px;
  padding-bottom: 50px;
}
.btn {
  display: inline-block;
  background-color: #0450A7;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}
.doctab {
  padding-bottom: 100px;
}

.doctor-note {
  color: #777;
  font-size: 14px;
}

/* Архив */


.archive-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  color: #222;
}

.archive-description {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* Сетка карточек */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.archive-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.archive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.archive-card a {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.archive-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Контент карточки */
.archive-card-title {
  font-size: 20px;
  font-weight: 600;
  padding: 15px 20px 5px;
  color: #222;
}

.archive-excerpt {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  padding: 0 20px 20px;
}

/* Пагинация */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 10px 15px;
  margin: 0 5px;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
  background: #4169e1;
  color: #fff;
}

.pagination .current {
  background: #4169e1;
  color: #fff;
  font-weight: 700;
}



/* Основные стили для таблицы */
table.table-striped {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Заголовки таблицы */
table.table-striped thead th {
  background: #2d89ef;
  color: #fff;
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 2px solid #eaeaea;
}

/* Ячейки */
table.table-striped td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
  color: #333;
  line-height: 1.5;
}

/* Чередование строк */
table.table-striped tbody tr:nth-child(odd) {
  background: #fafafa;
}

table.table-striped tbody tr:nth-child(even) {
  background: #fff;
}

/* Hover эффект */
table.table-striped tbody tr:hover {
  background: #f1f7ff;
  transition: 0.2s ease-in-out;
}

/* Ссылки */
table.table-striped a {
  color: #2d89ef;
  text-decoration: none;
  font-weight: 500;
}

table.table-striped a:hover {
  text-decoration: underline;
}

/* Убираем последнюю линию */
table.table-striped tbody tr:last-child td {
  border-bottom: none;
}


.contacts-page {
  padding: 60px 0;
  background: #fafafa;
}

.contacts-page-title {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.contacts-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.contacts-block-title {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2d2d2d;
}

.contacts-time {
  font-size: 18px;
  font-weight: 600;
}

.contacts-sub {
  font-size: 14px;
  color: #777;
}

.contacts-address-line,
.contacts-address-city {
  font-size: 16px;
  color: #444;
}

.contacts-socials {
  display: flex;
  gap: 15px;
}

.contacts-social img {
  width: 34px;
  height: 34px;
  transition: transform 0.2s;
}

.contacts-social img:hover {
  transform: scale(1.1);
}

.contacts-phone {
  font-size: 20px;
  font-weight: 600;
  color: #2d89ef;
  text-decoration: none;
}

.contacts-phone:hover {
  text-decoration: underline;
}

.contacts-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 15px;
  color: #666;
  text-decoration: underline;
}

.contacts-map iframe {
  border-radius: 10px;
  width: 100%;
}


/* Обёртка поиска */
.table-search-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  background: #f9f9f9;
  padding: 0 0;
      position: absolute;

}
.table-search-wrapper.active {
    max-height: 120px;
    opacity: 1;
    padding: 20px;
    position: absolute;
    bottom: -80px;
    z-index: 9;
    width: 100%;
}
/* Форма поиска */
.table-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.table-navbar .container{
  position: relative;
}
.table-search-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.table-search-submit {
  background: #4169E2;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.table-search-submit:hover {
  background: #3455c3;
}


.search-page {
  padding: 40px 0;
}

.search-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.search-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  transition: box-shadow 0.3s ease;
  background: #fff;
}

.search-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.search-thumb img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.search-card-title {
  font-size: 18px;
  margin: 10px 0;
  color: #000;
  text-decoration: none;
}

.search-excerpt {
  font-size: 14px;
  color: #666;
}
.search-card a {
    text-decoration: none;

}



#contact-modal {
    max-width: 500px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
}

#contact-modal .wpcf7-form input,
#contact-modal .wpcf7-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

#contact-modal .wpcf7-form input[type="submit"] {
    background: #4169E2;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

#contact-modal .wpcf7-form input[type="submit"]:hover {
    background: #3455c3;
}


@media only screen and (max-width: 1200px) {
  .table-topbar-right {
    display: flex
;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}



}


@media only screen and (max-width: 1000px) {
.table-slogan-title {
  display: none;
}
.table-menu-list {
    display: flex
;
    align-items: center;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}
.table-menu-list a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding: 10px 5px;
    display: inline-block;
    font-size: 14px;
}





}

@media only screen and (max-width: 1000px) {
header .table-hours,
header .table-address {
  display: none;
}
    .table-topbar-right {
        display: flex
;
        align-items: center;
        gap: 26px;
        flex-direction: row;
    }

    .table-topbar-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }
.table-search-wrapper.active {
   
    left: 0;
}
.hero-slider .slide-right {
  display: none;
}
header .sub-menu {
  display: none !important;
}


.direction-item {
        padding: 16px;
        justify-content: end;
    }
    .doctor-card {
    display: block;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
    .doctor-photo img {
        width: 100%;
        height: auto;

    }
 }


 @media only screen and (max-width: 400px) {
  .table-socials {
    display: none;
  }
.specialists-gri {
    display: grid
;
    grid-template-columns: repeat(1, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
  .direction-img {
    width: 50px;
    height: 122px;
    flex-shrink: 0;
    border-radius: 0 100% 100% 0px;
    overflow: hidden;
    position: absolute;
    left: 0;
}
.table-search-wrapper.active {
    max-height: 120px;
    opacity: 1;
    padding: 6px;
}
.direction-item span {
    font-size: 14px;
}
.directions-grid {
    display: flex
;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px 30px;
    flex-direction: column;
}




 }