.banner {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("https://rgo.ru/upload/s34web.imageadapter/e08bdbb5ae6939f8dca9322f575a1576/yuriy_ufimcev_fioletovyy_zakat_536530.jpg")
      center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: zoom 30s infinite;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.banner-content {
  text-align: center;
  color: #fff;
  z-index: 1;
}

.banner h1 {
  font-size: 56px;
  margin-bottom: 15px;
  font-style: italic;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner p {
  font-size: 24px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.banner-btn {
  background-color: #65e7d9;
  color: #333;
  border: none;
  padding: 15px 30px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.banner-btn:hover {
  background-color: #4fd1c5;
  transform: translateY(-3px);
}

.advantages {
  background-color: transparent;
  padding: 80px 0;
  margin: 0 auto;
  margin-top: -300px;
  position: relative;

  z-index: 2;
  border-radius: 20px 20px 0 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.advantage-card {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.advantage-card:hover {
  transform: translateY(-10px);
}

.advantage-card i {
  font-size: 48px;
  color: #2c7da0;
  margin-bottom: 20px;
}

.advantage-card h3 {
  color: #2c7da0;
  margin-bottom: 15px;
  font-size: 22px;
}

.specialists {
  padding: 80px 0;
  background-color: #f5f5f5;
  margin-top: 0px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #2c7da0;
  font-size: 36px;
  position: relative;
}
.banner-title {
  color: white;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #2c7da0;
  margin: 15px auto 0;
}
.banner-title:after {
  background: #ffffff;
  width: 80%;
}

.specialists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.specialist-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  height: 537px;
  display: flex;
  flex-direction: column;
}

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

.specialist-img {
  height: 250px;
  background-color: #e6f2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c7da0;
  font-size: 20px;
  overflow: hidden;
}

.specialist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.specialist-card:hover .specialist-img img {
  transform: scale(1.1);
}

.specialist-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.specialist-info h3 {
  color: #2c7da0;
  margin-bottom: 10px;
  font-size: 20px;
}

.specialist-info .specialty {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.specialist-info .experience {
  margin-bottom: 15px;
  color: #666;
}

.more-link {
  color: #2c7da0;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s;
}

.more-link:hover {
  color: #1a5d7a;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.modal-title {
  margin-bottom: 20px;
  color: #2c7da0;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.submit-btn {
  background-color: #65e7d9;
  color: #333;
  border: none;
  padding: 12px 30px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #4fd1c5;
}

.fullscreen-slider {
  width: 100%;
  padding: 80px 0;
  margin-top: 35px;
  background: linear-gradient(135deg, #e6f2f8 0%, #b3d9f2 100%);
  position: relative;
}

.slider-title {
  text-align: center;
  margin-bottom: 40px;
  color: #2c7da0;
  font-size: 36px;
  position: relative;
}

.slider-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #2c7da0;
  margin: 15px auto 0;
}

.slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 1400px;
  width: 95%;
}

.slides-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 70vh;
  min-height: 500px;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 80px;
  z-index: 10;
  pointer-events: none;
}

.slider-btn {
  background-color: rgba(44, 125, 160, 0.7);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  pointer-events: auto;
}

.slider-btn:hover {
  background-color: rgba(26, 93, 122, 0.9);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
  background-color: #2c7da0;
  transform: scale(1.2);
}

.slider-action {
  text-align: center;
}

.action-btn {
  background-color: #65e7d9;
  color: #333;
  border: 1px solid #2c3e50;
  padding: 15px 40px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.action-btn:hover {
  background-color: #4fd1c5;
  transform: translateY(-3px);
}

@media screen and (max-width: 992px) {
  .advantages-grid,
  .specialists-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide {
    height: 60vh;
  }
}

@media screen and (max-width: 768px) {
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slider-controls {
    padding: 0 10px;
  }
}

@media screen and (max-width: 576px) {
  .slide {
    height: 40vh;
    min-height: 300px;
  }

  .slider-title {
    font-size: 28px;
  }

  .action-btn {
    padding: 12px 30px;
    font-size: 16px;
  }

  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .banner h1 {
    font-size: 36px;
  }

  .banner p {
    font-size: 18px;
  }

  .slide {
    height: 50vh;
    min-height: 400px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 576px) {
  .advantages-grid,
  .specialists-grid {
    grid-template-columns: 1fr;
  }

  .logo h1 {
    font-size: 20px;
  }

  .logo p {
    font-size: 12px;
  }

  .slide {
    height: 40vh;
    min-height: 300px;
  }

  .slider-title {
    font-size: 28px;
  }

  .action-btn {
    padding: 12px 30px;
    font-size: 16px;
  }
}

.news {
  padding: 80px 0;
  background-color: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.news-card {
  background-color: #f9f9f9;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.news-card:hover {
  transform: translateY(-10px);
}

.news-img {
  height: 200px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-card:hover .news-img img {
  transform: scale(1.1);
}

.news-info {
  padding: 20px;
}

.news-date {
  color: #2c7da0;
  font-size: 14px;
  margin-bottom: 10px;
}

.news-title {
  color: #2c7da0;
  margin-bottom: 15px;
  font-size: 20px;
}

.reviews {
  padding: 80px 0 80px 0;
  background-color: #f5f5f5;
}
.reviews .container {
  max-width: 100%;
}
.reviews-slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1400px;
  width: 95%;
}

.reviews-slides-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 20px 0;
  width: max-content;
}

.review-card {
  min-width: 380px;
  width: 380px;
  padding: 30px;
  box-sizing: border-box;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 15px;
  height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-shrink: 0;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2c7da0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.review-info {
  flex-grow: 1;
}

.review-name {
  font-weight: 600;
  color: #2c7da0;
  margin-bottom: 5px;
  font-size: 18px;
}

.review-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.review-rating {
  color: #ffd700;
  font-size: 16px;
}

.review-content {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}

.review-content p {
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-height: 12em;
}

.review-content:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, white);
}

.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}

.review-btn {
  background-color: #2c7da0;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.review-btn:hover {
  background-color: #1a5d7a;
  transform: scale(1.1);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.review-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot.active {
  background-color: #2c7da0;
  transform: scale(1.2);
}

@media screen and (min-width: 768px) {
  .review-card {
    min-width: 360px;
    height: 500px;
  }
}

@media screen and (min-width: 992px) {
  .review-card {
    min-width: 360px;
    height: 500px;
  }
}

@media screen and (max-width: 767px) {
  .review-card {
    min-width: 340px;
    height: 450px;
    margin: 0 10px;
    padding: 20px;
  }

  .review-avatar {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .review-name {
    font-size: 16px;
  }
}

.reviews-slider-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}

.reviews-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}

.review-btn {
  background-color: rgba(44, 125, 160, 0.7);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  pointer-events: auto;
}

.review-btn:hover {
  background-color: rgba(26, 93, 122, 0.9);
  transform: scale(1.1);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 25px 0;
}

.review-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot.active {
  background-color: #2c7da0;
  transform: scale(1.2);
}

@media screen and (max-width: 768px) {
  .review-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .reviews-controls {
    padding: 0 10px;
  }
}

@media screen and (max-width: 576px) {
  .review-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .review-dot {
    width: 10px;
    height: 10px;
  }
}

footer {
  background-color: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-map {
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}

.footer-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.contact-item i {
  margin-right: 15px;
  font-size: 20px;
  color: #65e7d9;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  color: white;
  font-size: 24px;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: #65e7d9;
}

.sitemap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sitemap-column h3 {
  margin-bottom: 20px;
  color: #65e7d9;
}

.sitemap-links {
  list-style: none;
}

.sitemap-links li {
  margin-bottom: 10px;
}

.sitemap-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.sitemap-links a:hover {
  color: #65e7d9;
}

@media screen and (max-width: 992px) {
  .news-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .news-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .sitemap {
    grid-template-columns: 1fr;
  }
}
.room-search {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(196, 129, 107, 0.3);
  padding: 25px 30px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  z-index: 10;
  width: 100%;
  max-width: 1000px;
}

.search-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.search-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.search-group label {
  color: white;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}

.input-banner {
  padding: 12px 15px;
  border: none;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  width: 100%;
}

.search-btn {
  background-color: #65e7d9;
  color: #333;
  border: none;
  padding: 14px 25px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
  margin-top: 24px;
  height: 44px;
}

.search-btn:hover {
  background-color: #4fd1c5;
}

@media screen and (max-width: 900px) {
  .search-form {
    flex-wrap: wrap;
    gap: 15px;
  }

  .room-search {
    top: 120px;
    max-width: 90%;
  }

  .search-btn {
    flex: 1 0 100%;
    margin-top: 0;
  }
}

@media screen and (max-width: 576px) {
  .room-search {
    padding: 10px;
    top: 100px;
    max-width: 90%;
  }

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

.indications {
  padding: 80px 0;
  background-color: white;
}

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

  margin-top: 30px;
}

.indication-item {
  background-color: #2c3e50;
  padding: 20px;
  border-radius: 10px;
  color: white;
  font-size: 18px;
  text-align: center;
  transition: opacity 0.3s;
}

.indication-item:hover {
  background-color: #49fff6;
  color: black;
  cursor: pointer;
}

.callback-section {
  padding: 0 0 60px;
  background-color: white;
  text-align: center;
}

.callback-btn {
  background-color: #65e7d9;
  color: #333;
  border: 1px solid #2c3e50;
  padding: 15px 40px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.callback-btn:hover {
  background-color: #4fd1c5;
  transform: translateY(-3px);
}

.callback-btn i {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .callback-section {
    padding: 40px 0;
  }

  .callback-btn {
    padding: 12px 30px;
    font-size: 16px;
  }
}

.container-callback {
  text-align: center;
  padding: 0 0 40px 0;
}

/* Стили для слайдера отзывов */
.reviews-slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
}

.reviews-slides-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 20px 0;
}

.review-card {
  min-width: 100%;
  padding: 30px;
  box-sizing: border-box;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 15px;
  height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Скрываем стрелки слайдеров на мобильных устройствах */
@media screen and (max-width: 768px) {
  .slider-controls,
  .reviews-controls {
    display: none !important;
  }

  .slider,
  .reviews-slider {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
  }

  .slides-container,
  .reviews-slides-container {
    cursor: grab;
  }

  .slides-container:active,
  .reviews-slides-container:active {
    cursor: grabbing;
  }

  .slider-dots,
  .reviews-dots {
    padding: 10px 0;
  }

  .dot,
  .review-dot {
    width: 20px;
    height: 20px;
    position: relative;
  }

  .dot:after,
  .review-dot:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }
    .slider-controls,
  .reviews-controls,
  .indications-controls,
  .specialists-controls {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .slider-controls,
  .reviews-controls {
    display: flex;
  }
  .review-card {
    min-width: 380px;
    width: 380px;
    flex: 0 0 380px;
    margin: 0 15px;
  }
    .indication-slide {
    min-width: 380px;
    width: 380px;
    flex: 0 0 380px;
    margin: 0 15px;
  }
    .specialist-slide {
    min-width: 340px !important;
    width: 340px !important;
    flex: 0 0 340px;
    margin: 0 15px;
  }
}

.reviews-slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
}

.reviews-slides-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 20px 0;
}

.review-card {
  min-width: 100%;
  padding: 30px;
  box-sizing: border-box;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 15px;
  height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 25px 0;
}

.review-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot.active {
  background-color: #2c7da0;
  transform: scale(1.2);
}

@media screen and (max-width: 768px) {
  .reviews-slider {
    padding-bottom: 40px;
  }

  .reviews-dots {
    position: relative;
    margin-top: 20px;
    z-index: 5;
  }

  .reviews-dots-container {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .review-dot {
    width: 14px;
    height: 14px;
    position: relative;
  }

  .review-dot:after {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
  }
}

@media screen and (max-width: 767px) {
  .review-card {
    height: 450px;
    margin: 0 10px;
    padding: 20px;
  }

  .reviews-dots {
    margin: 20px 0 10px 0;
  }
}
@media screen and (max-width: 576px) {
  .review-card {
    min-width: 340px;
    width: 340px;
    height: 450px;
    margin: 0 10px;
    padding: 20px;
  }
}
.reviews-dots-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.indications-slider-section .container {
  max-width: 100%;
}
.indications-slider-section {
  padding: 80px 0;
  background-color: white;
}

.indications-slider-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}

.indications-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}

.indication-btn {
  background-color: rgba(44, 125, 160, 0.7);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  pointer-events: auto;
}

.indication-btn:hover {
  background-color: rgba(26, 93, 122, 0.9);
  transform: scale(1.1);
}

.indications-slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1400px;
  width: 95%;
}

.indications-slides-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 20px 0;
  width: max-content;
}

