.hero-para {
  text-transform: none !important;
  font-size: 29px;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
}

/* Глобальное отключение заглавных букв */
h1, h2, h3, h4, h5, h6, p, a, div, span, button, input, textarea, 
.title-h2, .subtitle, .hero-title, .blog-title, .service-title, 
.testi-author-name, .title-block, .cta-block, .hero-para, 
.footer-menu-title, .footer-menu-item, .testimonial-para, .subtitle-block, 
.nav-link, .dropdown-item-white, .button-text {
  text-transform: none !important;
}

/* Новые стили для программы тура */
.tour-program {
  margin-top: 40px;
}

.day-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.day-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.day-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.day-info {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.day-label {
  font-weight: 600;
  color: #555;
  font-size: 18px;
  margin-right: 12px;
}

.day-divider {
  width: 1px;
  height: 16px;
  background-color: #ccc;
  margin: 0 12px;
}

.day-description {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.day-icon {
  width: 40px;
  height: 40px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f5f5f5;
}

.day-icon svg {
  width: 24px;
  height: 24px;
  fill: #555;
}

/* Стили для ЧАВО (FAQ) */
section.faq-section {
  background-color: #fff !important;
  padding: 40px 0 !important;
  margin-top: 20px !important;
  position: relative !important;
  display: block !important;
  width: 100% !important;
  z-index: 1 !important;
}

.faq-section .faq-container {
  margin-top: 20px !important;
  width: 100% !important;
  display: block !important;
  opacity: 1 !important;
}

.faq-section .faq-item {
  margin-bottom: 16px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
  background-color: #fff !important;
  border: 1px solid #f0f0f0 !important;
  display: block !important;
}

.faq-section .faq-question {
  padding: 20px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  color: #333 !important;
  font-size: 18px !important;
  text-transform: none !important;
}

.faq-section .faq-question:hover {
  background-color: #f9f9f9 !important;
}

.faq-section .faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  padding: 0 20px !important;
  transition: max-height 0.3s ease, padding 0.3s ease !important;
  line-height: 1.6 !important;
  color: #666 !important;
}

.faq-section .faq-item.active .faq-answer {
  max-height: 500px !important;
  padding: 0 20px 20px !important;
}

.faq-section .faq-icon {
  transition: transform 0.3s ease !important;
  font-size: 24px !important;
  font-weight: 300 !important;
  color: #666 !important;
}

.faq-section .faq-item.active .faq-icon {
  transform: rotate(45deg) !important;
}

/* Pricing Section */
.pricing-section {
  padding: 40px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.pricing-container {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.pricing-card, .pricing-info {
  flex: 1;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover:hover {
  transform: scale(1.025);
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

.pricing-title {
  font-size: 24px;
  margin-bottom: 3px;
  font-weight: 700;
}

.pricing-price {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00, #FFD700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldGradient 3s ease-in-out infinite;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
  position: relative;
}

@keyframes goldGradient {
  0% {
    background-position: 0% 50%;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
  }
  50% {
    background-position: 100% 50%;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }
  100% {
    background-position: 0% 50%;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
  }
}

.pricing-description {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 500;
}

.pricing-features {
  margin-bottom: 35px;
  flex-grow: 1;
  padding: 0 15px;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  transition: transform 0.2s ease;
}

/*
.pricing-feature-item:hover {
  transform: scale(1.025);
}
*/

.feature-icon {
  color: #2ecc40 !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  margin-right: 8px !important;
  stroke-width: 3.2 !important;
}

.pricing-feature-item.minus .feature-icon {
  color: #b0b0b0 !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  stroke-width: 3.2 !important;
}

.booking-info {
  margin-top: auto;
  padding: 25px 15px 0;
  border-top: 2px solid #f0f0f0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(250,250,250,0.5) 100%);
}

.pricing-mountains {
  position: absolute;
  bottom: -5%;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}
.pricing-button {
  display: block;
  margin: 20px auto 0;
  text-align: center;
}

.info-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.info-list {
  margin-bottom: 30px;
  padding-left: 5px;
  list-style-type: none;
}

.info-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
}

.info-list .pricing-feature-item {
  padding-left: 0 !important;
  margin-bottom: 6px !important;
}

.info-list .feature-icon {
  margin-right: 6px !important;
}

.info-list li:before {
  display: none !important;
}

.info-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23fd903d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 991px) {
  .pricing-container {
    flex-direction: column;
  }
  
  .pricing-card, .pricing-info {
    width: 100%;
  }
}

/* Изменения в программе тура */
.blog-item {
  margin-bottom: 15px; /* Уменьшенный отступ между блоками дней */
}

.blog-left {
  grid-row-gap: 10px;
  padding-right: 10px; /* Немного сжимаем внутренние отступы */
}

.blog-item-title {
  margin-bottom: 0px; /* Меньше пространства после заголовка */
}

.reading-date {
  margin-bottom: 0px; /* Меньше пространства после даты */
}

.div-block {
  display: none; /* Скрываем черточку после дня */
}

.blog-description {
  line-height: 1.25; /* Сильно уменьшаем межстрочный интервал */
  margin-top: 0;
  font-size: 0.9em; /* Уменьшаем размер текста описания */
}

/* Стили для картинок в блоке дня */
.blog-right {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 6px;
}

.blog-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

/* Медиа-запрос для мобильных устройств */
@media (max-width: 768px) {
  .blog-img {
    height: 120px;
  }
}

.service-title {
  font-weight: 900;
}

.service-item {
  background-image: url(../images/none.png);
}

.service-1 {
  background-image: url(../images/service/1.png);
}

.service-2 {
  background-image: url(../images/service/2.png);
}

.service-3 {
  background-image: url(../images/service/3.png);
}

.service-4 {
  background-image: url(../images/service/4.png);
}

.tour-map-section {
  padding: 70px 0 60px 0;
  background: #18191c;
  position: relative;
  z-index: 2;
  color: #fff;
}

.tour-map-section .title-h2 {
  text-align: left;
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: #fff;
}

.tour-map-iframe-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .tour-map-section {
    padding: 40px 0 30px 0;
  }
  .tour-map-iframe-wrapper iframe {
    height: 280px;
  }
}

.tour-map-info-block {
  margin: 36px auto 0 auto;
  background: #18191c;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.18);
  padding: 38px 38px 28px 38px;
  max-width: 900px;
  color: #fff;
  font-size: 1.13rem;
}
.tour-map-info-cols {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.tour-map-info-col {
  flex: 1 1 320px;
  min-width: 260px;
}
.tour-map-info-title {
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 2px;
  color: #fff;
  font-size: 1.08em;
}
.tour-map-info-title.orange {
  color: #fdc13d;
  font-size: 1.13em;
  margin-bottom: 10px;
  margin-top: 0;
}
.tour-map-info-value {
  font-weight: 700;
  font-size: 1.18em;
  margin-bottom: 6px;
}
.tour-map-info-value.accent {
  color: #fdc13d;
}
.tour-map-peaks-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.tour-map-peaks-list li {
  margin-bottom: 6px;
  font-size: 1em;
  display: flex;
  align-items: center;
}
.peak-icon {
  color: #fd903d;
  font-size: 1.1em;
  margin-right: 7px;
}
.tour-map-hr {
  border: none;
  border-top: 1px solid #333;
  margin: 18px 0 14px 0;
}
.tour-map-temp-block {
  margin-top: 6px;
  font-size: 1em;
}
.tour-map-temp-block .accent {
  color: #fdc13d;
  font-weight: 700;
}
.tour-map-temp-block .blue {
  color: #6dc6fd;
  font-weight: 700;
}
@media (max-width: 700px) {
  .tour-map-info-block {
    padding: 18px 8px 18px 8px;
    font-size: 0.98rem;
  }
  .tour-map-info-cols {
    flex-direction: column;
    gap: 18px;
  }
}

.promo-highlights-section.promo-highlights-separated {
  margin-top: 48px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.promo-highlights-block.modern {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(35,36,42,0.92);
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.18);
  padding: 28px 22px 16px 22px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 1.1s cubic-bezier(.23,1.01,.32,1) both;
  border: 1.5px solid #23242a;
  position: relative;
}
.promo-highlights-separator {
  width: 100px;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #fdc13d 0%, #fd903d 100%);
  margin: 0 auto 18px auto;
  opacity: 0.85;
}
.promo-highlights-title.modern {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 5px;
  margin-top: 0px;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #fdc13d 30%, #fd903d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.promo-highlights-list.modern {
  list-style: none;
  padding: 0;
  margin: 0;
}
.promo-highlights-list.modern li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1em;
  color: #fff;
  margin-bottom: 13px;
  padding: 0 0 8px 0;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.promo-highlights-list.modern li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.promo-icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-icon svg path {
  stroke: #fd903d;
}
.promo-list-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.promo-list-main {
  display: inline-block;
  font-size: 1.08em;
  font-weight: 800;
  color: #fdc13d;
  line-height: 1.2;
  margin-bottom: 2px;
  vertical-align: baseline;
}
.promo-highlights-list.modern b {
  color: #fdc13d;
  font-weight: 800;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .promo-highlights-block.modern {
    padding: 12px 4px 8px 4px;
  }
  .promo-highlights-title.modern {
    font-size: 1.05rem;
  }
  .promo-highlights-list.modern li {
    font-size: 0.93em;
    gap: 7px;
  }
  .promo-highlights-separator {
    width: 60px;
    height: 4px;
    margin-bottom: 10px;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.logo-img {
  height: 35px;
}

.tour-highlights-section {
  width: 100%;
  background: #f7f9fb;
  padding: 54px 0 36px 0;
  margin: 0;
}
.tour-highlights-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.highlights-subtitle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  margin-top: 0;
}
.highlights-subtitle .sub-line {
  width: 32px;
  height: 10px;
  color: #fdc13d;
  opacity: 0.9;
}
.highlights-subtitle .subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #fdc13d;
  letter-spacing: 0.01em;
  text-transform: none;
  margin-left: 0;
}
.tour-highlights-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.tour-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.08em;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.6;
  border-bottom: 1px solid #ececec;
  padding-bottom: 13px;
}
.tour-highlights-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.highlight-icon {
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-icon svg path {
  stroke: #fd903d;
}
.highlight-image {
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.highlight-main {
  color: #fd903d;
  font-size: 20px;
  font-weight: 700;
  margin-right: 4px;
  min-width: 170px;
  display: inline-block;
}
.highlight-desc {
  color: #222;
  font-size: 20px;
  font-weight: 400;
  display: inline;
}
@media (max-width: 700px) {
  .tour-highlights-section {
    padding: 28px 0 18px 0;
  }
  .highlights-subtitle .subtitle {
    font-size: 15px;
  }
  .tour-highlights-list li {
    font-size: 0.98em;
    gap: 7px;
    padding-bottom: 8px;
  }
  .highlight-main {
    min-width: 120px;
    font-size: 1em;
  }
}

/* Хайлайты в секции цены */
.pricing-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.pricing-highlight-item {
  display: flex;
  align-items: flex-start;
  background: #fffbe7;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(253, 144, 61, 0.07);
  padding: 18px 20px;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  cursor: default;
  border: 1.5px solid #ffe1b2;
}
.pricing-highlight-item:hover {
  background: #fff3d1;
  box-shadow: 0 6px 24px rgba(253, 144, 61, 0.13);
  transform: translateY(-2px) scale(1.025);
}
.pricing-highlight-item .highlight-icon {
  margin-right: 16px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-highlight-item .highlight-main {
  font-weight: 700;
  color: #fd903d;
  margin-bottom: 2px;
}
.pricing-highlight-item .highlight-desc {
  color: #222;
  font-weight: 400;
}
.pricing-highlight-item .highlight-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (max-width: 700px) {
  .pricing-highlights-list {
    gap: 10px;
    margin-bottom: 18px;
  }
  .pricing-highlight-item {
    padding: 12px 10px;
  }
  .pricing-highlight-item .highlight-main {
    font-size: 1em;
  }
}

/* Стили для кнопки WhatsApp */
.whatsapp-button {
  display: inline-flex;
  background-color: #25D366;
  color: white;
  padding: 8px 16px;
  border-radius: 24px;
  text-decoration: none;
  margin-top: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.whatsapp-button:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-button-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-button-inner svg {
  margin-right: 8px;
}

.whatsapp-button-inner span {
  font-weight: 500;
  font-size: 14px;
}

@media (max-width: 767px) {
  .whatsapp-button {
    padding: 6px 12px;
  }
  
  .whatsapp-button-inner span {
    font-size: 13px;
  }
}

/* Стили для секции с высотным профилем маршрута */
.altitude-profile-section {
  padding: 64px 0;
  background-color: #f7f7f7;
}

.altitude-profile-image-wrapper {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

@media (max-width: 768px) {
  .altitude-profile-section {
    padding: 40px 0;
  }
}