.indication-slide {
  min-width: 33.333%;
  padding: 0 15px;
  box-sizing: border-box;
}

.indication-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 437px;
  display: flex;
  flex-direction: column;
  position: relative; 
}

.indication-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.indication-image {
  height: 280px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.indication-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.indication-card:hover .indication-image img {
  transform: scale(1.1);
}

.indication-image.placeholder {
  background: linear-gradient(135deg, #e6f2f8 0%, #b3d9f2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c7da0;
  font-size: 48px;
}

.indication-content {
  padding: 25px;
  padding-bottom: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  align-items: center;
}

.indication-title {
  color: #2c7da0;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  flex-grow: 1;
}

.indication-button {
  background-color: #65e7d9;
  color: #333;
  border: 2px solid #2c3e50;
  padding: 12px 25px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  margin-top: auto; 
  margin-bottom: 5px; 
  width: calc(100% - 50px); 
  box-sizing: border-box; 
}

.indication-button:hover {
  background-color: #4fd1c5;
  transform: translateY(-2px);
}

.indications-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 25px 0;
}

.indication-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indication-dot.active {
  background-color: #2c7da0;
  transform: scale(1.2);
}

@media screen and (max-width: 992px) {
  .indication-slide {
    min-width: 360px;
    width: 360px;
  }
}

@media screen and (max-width: 768px) {
  .indication-slide {
    min-width: 360px;
    width: 360px;
  }

  .indication-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .indications-controls {
    padding: 0 10px;
  }
}

@media screen and (max-width: 576px) {
  .indication-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .indication-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .indication-slide {
    min-width: 340px;
    width: 340px;
  }
  
  .indication-card {
    height: 420px;
  }
  
  .indication-image {
    height: 250px;
  }
  
  .indication-content {
    padding: 20px;
  }
  
  .indication-title {
    font-size: 18px;
  }
}

/* .................................................................. */
.specialists-slider-section .container {
  max-width: 100%;
}
.specialists-slider-section {
  padding: 80px 0;
  background-color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.specialists-slider-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}

.specialists-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}

.specialist-btn {
  background-color: rgba(44, 125, 160, 0.7);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  pointer-events: auto;
}

.specialist-btn:hover {
  background-color: rgba(26, 93, 122, 0.9);
  transform: scale(1.1);
}

.specialists-slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}

.specialists-slides-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 20px 0;
  width: max-content;
}

.specialist-slide {
  min-width: 360px;
  padding: 0 15px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.specialists-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 25px 0;
}

.specialist-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.specialist-dot.active {
  background-color: #2c7da0;
  transform: scale(1.2);
}

/* Адаптивность */
@media screen and (max-width: 992px) {
  .specialist-slide {
    min-width: 340px !important;
    width: 340px !important;
  }
}

@media screen and (max-width: 768px) {
  .specialist-slide {
    min-width: 340px !important;
    width: 340px !important;
  }

  .specialist-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .specialist-card {
    height: 537px;
            min-width: 340px !important;
    width: 340px !important;
  }
  .specialists-controls {
    padding: 0 10px;
  }
}

@media screen and (max-width: 576px) {
  .specialist-slide {
        min-width: 340px !important;
    width: 340px !important;
  }

  .specialist-card {
    height: 520px;
        min-width: 340px !important;
    width: 340px !important;
  }

  .specialist-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .specialist-dot {
    width: 10px;
    height: 10px;
  }
}
.specialist-info h3 {
  color: #2c7da0;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

.specialist-info .specialty {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.3;
}

.specialist-info .experience {
  margin-bottom: 12px;
  color: #666;
  line-height: 1.3;
}

.more-link {
  color: #2c7da0;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: auto;
  padding-top: 10px;
  transition: color 0.3s;
}


