/* Сброс */
* {margin: 0; padding: 0; box-sizing: border-box;}
body {font-family: Inter, sans-serif; background: #f5f5f5;   margin: 0;
}

/* Фон */

.first-screen.desktop-only{
  background: url("img/frame1.webp") no-repeat center center fixed;
  background-size: cover;
padding: 0 0 4rem;
}

/* Логотип */
.logo {
  width: 80px;
  height: 40px;
  object-fit: contain;
}

p{
    font-size: 16px;
}
h2{
    font-size: 32px;
}
/* Шапка */
.header {
position: sticky;     /* липкая */
  top: 0;               /* прилипает сверху */
  z-index: 999;         /* поверх контента */
  background: #f5f5f5;     /* фон, чтобы текст не сливался */  width: 100%;
  max-width: 1440px;              /* ограничиваем ширину */
  margin: 0 auto;                 /* центрируем */
  display: flex;
  justify-content: space-between; /* лого слева, меню справа */
  align-items: center;
  padding: 1rem 5rem;
  z-index: 100;
  box-sizing: border-box;
}
.nav a {
  margin: 0 1.5rem;
  text-decoration: none;
  color: #000;
  font-size: 16px;
}


.burger {
  font-size: 22px;
  width: 30px;
  height: 24px;       /* ✅ добавляем высоту кнопки */
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  margin-left: 4.4rem;
}

/* Полоски */
.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: 0.3s;
}

/* Расположение полосок */
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }

/* при активном меню превращаем в крестик */
.burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: -1px;
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: -1px;
}

/* Выпадающее меню */
.dropdown-desktop {
  position: absolute;
  top: 70px;
  right: 7%
  width: 280px;
  background: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
}

.dropdown-desktop.active {
  display: flex;
  background: #F0F0F0;
}

/* Серая верхняя шапка */
.dropdown-desktop-header {
  background: #D9D9D9;
  padding: 1.5rem 2rem;
  position: relative;
}

.dropdown-desktop-header .close-btn {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  color: #1A1A1A;
}

/* Ссылки меню */
.dropdown-desktop a {
  padding: 1rem 1.5rem;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px dashed #aaa;
}
/* но убираем у ссылок внутри блока socials */
.dropdown-desktop .socials a {
  border-bottom: none;
}

/* Соцсети внизу */
.dropdown-desktop .socials {
  display: flex;
  justify-content: flex-start;
}

.dropdown-desktop .socials img {
  width: 30px;
  height: 30px;
  margin-right: 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin: 0 -25px 0 0;
}

.dropdown-desktop .socials img:hover {
  transform: scale(1.2);
}


/* Основная сетка */
.main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0 5rem;
  max-width: 1440px;
  margin: 0 auto;
}

/* Левая часть */
.left {
  position: relative;
}

/* Фон-картинка */
.left .img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Левая колонка (большое фото) */
.card-left { 
  background-image: url("img/1.webp"); 
}

/* Центральная колонка (два фото) */
.card-center1 { 
  background-image: url("img/2.webp"); 
}
.card-center2 { 
  background-image: url("img/3.webp"); 
}

/* Текст */
.overlay-text {
  position: absolute;
  bottom: 2rem;
  left: 7rem;
  color: white;
  max-width: 75%;
  text-align: right;
}

.overlay-text h1 {
  font-size: 37px;
  margin-bottom: 1.5rem;
}

.overlay-text p {
  font-size: 18px;
  margin-bottom: 1rem;
}

/* Кнопка */
.left .btn-dark {
  position: absolute;
  bottom: 28rem;
  left: 2rem;
  background: white;
  color: black;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
  font-family: 'Inter'
}

/* Соцсети */
.left .Insta,
.left .FB {
  position: absolute;
  width: 25px;
  height: 39px;
  top: 2.1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.left .Insta { left: 15.5rem; }
.left .FB { left: 18rem; }

.left .Insta:hover,
.left .FB:hover {
  transform: scale(1.2);
}

/* Центральная колонка */
.center {
  display: flex;
  flex-direction: column;
}

/* Рамки для фоновых фото */
.center .img-wrapper {
  width: 100%;
  height: 280px;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 👉 Перекрытие второго фото */
.center .overlap {
  margin-top: -13%; /* наезжает на предыдущее фото */
}

/* Правая часть (видео) */
.video-preview {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background: url("img/prev.webp") no-repeat center/cover; /* фон превью */
  cursor: pointer;
  border: 2px solid #fff;
}

/* play svg */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: url("img/icon/btn.svg") no-repeat center/contain;
  opacity: 0.9;
  transition: 0.3s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}

/* Карточки */
.cards {
  display: flex;
  padding: 0rem 5rem;
  max-width: 1440px;
  margin: 0.5rem auto;
  gap: 0.5rem;
  
}
.card {
  flex: 1;
  

}
.card .button__1 {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 2.5rem;
  padding: .5rem 1rem;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  background: black;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-family: 'Inter'

}

.card .button__2 {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 2.5rem;
  padding: .5rem 1rem;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  background: white;
  color: black  ;
  text-transform: uppercase;
  font-size: 16px;
    font-family: 'Inter'

}

.card .button__3 {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 2.5rem;
  padding: .5rem 1rem;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  background: white;
  color: black  ;
  text-transform: uppercase;
  border: 1px solid #000;
    font-size: 16px;
      font-family: 'Inter'


}
.card.green {background: #016D30; color: white; border-radius: 20px;
    border: 2px solid #fff;padding: 2rem;}
.card.orange {background: #F6911E; color: white;border-radius: 20px;
    border: 2px solid #fff;padding: 2rem;}
.card.white {background: white; color: black;border-radius: 20px;
    border: 2px solid #FAFAFA;padding: 2rem;}


.card h2{
    margin-bottom: 0.5rem;
}



/* ВТОРОЙ ЭКРАН */
.tour-days {
  max-width: 1440px;
  margin: 0 auto;
  padding: 6rem 5rem;
}

.tour-header {
  text-align: center;
  margin-bottom: 3rem;
}
.tour-header h2 {
  font-size: 60px;
  line-height: 1.1;
}
.tour-header h2 span {
  color: orange;
  font-weight: bold;
}
.tour-header p {
  margin: 1rem auto 0;
  font-size: 25px;
  color: #444;
  width: 90%;
}

/* Блок дня */
.day-block {
  position: sticky;
  top: 6rem;                /* фиксируем при скролле */
  margin-bottom: 0.5rem;
  padding: 3rem 3.5rem 3.5rem;
  border-radius: 2.5rem;
  z-index: 1;
}

.day-block h3 {
  font-size: 32px;
  margin: 0 0 25px 0 ;
}


.tour-days .day-block:nth-of-type(odd) {
  background: url('img/bg/white.webp'); /* 1, 3, 5 */
}
.tour-days .day-block:nth-of-type(even) {
  background: url('img/bg/orange.webp'); /* 2, 4 */
}



/* Карточки дня */
.day-cards {
  display: flex;
  gap: 0.5rem;
}
.day-card {
  position: relative;
  flex: 1;
  height: 420px; /* фикс высота */
  border-radius: 20px;
  border: 1px solid #fff;

  /* фон */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
    padding: 16px;
  overflow: hidden;
}
/* фоновые картинки */
.card01 { background-image: url('img/01.webp'); }
.card02 { background-image: url('img/02.webp'); }
.card03 { background-image: url('img/03.webp'); }
.card04 { background-image: url('img/04.webp'); }

.card11 { background-image: url('img/11.webp'); }
.card12 { background-image: url('img/12.webp'); }
.card13 { background-image: url('img/13.webp'); }
.card14 { background-image: url('img/14.webp'); }

.card21 { background-image: url('img/21.webp'); }
.card22 { background-image: url('img/22.webp'); }
.card23 { background-image: url('img/23.webp'); }
.card24 { background-image: url('img/24.webp'); }

.card31 { background-image: url('img/31.webp'); background-position: right; }
.card32 { background-image: url('img/32.webp'); }
.card33 { background-image: url('img/33.webp'); }
.card34 { background-image: url('img/34.png'); }

.card41 { background-image: url('img/41.webp'); }
.card42 { background-image: url('img/42.webp'); }
.card43 { background-image: url('img/43.webp'); }
.card44 { background-image: url('img/44.webp'); }

.card51 { background-image: url('img/51.webp'); }
.card52 { background-image: url('img/52.webp'); }
.card53 { background-image: url('img/53.webp'); }
.card54 { background-image: url('img/54.webp'); }

.card71 { background-image: url('img/51.png'); }
.card72 { background-image: url('img/52.png'); }
.card73 { background-image: url('img/53.png'); } 
.card74 { background-image: url('img/54.png'); }

.card61 { background-image: url('img/61.png'); }
.card62 { background-image: url('img/62.png'); }
.card63 { background-image: url('img/63.png'); } 
.card64 { background-image: url('img/64.png'); }
/* Оверлей */
.day-card-overlay {
  background: rgba(26, 26, 26, 0.25);
  border: 0.5px solid rgba(250, 250, 250, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  color: #fff;
  padding: 1rem;
  border-radius: 0.75rem;
  margin: 1rem;
  font-size: 16px;
}

/* Бейдж */
.day-badge {
  position: absolute;
  top: 2rem;
  left: 55%;
  transform: translateX(-10%);
  white-space: nowrap;
  display: inline-block;
  background: #fff;
  color: #000;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 50px;
}

/* описание */
.day-descr {
  background: rgba(26,26,26,0.25);
  border: 0.5px solid rgba(250,250,250,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: #fff;
  padding: 1rem;
  border-radius: 10px;
  font-size: 16px;
}

/* Нижняя кнопка */
.tour-footer {
  text-align: center;
  margin-top: -5rem;
}
.tour-footer .btn-dark {
  background: #016D30;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 1.5rem 2.5rem;
  font-size: 16px;
  cursor: pointer;
  font-family: 'Inter';
  display: inline-block;
  text-decoration: none;
}
.tour-footer p {
  margin-top: 1.5rem;
  font-size: 18px;
}

.tours {
    max-width: 1440px;
    margin: 0px auto;
    padding: 8rem 5rem 8rem;
    background: #f7f7f7;
    font-family: "Inter", sans-serif;
}

.tours__title {
    font-size: 60px;
    text-align: left;
    margin-bottom: 32px;
    font-weight: 700;
    letter-spacing: -1.2px;
    line-height: 1;
}

.tours__title span {
    color: #ff9800;
    /* оранжевый */
}

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

.tour-card {
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    border: 2px solid #FFF;


}

.tour-card--green {
    background: #0a7c3d;
    color: #fff;
}

.tour-card--orange {
    background: #f7931e;
    color: #fff;
}

.tour-card--white {
    background: #fff;
    border: 1px solid #eee;
    color: #000;
}

.tour-card__tag {
    margin-bottom: 40px;

    border-radius: 20px;
    font-size: 16px;
    border: 1px solid #fff;
    text-align: left;
    padding: 8px 16px;
    width: fit-content;
    text-transform: uppercase;
}

.tour-card__date {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 64px;
    letter-spacing: -0.64px;
    font-weight: 700;
    text-align: left;

}

.tour-card__places {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.2;
    text-align: left;

}

.tour-card__text h2 {
    font-size: 29px;
    margin-bottom: 32px;
    line-height: 1;
    letter-spacing: -0.58px;
    font-weight: 700;
    color: #1A1A1A;


}

.tour-card__text p {
    font-size: 16px;
    margin-bottom: 44px;
    line-height: 1.2;
    font-weight: 400;
    color: #1A1A1A;


}

.tour-card__btn {
    background: #fff;
    color: #1A1A1A;
    border: none;
    border-radius: 8px;
    padding: 20px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    transition: 0.3s;
    font-family: Inter;
    text-transform: uppercase;

}

.tour-card__btn:hover {
    opacity: 0.9;
}

.tour-card__btn--orange {
    background: #ff9800;
    color: #fff;
}


/* Блок "Зачем ехать в тур" */
.why-tour {
  padding: 8rem 5rem;   /* отступы сверху и снизу по 100px */
  max-width: 1440px;
  margin: 0 auto;
}

.why-tour h2 {
  font-size: 60px;
  text-align: left;
  margin-bottom: 2rem;
  font-weight: bold;
}

.why-cards {
  display: flex;
  gap: 1.5rem;
}

.why-card {
  flex: 1;
  border-radius: 1rem;
  padding: 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  min-height: 560px;
  position: relative; /* ✅ фиксируем область для ::before */
  overflow: hidden;   /* ✅ чтобы градиент не вылезал за края */
}

/* Фоновые изображения */
.why1 { background-image: url("img/why1.webp"); }
.why2 { background-image: url("img/why2.webp"); }
.why3 { background-image: url("img/why3.webp"); }

/* Полупрозрачный градиент снизу */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  z-index: 1;
}

.why-card h3,
.why-card p,
.why-card .tags,
.why-card button {
  position: relative;
  z-index: 2;
}

.why-card h3 {
  font-size: 32px;
  margin-bottom: 1.5rem;
  width: 70%;
}

.why-card p {
  font-size: 18px;
  margin-bottom: 2rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;   /* разрешаем перенос */
  gap: 0.5rem;
  margin-bottom: auto;
  max-width: 90%;    /* ограничиваем ширину, чтобы 2 влезли, а 3-й ушёл вниз */
  
}

.tags span {
  background: rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 16px;
  backdrop-filter: blur(5px);
  white-space: nowrap; /* чтобы текст не ломался внутри */
  border: 1px solid #fff;
  
}

.why-card a {
  display: inline-block;
  text-decoration: none;
  background: #F6911E;
  border: none;
  border-radius: 0.5rem;
  width: 100%;
  padding: 1rem 3rem;
  font-size: 16px;
  color: white;
  cursor: pointer;
  text-align: center;
  font-family: 'Inter';
  z-index: 9999;
}

/* 4 экран */
.trip-photos {
  padding: 0 5rem 3rem;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  background:url(img/bg/white.webp);
  border-radius: 40px;
}

.trip-photos h2 {
  font-size: 60px;
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 1rem;
}

.trip-photos h2 span {
  color: #016D30; /* зелёный акцент */
}

.trip-photos .sub {
  font-size: 24px;
  margin-bottom: 2rem;
  color: #444;
}

.photos-grid {
  display: flex;
  gap: 0.5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.photos-col {
  flex: 1;               /* каждая колонка занимает равную ширину */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;             /* отступы между фото в колонке */
}

.photos-col:nth-child(2),
.photos-col:nth-child(4) {
  margin-top: 40px;      /* смещение вниз */
}

.photo {
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  aspect-ratio: 3 / 4;
}


/* Фоновые фото */
.photo1 { background-image: url("img/p1.webp"); }
.photo2 { background-image: url("img/p2.webp"); }
.photo3 { background-image: url("img/p3.webp"); }
.photo4 { background-image: url("img/p4.webp"); }
.photo5 { background-image: url("img/p5.webp"); }
.photo6 { background-image: url("img/p6.webp"); }
.photo7 { background-image: url("img/p7.webp"); }
.photo8 { background-image: url("img/p8.webp"); }

/* 5 экран */
.guide {
  padding: 100px 5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.guide h2 {
  font-size: 60px;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: bold;
  line-height: 1.1;
}
.guide h2 span { color: #f6911e; }

.guide .sub {
  text-align: center;
  font-size: 24px;
  color: #444;
  margin-bottom: 2rem;
margin:  0 8rem 2rem 8rem;}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.5rem;
  align-items: stretch;
}

/* Левая колонка (фото + текст) */
.guide-photo {
  background: url("img/guide.webp") no-repeat center/cover;
  border-radius: 1rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  position: relative;
  min-height: 420px;
  width: 640px;
}



.guide-photo h3,
.guide-photo p {
  position: relative;
  z-index: 2;
  margin: 0;
}

.guide-name {
  font-size: 40px;
  font-weight: bold;
  width: 50%;
}

.guide-desc {
  font-size: 18px;
  line-height: 1.4;
  width: 50%;
}

/* Факты */
.guide-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.fact {
  padding: 2rem;
  border-radius: 1rem;
}

.fact:nth-child(1), .fact:nth-child(4) {
  background: url(img/bg/orange.webp);
  color: #000; border: 2px solid #fff;
}
.fact:nth-child(2), .fact:nth-child(3) {
  background: url(img/bg/white.webp);
  color: #000;border: 2px solid #fff;
}

.fact h4 {
  font-size: 32px;
  margin-bottom: 1rem;
  width: 85%;
}
.fact p {
  font-size: 16px;
  line-height: 1.4;
}

/* Нижний блок */
.guide-info {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 0.5rem;
  padding: 2rem;
  background: url(img/bg/orange.webp);
  border-radius: 20px;
  border: 2px solid #fff;
}

/* Левая часть */
.info-left {
  background: url(img/bg/white.webp);
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid #fff;
}

.info-left h3 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.info-left p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  font-size: 20px;
  width: 80%;
 
}

.info-left p b {
  color: #016D30;
}

.info-left p:not(.price) {
  border-bottom: 1px dashed #9C9C9C; /* полоска как разделитель */
  padding-bottom: 1rem;
}

.info-left p:nth-of-type(2) {
  margin-bottom: 1.5rem;
}

.info-left p b + * {
  color: #2e9c54; /* зелёный текст справа */
  text-transform: uppercase;
}

/* Цена */
.info-left .price {
  font-size: 80px;
  font-weight: bold;
  color: #016D30;
  margin-top: 2.5rem;
  display: block;
}

.info-left .price span {
  display: block;
  font-size: 16px;
  font-weight: normal;
  color: #555;
  margin-top: 0.5rem;
}

/* Форма */
.info-form {
  background: url("img/formbg.webp") no-repeat center/cover;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  border: 2px solid #fff;
}
.info-form input {
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 16px;
}
.info-form button {
  background: #016D30;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: 'Inter'
}

.tour-select {
    position: relative;
    font-family: Inter, sans-serif;
    width: 100%;
    max-width: 80%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    margin-bottom: 32px;
    padding-bottom: 15px;
}

.tour-select__label {
    font-size: 20px;
    color: #1A1A1A;
}

.tour-select__current {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 8px;
}


.tour-select__text {
    cursor: pointer;
    color: #016D30;
    font-weight: 700;
    transition: 0.3s;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.8px;
}

.tour-select__list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-radius: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: max-height 0.3s ease;
    z-index: 100;
    border: 1px dashed #9C9C9C;
}

.tour-select.open .tour-select__list {
    max-height: 240px;
    /* высота, потом скролл */
    overflow-y: auto;
    border: none;
    padding: 30px;
}

.tour-select__list li {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 18px;
}

.tour-select__list li:hover {
    background: #f7f7f7;
}

/* стрелка — треугольник */
.tour-select__arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #007a3d;
    /* зелёный треугольник */
    transition: transform 0.3s ease;
}

/* при открытии списка */
.tour-select.open .tour-select__arrow {
    transform: rotate(180deg);
    /* переворот */
}

.tour-select.open .tour-select__arrow {
    transform: rotate(180deg);
    /* вверх */
}

/* кастомные квадратики вместо точек */
.tour-select__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
}

.tour-select__list input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #007a3d;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    background: #F7F7F7;
}

.tour-select__list input[type="radio"]:checked {
    background: #007a3d;
}

.tour-select__list input[type="radio"]:checked::after {
    content: "✔";
    position: absolute;
    top: -2px;
    left: 2px;
    font-size: 12px;
    color: #fff;
}

/* фиксируем выпадающий список под инпутом */
.iti {
    position: relative;
    width: 100%;
}

.iti__country-list {
    position: absolute;
    top: 100%;
    /* сразу под полем */
    left: 0;
    right: 0;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    width: 575px;
    /* ✅ теперь список всегда подгоняется под контейнер */
    box-sizing: border-box;
}

/* сам input */
.iti input {
    width: 100%;
    padding: clamp(0.6rem, 2vw, 1rem);
    border: none;
    border-radius: 0.5rem;
    font-size: clamp(14px, 3.5vw, 16px);
    background-color: white;
    box-sizing: border-box;
}

/* контейнер флага */
.iti__flag-container {
    z-index: 10;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: rgb(255 255 255 / 5%) !important;
}


/* Что взять с обой блок */
.equipment {
  padding: 50px 5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.equipment h2 {
  text-align: left;
  font-size: 60px;
  margin-bottom: 2rem;
}

.equipment-slider {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;         /* горизонтальный скролл */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

/* Скрываем стандартные скроллбары */
.equipment-slider::-webkit-scrollbar {
  height: 8px;             /* можно убрать совсем, если не нужен */
}

.equipment-slider::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.equipment-slider::-webkit-scrollbar-track {
  background: transparent;
}

.equipment-card {
  flex: 0 0 310px;
  height: 420px;
  border-radius: 1rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  scroll-snap-align: start;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}



.card-content {
  position: relative;
  z-index: 2;
}

.card-content h3 {
  font-size: 32px;
  margin-bottom: 1.5rem;
}

.card-content p {
  font-size: 16px;
  margin-bottom: 2rem;
}

.card-content a {
  display: inline-block;
  text-decoration: none;
  background: #F6911E;
  border: none;
  border-radius: 0.5rem;
  padding: 1rem 4rem;
  font-size: 16px;
  color: white;
  cursor: pointer;
  font-family: 'Inter';

  
}

.card-content a:hover {
  background: #e37b00;
}

/* Фоновые картинки */
.equip1 { background-image: url("img/eq1.webp"); }
.equip2 { background-image: url("img/eq2.webp"); }
.equip3 { background-image: url("img/eq3.webp"); }
.equip4 { background-image: url("img/eq4.webp"); }
.equip5 { background-image: url("img/eq5.webp"); }

/* Нижняя кнопка */
.equipment-footer {
  text-align: center;
}

.equipment-footer .btn-dark {
  background: #016D30;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 1.5rem 2.5rem; /* чуть шире */
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s ease;
    font-family: 'Inter';
    display: inline-block;
    text-decoration: none;


}

.equipment-footer .btn-dark:hover {
  background: #249548; /* эффект наведения */
}

.equipment-footer p {
  margin: 1.5rem 0 6rem 0;
  font-size: 18px;
  color: #333;
}

/* Отзывы */

.reviews {
  background: url(img/bg/orange.webp);
  padding: 2rem 3.5rem;
  border-radius: 1rem;
  max-width: 1440px;
  margin: 2rem auto;
}

.reviews h2 {
  font-size: 60px;
  margin-bottom: 2rem;
}

.reviews-slider {
  display: flex;            /* все карточки в ряд */
  gap: 0.5rem;                /* расстояние между ними */
  overflow-x: auto;         /* горизонтальный скролл */
  scroll-snap-type: x mandatory; /* прилипание по карточкам */
  padding-bottom: 1rem;


/* скрываем стандартный скролл */
  scrollbar-width: none;   /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.reviews-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.review-card {
  flex: 0 0 320px;          /* фиксированная ширина */
  scroll-snap-align: start; /* прилипание */
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.review-card img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  margin-bottom: .5rem;
}

.review-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.stars {
  color: #2e9c54;
  font-size: 14px;
  margin: .5rem 0 1rem;
}

.review-text {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.scrollbar {
  position: relative;
  height: 8px;
  background: #fff;   /* 👉 фон линии (у тебя сейчас серый — тут меняешь) */
  border-radius: 3px;
  margin-top: 1.5rem;
}

.scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  background: #2e9c54;  /* 👉 цвет бегунка */
  border-radius: 3px;

  width: 300px;         /* 👉 длина ползунка, можно поставить ширину карточки */
}


/* верхняя часть: фото + инфо */
.review-header {
  display: flex;
  align-items: flex-start; /* имя и блок звёзд сверху */
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-header img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.review-info h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 0.3rem;
}

.stars {
  color: #2e9c54;
  font-size: 18px;
  margin-bottom: 0.3rem;
}

.video-link {
  color: #777;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}

.video-link:hover {
  color: #000;
}

.review-text {
  font-size: 16px;
  line-height: 1.4;
  color: #333;
}
/* FAQ */

.faq {
  max-width: 800px;
  margin: 6rem auto;
  font-family: Inter, sans-serif;
}

.faq h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 60px;
}

.faq-item {
   border-radius: 8px;      /* закругляем один контейнер */
  overflow: hidden;        /* чтобы радиусы применялись и к answer */
  padding: 0 0 0.5rem 0;
}

.faq-question {
  width: 100%;
  background: white;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 1.5rem;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  text-transform: uppercase;
  text-align: left;
    font-family: 'Inter'

}

.faq-question .icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.faq-question .icon::before,
.faq-question .icon::after {
  content: "";
  position: absolute;
  background: black;
  transition: all 0.3s ease;
    border-radius: 2px;

}

.faq-question .icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.faq-question .icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

/* активное состояние (крестик) */
.faq-item.active .icon::before {
  background: #016D30; /* зелёный */
  transform: rotate(130deg);
}

.faq-item.active .icon::after {
  background: #016D30; /* зелёный */
  transform: rotate(-45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.2s ease, padding 0.2s ease;
  padding: 0 1rem;
    border-radius: 0 0 8px 8px; /* только низ */

}

/* когда открыто */
.faq-item.active .faq-question {
  border-radius: 8px 8px 0 0; /* только верх */
}

.faq-item.active .faq-answer {
  max-height: 500px; /* достаточно большое значение */
  padding: 0 1.5rem 1.5rem;
    color: #646464;

}

.questions {
  max-width: 1440px;
  margin: 3rem auto;
  padding: 0 5rem;
}

.questions-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  gap: 0.5rem;
}

.questions-form {
  background: url(img/bg/orange.webp);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 25px;
}

.questions-form h2 {
  font-size: 40px;
  margin-bottom: 1rem;
  text-align: center;
}

.questions-form p {
  margin-bottom: 2rem;
  color: #333;
  font-size: 18px;
  text-align: center;
}

.questions-form form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.questions-form input {
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 16px;
}

.questions-form .form-note {
  font-size: 16px;
  color: #555;
  margin-top: 0.5rem;
  text-align: left;
}

.questions-form button {
  background: #016D30;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 0.5rem;
    font-family: 'Inter'

}

.questions-photo {
  background: url("img/man.webp") no-repeat center/cover;
  border-radius: 25px;
}


/* Блок с фото */
.final-block {
  position: relative;
  background: url("img/footer.webp") no-repeat center center/cover; /* твоё фото */
  height: 610px;          /* фиксированная высота */
  border-radius: 3rem 3rem 0 0;
  display: flex;
  align-items: center;    /* выравниваем по центру по вертикали */
  justify-content: center;
  text-align: center;
  color: white;
}

.final-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
  backdrop-filter: blur(20px);       /* блюр заднего фона */
  -webkit-backdrop-filter: blur(20px); /* для Safari */
  z-index: 1;
}

.final-section > * {
  position: relative;
  z-index: 2; /* чтобы текст и кнопки были поверх блюра */
}

.final-overlay {
  max-width: 900px;
  padding: 2rem;
}

.final-block h2 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #FAFAFA;

}

.final-options {
  display: flex;
  justify-content: center;
  gap: 10rem;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
}

.option--first {
  border: 1px solid rgba(255,255,255,0.4);
    z-index: 1;
  border-radius: 0.5rem;
  padding: 1.5rem 1rem;
  font-size: 16px;
  max-width: 330px;
  height: 90px;
  text-align: left;
  background: linear-gradient(
  180deg,
  rgba(156, 156, 156, 0) 0%,     /* светло-серый прозрачный */
  rgba(109, 109, 109, 0.25) 100%    /* тёмнее, тоже прозрачный */
);
backdrop-filter: blur(20px);
color: #FAFAFA;

}


.option--two {
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 16px;
  max-width: 330px;
  height: 90px;
  text-align: left;
  background: linear-gradient(
  180deg,
  rgba(156, 156, 156, 0) 0%,     /* светло-серый прозрачный */
  rgba(109, 109, 109, 0.25) 100%    /* тёмнее, тоже прозрачный */
);
backdrop-filter: blur(20px);
color: #FAFAFA;
}

.btn-choose {
  background: #016D30;
  border: none;
  border-radius: 0.5rem;
  padding: 1.5rem 5.5rem;
  font-size: 16px;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
    font-family: 'Inter'

}

.btn-choose:hover {
  background: #248243;
}

/* Футер */
.footer {
  background: #1A1A1A;
  text-align: center;
  padding: 2rem;
  color: #FAFAFA;
  font-size: 18px;
}






/* По умолчанию */
.desktop-only { display: block; }
.header-mobile{ display: none; }
.mobile-only { display: none; }

.tour-days .scrollbar {
  display: none;
}
/* Мобилка */
/* ===================== */
/* 🔹 МОБИЛЬНАЯ ВЕРСИЯ   */
/* ===================== */
@media (max-width: 768px) {
  .desktop-only { display: none ; }
  .mobile-only { display: block ; }
  .header-mobile{ display: block; }
    .header{ display: none; }



   .first-screen.mobile-only {
    background: url("img/frame1.webp") no-repeat center center;
    background-size: cover;
    padding: 0 clamp(0.5rem, 7vw, 5rem) clamp(1rem, 4vw, 1.5rem);
  }

  /* Шапка */
  .logo {
    width: clamp(50px, 10vw, 70px);
    height: auto;
    display: block;
    }

  .header-mobile {
  position: sticky;       /* липкий */
  top: 0;
  z-index: 10000;         /* поверх контента */
  background: #fff;       /* фон */
  display: flex;
  justify-content: space-between;
  align-items: center;
        padding: clamp(0.5rem, 2vw, 1rem) clamp(4rem, 3vw, 6rem);}

/* Бургер (адаптивный) */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: clamp(22px, 7vw, 28px);
  height: clamp(16px, 6vw, 20px);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  border-radius: 1px;
  transition: 0.3s;
}
  /* Основная структура */
  .main-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Большое фото */
 .img-wrapper-mobile.card-left {
  position: relative;
  width: 100%;
  max-width: 660px;
  min-height: 300px;
  aspect-ratio: 16/9; /* картинка всегда резиновая */
  border-radius: clamp(12px, 3vw, 20px);
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid #fff;

}

  /* Текст */
  .overlay-text-mobile {
  position: absolute;
  bottom: clamp(0.8rem, 5vw, 3.5rem);
  right: clamp(0.8rem, 5vw, 3.5rem);
  color: #fff;
  text-align: right;
  max-width: 90%;
}

 .overlay-text-mobile h1 {
  font-size: 30px;
  margin-bottom: 0.5rem;
  line-height: 1;
}

 .overlay-text-mobile p {
  font-size: 16px;
  line-height: 1.2;
}

  /* Кнопка */
 .btn-dark-mobile {
  padding: clamp(0.4rem, 2vw, 0.5rem) clamp(0.8rem, 3vw, 1rem);
  border-radius: 20px;
  border: none;
  background: #fff;
  font-size: clamp(12px, 3vw, 16px);
  cursor: pointer;
  font-family: 'Inter';
  text-transform: uppercase;
  color: #000 !important;
 }
.top-row {
  position: absolute;
  top: clamp(0.5rem, 4vw, 2rem);
  left: clamp(0.5rem, 4vw, 2rem);
  right: clamp(0.5rem, 2vw, 1rem);

  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1rem);
  flex-wrap: wrap; /* перенос на маленьких экранах */
}
  /* Соцсети */

.img-wrapper-mobile  .Insta:hover,
.img-wrapper-mobile  .FB:hover {
  transform: scale(1.2);
}
.socials {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1rem);
}

.socials img {
  width: clamp(18px, 5vw, 30px);
  height: clamp(18px, 5vw, 30px);
}
  /* Два фото рядом */
 .center-mobile {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 8px;           /* отступ от блока сверху */
  gap: 0;                    /* убираем разрывы */
  position: relative;        /* для управления слоями */
  max-width: 660px;
  margin-inline: auto;
}

.center-mobile .img-wrapper-mobile {
  width: 100%;   /* делим контейнер пополам */
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
}

/* Левое фото */
.center-mobile .card-center2 {
  margin-right: -50px;  /* перекрываем правое */
  z-index: 2;           /* сверху */
}

/* Правое фото */
.center-mobile .card-center2 {
  z-index: 1;           /* снизу */
}

  /* Видео */
 .video-preview-mobile {
  width: 100%;
  height: clamp(200px, 40vw, 285px);     /* от 200px до 285px */
  border-radius: clamp(12px, 3vw, 25px);
  background: url("img/prev.webp") no-repeat center/cover;
  position: relative;
  margin: clamp(0.5rem, 1vw, 1rem) auto;
  border: 2px solid #fff;
}

 .video-preview-mobile .play-btn {
  width: clamp(40px, 10vw, 50px);
  height: clamp(40px, 10vw, 50px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("img/icon/btn.svg") no-repeat center/contain;
}

 /* 🔹 Контейнер карточек */
.cards-mobile {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.5rem, 2vw, 1rem);
  margin: 0 auto;
  max-width: 100%;
}

/* 🔹 Зелёная карточка */
.cards-mobile .card.green {
  grid-column: 1 / -1;
  width: 100%;   /* от 300 до 600 */
  height: 100%;  /* от 110 до 136 */
  padding: clamp(0.8rem, 3.5vw, 1.5rem);
  border-radius: clamp(12px, 3vw, 24px);
  position: relative;
  margin: 0 auto;
}

.card.green h2 {
  font-size: clamp(20px, 4vw, 30px);
  margin: 0 0 0.5rem;
}

.card.green p {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

/* 🔹 Контейнер оранжевой и белой карточек */
.cards-mobile .bottom-cards {
  display: grid;
  grid-template-columns: 1fr;  /* на мобилке всегда в колонку */
  gap: clamp(0.5rem, 3vw, 1rem);
  width: 100%;
}

/* 🔹 Оранжевая и белая карточки */
.card.orange,
.card.white {
  width: 100%;
  height: 100%;
  padding: clamp(0.8rem, 3.5vw, 1.5rem);
  border-radius: clamp(12px, 3vw, 24px);
  margin: 0 auto;
}

.card.orange h2,
.card.white h2 {
  font-size: clamp(18px, 4vw, 30px);
  margin: 0 0 0.3rem;
}

.card.orange p,
.card.white p {
  font-size: 16px;
  line-height: 1.1;
  margin: 0;
}

/* 🔹 Универсальные кнопки */
.card .button__1,
.card .button__2 {
  font-size: clamp(14px, 2.5vw, 16px);
  padding: clamp(8px, 2vw, 8px) clamp(16px, 4vw, 16px);
  border-radius: clamp(20px, 10vw, 50px);
  border: none;
  cursor: pointer;
  margin: 0 0 1.5rem 0;
}

.card .button__3 {
  font-size: clamp(14px, 2.5vw, 16px);
  padding: clamp(8px, 2vw, 8px) clamp(16px, 4vw, 16px);
  border-radius: clamp(20px, 10vw, 50px);
  border: none;
  cursor: pointer;
  margin: 0 0 1.5rem 0;
  border: 1px solid #000;
}

.tour-days {
  padding: clamp(2rem, 8vw, 7.5rem) clamp(0.5rem, 6vw, 5rem);
  overflow: visible; /* чтобы sticky работал */
}

/* Контейнер карточек — горизонтальный скролл */
.day-cards {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;

  /* скрываем стандартный скролл */
  scrollbar-width: none;  
  -ms-overflow-style: none;
}
.day-cards::-webkit-scrollbar {
  display: none;
}
/* зелёный прогресс-скролл */
 .tour-days .scrollbar {
  display: block;
  position: relative;
  height: 6px;
  background: #ddd;
  border-radius: 3px;
  margin: 1rem auto 0;
  max-width: 90%;
}

  .tour-days .scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  background: #2e9c54;
  border-radius: 3px;
  width: clamp(80px, 25vw, 110px) !important;
  transition: left 0.2s linear;
}

  .day-card {
  flex: 0 0 clamp(220px, 60vw, 270px);   
  height: clamp(320px, 70vw, 420px);     
  scroll-snap-align: start;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: clamp(12px, 3vw, 20px);
  position: relative;
  overflow: visible;
}

  .day-card-overlay,
  .day-descr {
    font-size: 14px;           
  }
.tour-header h2 {
  font-size: clamp(22px, 6vw, 44px);
  line-height: 1.2;
  width: 100%;
}

.tour-header p {
  margin: 1rem auto 0;
  font-size: 16px;
  color: #444;
  width: 100%;
}

.day-block {
  top: 4rem;
  z-index: 1;
  padding: 1.5rem;
}

.day-block h3 {
  font-size: clamp(18px, 5vw, 24px);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.day-badge {
  position: absolute;
  top: clamp(5%, 7vw, 10%);
  left: clamp(48%, 55vw, 54%);
  font-size: clamp(12px, 3.5vw, 14px);
}
.why-tour h2 {
  font-size: clamp(22px, 8vw, 44px);
  text-align: left;
  margin-bottom: clamp(1rem, 4vw, 2rem);
  font-weight: bold;
}
.why-tour {
  padding: clamp(2rem, 8vw, 5rem) clamp(0.5rem, 5vw, 2rem);
  max-width: 1440px;
  margin: 0 auto;
}
.tour-footer {
  text-align: center;
  margin-top: clamp(-1rem, -2vw, -2rem);
}
  .tour-footer p {
  margin-top: 0.5rem;
  font-size: 16px;
}
.tour-footer .btn-dark {
  background: #016D30;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: clamp(0.8rem, 3vw, 1.3rem);
  font-size: clamp(12px, 3.5vw, 14px);
  cursor: pointer;
  font-family: 'Inter';
  margin: 0 clamp(4px, 2vw, 8px);
}
.why-cards {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}

  .why-cards::-webkit-scrollbar {
  display: none;
}

  .why-card {
  flex: 0 0 clamp(240px, 75vw, 400px);   /* ширина от 240px → до 400px */
  min-height: clamp(280px, 75vw, 420px); /* высота от 280px → до 420px */
  scroll-snap-align: start;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: clamp(12px, 3vw, 20px);
  display: flex;
  flex-direction: column;
}

 .why-card h3 {
  font-size: 24px;
  width: 100%;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  font-weight: bold;
  margin-top: 65px;
}
 .why-card p {
  font-size: 16px;
  line-height: 1.2;
  flex-grow: 1; /* чтобы текст занимал всё пространство */
}
  .tags span {
  font-size: clamp(12px, 3.5vw, 14px);
  padding: clamp(0.3rem, 2vw, 0.5rem) clamp(0.6rem, 3vw, 1rem);
  border: 1px solid #ddd;
  border-radius: 0.5rem;
}

 .why-card button {
  font-size: clamp(14px, 5vw, 16px);
  padding: clamp(0.8rem, 3vw, 1rem) clamp(2rem, 16vw, 10rem);
  border-radius: 0.5rem;
  border: none;
  background: #F6911E;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Inter';
  margin-top: auto;
}
.why-card button:hover {
  background: #249548;
}
 .tags {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.3rem, 2vw, 0.5rem);
  width: 90%;
}



/* 4 экран */
.trip-photos {
  padding: clamp(2rem, 8vw, 5rem) clamp(0.5rem, 6vw, 3rem);
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  background: url(img/bg/white.webp);
  border-radius: clamp(20px, 6vw, 40px);
}

.trip-photos h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.trip-photos h2 span {
  color: #016D30; /* зелёный акцент */
}

.trip-photos .sub {
  font-size: 16px;
  margin-bottom: clamp(1rem, 4vw, 2rem);
  color: #444;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* на мобилке 2 колонки */
  gap: clamp(0.3rem, 2vw, 0.8rem);
  max-width: 1440px;
  margin: 0 auto;
}

.photos-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 колонки на мобилке */
  }

.photos-col {
    display: contents;  /* раскладываем фото в grid */
  }
  
.photo {
  border-radius: clamp(12px, 3vw, 24px);
  background-size: cover;
  background-position: center;
  aspect-ratio: 3 / 4;
}

/* 👉 смещаем каждый второй элемент (правую колонку) */
  .photos-grid .photo:nth-child(2n) {
  transform: translateY(clamp(10px, 3vw, 20px));
}
.guide {
  padding: clamp(2rem, 10vw, 6rem) clamp(0.5rem, 6vw, 3rem);
  margin: 0 auto;
  max-width: 1440px;
}

  /* Весь блок гида */
 .guide-grid {
  display: grid;
  grid-template-columns: 1fr;  /* всегда в колонку на мобилке */
  gap: clamp(0.5rem, 2vw, 1rem);
}

 .guide h2 {
  font-size: 30px;
  margin-bottom: clamp(0.5rem, 2vw, 1.5rem);
  font-weight: bold;
}

.guide .sub {
  text-align: center;
  font-size: 16px;
  color: #444;
  margin: 0 0 clamp(1rem, 4vw, 2rem) 0;
}

  /* ✅ Факты остаются 2 на 2 */
  .guide-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* сохраняем сетку */
    gap: 0.5rem;
  }

  /* Блок цена + форма в колонку */
  .guide-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.5rem;
  }

  .guide-photo {
  background: url(img/guide.webp) no-repeat center / cover;
  border-radius: clamp(12px, 3vw, 20px);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1rem, 3vw, 2rem);
  position: relative;
  min-height: clamp(260px, 70vw, 420px);
  width: 100%;
  margin: 0 auto;
}
.guide-name {
  font-size: 30px;
  font-weight: bold;
  width: 40%;
}
.guide-desc {
  font-size: 16px;
  line-height: 1.3;
  width: 50%;
}
.info-left {
  background: url(img/bg/white.webp);
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: clamp(12px, 3vw, 20px);
  border: 2px solid #fff;
}
  /* Цена на мобилке меньше */
  .info-left .price {
  font-size: clamp(42px, 12vw, 64px);
  margin: clamp(1.5rem, 5vw, 2.5rem) 0 0 0;
}
.guide-facts {
  display: grid;
  gap: clamp(0.5rem, 1vw, 1rem);
}
.fact {
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: clamp(12px, 3vw, 20px);
  background: #fff;
}

.fact h4 {
  font-size: clamp(16px, 5vw, 24px);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.fact p {
  font-size: 16px;
  line-height: 1.3;
}

.info-left h3 {
  font-size: clamp(18px, 6vw, 30px);
  font-weight: bold;
  margin-bottom: clamp(1rem, 4vw, 2rem);
}

.info-left .price span {
  display: block;
  font-size: clamp(12px, 3.5vw, 14px);
  font-weight: normal;
  color: #555;
  margin-top: 0.5rem;
}
.info-form {
  background: url(img/formbg.webp) no-repeat center / cover;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: clamp(12px, 3vw, 20px);
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 2vw, 1rem);
  justify-content: center;
  border: 2px solid #fff;
}
.info-form button {
  background: #016D30;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  font-size: clamp(12px, 3.5vw, 15px);
  cursor: pointer;
  text-transform: uppercase;
  font-family: 'Inter';
}

.info-left p {
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  font-size: clamp(13px, 3.5vw, 15px);
  width: 100%;
}
/* Что взять с обой блок */
.equipment {
  padding: clamp(2rem, 8vw, 5rem) clamp(0.5rem, 6vw, 3rem) 0;
  max-width: 1440px;
  margin: 0 auto;
}


.equipment h2 {
  text-align: left;
  font-size: clamp(22px, 6vw, 44px);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: bold;
}

.equipment-slider {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

/* Скрываем стандартные скроллбары */
.equipment-slider::-webkit-scrollbar {
  display: none;
}

.equipment-slider {
  scrollbar-width: none;    /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.equipment-card {
  flex: 0 0 clamp(240px, 75vw, 400px);   
  min-height: 420px;     
  border-radius: clamp(12px, 3vw, 20px);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  scroll-snap-align: start;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.card-content {
  position: relative;
  z-index: 2;
}

.card-content h3 {
  font-size: 24px;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.card-content p {
  font-size: 16px;
  margin-bottom: clamp(1rem, 4vw, 2rem);
  width: 100%;
}

.card-content button {
  background: #F6911E;
  border: none;
  border-radius: 0.5rem;
  font-size: clamp(14px, 5vw, 16px);
  color: white;
  cursor: pointer;
  font-family: 'Inter';
  width: 100%;
  padding: clamp(0.8rem, 3vw, 1rem);
  transition: background 0.3s ease;
}

.card-content button:hover {
  background: #e37b00;
}

.equip1 { background-image: url("img/eq1.webp"); }
.equip2 { background-image: url("img/eq2.webp"); }
.equip3 { background-image: url("img/eq3.webp"); }
.equip4 { background-image: url("img/eq4.webp"); }
.equip5 { background-image: url("img/eq5.webp"); }
/* Нижняя кнопка */
.equipment-footer {
  text-align: center;
  margin-top: clamp(1.5rem, 5vw, 3rem);
}

.equipment-footer .btn-dark {
  background: #016D30;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(0.5rem, 2vw, 2.5rem);
  font-size: clamp(13px, 4vw, 16px);
  cursor: pointer;
  text-transform: uppercase;
  font-family: 'Inter';
  transition: background 0.3s ease;
}

.equipment-footer .btn-dark:hover {
  background: #249548; /* эффект наведения */
}

.equipment-footer p {
  margin: clamp(0.5rem, 2vw, 1rem) 0 clamp(2rem, 6vw, 5rem);
  font-size: 16px;
  color: #333;
}

/* Отзывы */

.reviews {
  background: url(img/bg/orange.webp);
  padding: clamp(1rem, 4vw, 2rem) clamp(0.5rem, 6vw, 3.5rem);
  border-radius: clamp(12px, 3vw, 20px);
  max-width: 1440px;
  margin: clamp(1rem, 5vw, 2rem) clamp(1rem,7vw,4rem);
}

.reviews h2 {
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: bold;
  text-align: left;
}

.reviews-slider {
  display: flex;
  gap: clamp(0.3rem, 2vw, 1rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;

  /* скрываем скролл */
  scrollbar-width: none;  
  -ms-overflow-style: none;
}
.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 clamp(200px, 68vw, 320px); /* ширина от 220px до 320px */
  scroll-snap-align: start;
  background: #fff;
  border-radius: clamp(12px, 3vw, 20px);
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.review-card img {
  width: clamp(40px, 12vw, 70px);
  height: clamp(40px, 12vw, 70px);
  border-radius: 10px;
  margin-bottom: clamp(0.3rem, 2vw, 0.5rem);
  object-fit: cover;
}

.review-card h3 {
  margin: 0;
  font-size: clamp(14px, 5vw, 18px);
  font-weight: bold;
}

.stars {
  color: #2e9c54;
  font-size: clamp(12px, 4vw, 18px);
  margin: 5px 0 0;
}

.review-text {
  font-size: 16px;
  line-height: 1.4;
  color: #333;
}

.scrollbar {
  position: relative;
  height: 8px;
  background: #fff;
  border-radius: 3px;
  margin-top: 0;
}

.scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  background: #2e9c54;
  border-radius: 3px;
  width: clamp(80px, 40vw, 180px) !important;
  transition: left 0.2s linear;
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.5rem, 2vw, 1rem);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.review-header img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.review-info h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 0.3rem;
}

.video-link {
  color: #777;
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
}

.video-link:hover {
  color: #000;
}

.review-text {
  font-size: 16px;
  line-height: 1.2;
  color: #333;
  margin-bottom: 18px;
}


/* FAQ */

.faq {
  margin: clamp(2rem, 8vw, 8rem) clamp(0.5rem, 6vw, 5rem);
  font-family: 'Inter', sans-serif;
}

.faq h2 {
  text-align: center;
  margin-bottom: clamp(2rem, 8vw, 4rem);
  font-size: 30px;
  font-weight: bold;
}

.faq-item {
  border-radius: clamp(6px, 2vw, 10px);
  overflow: hidden;
  padding: 0 0 0.5rem 0;
}

.faq-question {
  width: 100%;
  background: white;
  border: none;
  outline: none;
  cursor: pointer;
  padding: clamp(1rem, 4vw, 1.5rem);
  font-size: clamp(12px, 4vw, 16px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: clamp(6px, 2vw, 10px);
  text-transform: uppercase;
  text-align: left;
  font-family: 'Inter';
  color: #1A1A1A !important;
  
}

.faq-question .icon {
  position: relative;
  width: clamp(12px, 4vw, 16px);
  height: clamp(12px, 4vw, 16px);
}

.faq-question .icon::before,
.faq-question .icon::after {
  content: "";
  position: absolute;
  background: black;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.faq-question .icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-question .icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

/* активное состояние (крестик) */
.faq-item.active .icon::before {
  background: #016D30; /* зелёный */
  transform: rotate(135deg);
}

.faq-item.active .icon::after {
  background: #016D30; /* зелёный */
  transform: rotate(-48deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
  border-radius: 0 0 clamp(6px, 2vw, 10px) clamp(6px, 2vw, 10px);
  font-size: clamp(12px, 4vw, 15px);
  line-height: 1.4;
  color: #646464;
}

/* когда открыто */
.faq-item.active .faq-question {
  border-radius: clamp(6px, 2vw, 10px) clamp(6px, 2vw, 10px) 0 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 clamp(1rem, 4vw, 1.5rem) clamp(1rem, 4vw, 1.5rem);
}

.questions {
  max-width: 1440px;
  margin: clamp(3rem, 8vw, 8rem) auto;
  padding: 0 clamp(0.5rem, 6vw, 5rem);
}

.questions-container {
  display: flex;
  flex-direction: column; /* на мобилке колонка */
  gap: clamp(0.5rem, 2vw, 1rem);
}

  .questions-photo {
  order: -1;  /* фото сверху */
  width: 100%;
  height: clamp(400px, 85vw, 510px);
  margin: 0 auto;
  border-radius: clamp(16px, 5vw, 25px);
  background-size: cover;
  background-position: center;
}

  .questions-form {
  padding: 24px;
  border-radius: clamp(12px, 3vw, 20px);
  background: url(img/bg/orange.webp);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 2vw, 1rem);
}

  .questions-form h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 16px;
  font-weight: bold;
}

 .questions-form p {
  font-size: 18px;
  margin-bottom: clamp(1rem, 4vw, 1.5rem);
  text-align: center;
  color: #555;
}

  .questions-form input {
  font-size: 18px;
  padding: clamp(0.6rem, 3vw, 0.8rem);
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  width: 100%;
}
  
  .questions-form button {
  font-size: clamp(12px, 4vw, 16px);
  padding: clamp(1rem, 4vw, 1.5rem) clamp(0.8rem, 3vw, 1rem);
  width: 100%;
  border: none;
  border-radius: 0.5rem;
  background: #016D30;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter';
  transition: background 0.3s ease;
}
.questions-form button:hover {
  background: #249548;
}
 .questions-form .form-note {
  font-size: clamp(11px, 3.5vw, 14px);
  color: #555;
  margin-top: 0.5rem;
  text-align: left;
}

/* Блок с фото */
.final-block {
  position: relative;
  background: url("img/footer.webp") no-repeat center center/cover;
  height: clamp(240px, 80vw, 470px); /* от 240px до 470px */
  border-radius: clamp(20px, 6vw, 48px) clamp(20px, 6vw, 48px) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FAFAFA;
  padding: 0 10px;
}


.final-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.7) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1;
}


.final-section > * {
  position: relative;
  z-index: 2; /* чтобы текст и кнопки были поверх блюра */
}

.final-overlay {
  max-width: 900px;
  padding: 0 0px;
}

.final-block h2 {
  font-size: clamp(20px, 5vw, 44px);
  font-weight: bold;
  margin-bottom: clamp(1rem, 5vw, 2rem);
  color: #FAFAFA;
}

/* Общий контейнер */
.final-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* по умолчанию 2 колонки */
  gap: 10px;
  margin-bottom: clamp(1.5rem, 6vw, 2.5rem);
  max-width: 100%;
  font-size: 18px;
}

.option--first {
   border: 1px solid rgba(255,255,255,0.4);
  border-radius: 0.5rem;
  padding: 5px;
  
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(156,156,156,0) 0%,
    rgba(109,109,109,0.25) 100%
  );
  backdrop-filter: blur(20px);
  color: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option--two {
   border: 1px solid rgba(255,255,255,0.4);
  border-radius: 0.5rem;
  padding: 15px 5px;
  
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(156,156,156,0) 0%,
    rgba(109,109,109,0.25) 100%
  );
  backdrop-filter: blur(20px);
  color: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-choose {
  background: #016D30;
  border: none;
  border-radius: 0.5rem;
  padding: clamp(1rem, 4vw, 1.5rem) clamp(2rem, 10vw, 5rem);
  font-size: clamp(14px, 5vw, 16px);
  color: white;
  cursor: pointer;
  font-family: 'Inter';
  transition: background 0.3s ease;
}

.btn-choose:hover {
  background: #248243;
}

/* Футер */
.footer {
  background: #1A1A1A;
  text-align: center;
  padding: clamp(1rem, 4vw, 2rem);
  color: #FAFAFA;
  font-size: clamp(10px, 3vw, 18px);
}
/* Мобильное выпадающее меню */
.dropdown-mobile {
  position: absolute;
  top: 60px;
  right: 15px;
  width: 280px;
  background: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden; /* чтобы фон шапки не вылезал */
}

.dropdown-mobile.active {
  display: flex;
  background: #F0F0F0;
}

/* Серая верхняя шапка */
.dropdown-mobile-header {
  background: #D9D9D9;
  padding: 1.5rem 2rem;
  position: relative;
}

.dropdown-mobile .close-btn {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 40px;  /* крестик больше */
  cursor: pointer;
  color: #1A1A1A;
}

/* Ссылки меню */
.dropdown-mobile a {
  padding: 1rem 1.5rem;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px dashed #aaa;
}

.dropdown-mobile .socials a {
  border-bottom: none;
  
}

/* Соцсети внизу */
.dropdown-mobile .socials {
  display: flex;
  
  justify-content: flex-start;
}

.dropdown-mobile .socials img {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin: 0 -25px 0 0;
}

.dropdown-mobile .socials img:hover {
  transform: scale(1.2);
}
}



@media (max-width: 360px) {



.desktop-only { display: none ; }
  .mobile-only { display: block ; }

  .first-screen.mobile-only {
    background: url("img/frame1.webp") no-repeat center center;
    background-size: cover;
    padding: 1rem .5rem;
  }

  /* Шапка */
  .header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.8rem, 4vw, 1rem) 0 clamp(0.5rem, 6vw, 1.5rem);
  }

  .logo {
    width: clamp(50px, 10vw, 70px);
    height: auto;
      display: block;

  }

  .burger {
  display: flex;              /* ✅ чтобы спаны центрировались */
  flex-direction: column;
  justify-content: space-between;
  width: clamp(22px, 7vw, 28px);
  height: clamp(16px, 6vw, 20px);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

  .burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  border-radius: 1px;
}
  .burger span:nth-child(1) { top: 0; }
  .burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
  .burger span:nth-child(3) { bottom: 0; }

  /* Основная структура */
  .main-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Большое фото */
 .img-wrapper-mobile.card-left {
  position: relative;
  width: 100%;
  max-width: 660px;
  aspect-ratio: 16/9; /* картинка всегда резиновая */
  border-radius: clamp(12px, 3vw, 20px);
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid #fff;
}

  /* Текст */
  .overlay-text-mobile {
  position: absolute;
  bottom: clamp(0.8rem, 5vw, 3.5rem);
  right: clamp(0.8rem, 5vw, 3.5rem);
  color: #fff;
  text-align: right;
  max-width: 55%;
}

 .overlay-text-mobile h1 {
  font-size: clamp(15px, 4vw, 28px);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

 .overlay-text-mobile p {
  font-size: clamp(8px, 2.5vw, 16px);
  line-height: 1.4;
}

  /* Кнопка */
 .btn-dark-mobile {
  padding: clamp(0.4rem, 2vw, 0.5rem) clamp(0.8rem, 3vw, 1rem);
  border-radius: 20px;
  border: none;
  background: #fff;
  font-size: clamp(12px, 3vw, 16px);
  cursor: pointer;
  font-family: 'Inter';
  text-transform: uppercase;
 }
.top-row {
  position: absolute;
  top: clamp(0.5rem, 4vw, 2rem);
  left: clamp(0.5rem, 4vw, 2rem);
  right: clamp(0.5rem, 2vw, 1rem);

  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1rem);
  flex-wrap: wrap; /* перенос на маленьких экранах */
}
  /* Соцсети */

.img-wrapper-mobile  .Insta:hover,
.img-wrapper-mobile  .FB:hover {
  transform: scale(1.2);
}
.socials {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1rem);
}

.socials img {
  width: clamp(18px, 5vw, 30px);
  height: clamp(18px, 5vw, 30px);
}
  /* Два фото рядом */
 .center-mobile {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 8px;           /* отступ от блока сверху */
  gap: 0;                    /* убираем разрывы */
  position: relative;        /* для управления слоями */
  max-width: 660px;
  margin-inline: auto;
}

.center-mobile .img-wrapper-mobile {
  width: 100%;   /* делим контейнер пополам */
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
}

/* Левое фото */
.center-mobile .card-center2 {
  margin-right: -50px;  /* перекрываем правое */
  z-index: 2;           /* сверху */
}

/* Правое фото */
.center-mobile .card-center2 {
  z-index: 1;           /* снизу */
}

  /* Видео */
 .video-preview-mobile {
  width: 100%;
  height: clamp(200px, 40vw, 285px);     /* от 200px до 285px */
  border-radius: clamp(12px, 3vw, 25px);
  background: url("img/prev.webp") no-repeat center/cover;
  position: relative;
  margin: clamp(0.5rem, 1vw, 1rem) auto;
  border: 2px solid #fff;
}

 .video-preview-mobile .play-btn {
  width: clamp(40px, 10vw, 50px);
  height: clamp(40px, 10vw, 50px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("img/icon/btn.svg") no-repeat center/contain;
}

 /* 🔹 Контейнер карточек */
.cards-mobile {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.5rem, 2vw, 1rem);
  margin: 0 auto;
  max-width: 100%;
}

/* 🔹 Зелёная карточка */
.cards-mobile .card.green {
  grid-column: 1 / -1;
  width: 100%;   /* от 300 до 600 */
  height: 100%;  /* от 110 до 136 */
  padding: clamp(0.8rem, 3.5vw, 1.5rem);
  border-radius: clamp(12px, 3vw, 24px);
  position: relative;
  margin: 0 auto;
}

.card.green h2 {
  font-size: clamp(20px, 4vw, 30px);
  margin: 0 0 0.5rem;
}

.card.green p {
  font-size: clamp(13px, 2.5vw, 15px);
  line-height: 1.4;
  margin: 0;
}

/* 🔹 Контейнер оранжевой и белой карточек */
.cards-mobile .bottom-cards {
  display: grid;
  grid-template-columns: 1fr;  /* на мобилке всегда в колонку */
  gap: clamp(0.5rem, 3vw, 1rem);
  width: 100%;
}

/* 🔹 Оранжевая и белая карточки */
.card.orange,
.card.white {
  width: 100%;
  height: 100%;
  padding: clamp(0.8rem, 3.5vw, 1.5rem);
  border-radius: clamp(12px, 3vw, 24px);
  margin: 0 auto;
}

.card.orange h2,
.card.white h2 {
  font-size: clamp(18px, 4vw, 30px);
  margin: 0 0 0.3rem;
}

.card.orange p,
.card.white p {
  font-size: clamp(13px, 2.5vw, 15px);
  line-height: 1.4;
  margin: 0;
}

/* 🔹 Универсальные кнопки */
.card .button__1,
.card .button__2 {
  font-size: clamp(14px, 2.5vw, 16px);
  padding: clamp(8px, 2vw, 8px) clamp(16px, 4vw, 16px);
  border-radius: clamp(20px, 10vw, 50px);
  border: none;
  cursor: pointer;
  margin: 0 0 1.5rem 0;
}

.card .button__3 {
  font-size: clamp(14px, 2.5vw, 16px);
  padding: clamp(8px, 2vw, 8px) clamp(16px, 4vw, 16px);
  border-radius: clamp(20px, 10vw, 50px);
  border: none;
  cursor: pointer;
  margin: 0 0 1.5rem 0;
  border: 1px solid #000;
}


.tour-days {
    padding: 5rem .5rem;
        overflow: visible; /* убираем, чтобы sticky работал */

}

.day-cards {
    display: flex;              /* вместо grid */
    gap: 0.5rem;
    overflow-x: auto;           /* горизонтальный скролл */
    scroll-snap-type: x mandatory; /* плавное прилипающее листание */
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    /* скрываем стандартный скролл */
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none; /* IE */
    
  }
  .day-cards::-webkit-scrollbar {
    display: none; /* Chrome, Safari */}
  
/* зелёный прогресс-скролл */
  .tour-days .scrollbar {
    display: block; /* на мобилке включаем */
    position: relative;
    height: 6px;
    background: #ddd;      /* фон полоски */
    border-radius: 3px;
    margin: 1rem auto 0;
    max-width: 90%;        /* ширина полоски под блоком */
  }

  .tour-days .scroll-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    background: #2e9c54;   /* зелёный цвет */
    border-radius: 3px;
    width: 110px !important;           /* стартовое значение, пересчитаем в JS */
    transition: left 0.2s linear;
  }

  .day-card {
    flex: 0 0 270px;            /* фиксированная ширина карточки */
    scroll-snap-align: start;   /* прилипаем к началу */
    height: 420px;
        overflow: visible; /* sticky ломается при overflow, так что только для mob */
      padding: 1.5rem;

  }

  .day-card-overlay,
  .day-descr {
    font-size: 16px;            /* уменьшенный текст */
  }
.tour-header h2 {
    font-size: 30px;
    line-height: 1;
    width: 100%;
}
.tour-footer {
    text-align: center;
    margin-top: -2rem;
}
.tour-header p {
    margin: 1rem auto 0;
    font-size: 15px;
    color: #444;
    width: 100%;
}
.tour-footer .btn-dark {
    background: #016D30;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 1.3rem;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Inter';
    margin: 0 8px 0 8px;
}

.tour-footer p {
    margin-top: .5rem;
    font-size: 14px;
}
.day-block {
  top: 4rem;
    z-index: 1;
    
    padding: 1.5rem;
   
}

.day-block h3 {
    font-size: 24px;
}

.day-badge {
    top: 7%;
    left: 54%;
    font-size: 14px;
    
}

.why-tour {
    padding: 5rem .5rem;
    max-width: 1440px;
    margin: 0 auto;
}
.why-tour h2 {
    font-size: 44px;
    text-align: left;
    margin-bottom: 2rem;
    font-weight: bold;
}
  

.why-cards {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
  }

  .why-cards::-webkit-scrollbar {
    display: none; /* скрываем стандартный скролл */
  }

  .why-card {
    flex: 0 0 320px;     /* фикс ширина */
    min-height: 420px;   /* фикс высота */
    scroll-snap-align: start;
    padding: 1.5rem;
  }

  .why-card h3 {
    font-size: 24px;
    width: 100%;
    margin-bottom: 1rem
  }

  .why-card p {
    font-size: 16px;
  }

  .tags span {
    font-size: 14px;
    padding: 0.5rem 1rem;
  }

  .why-card button {
    font-size: 16px;
    padding: 1rem 5rem;

  }

  .tags {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin-bottom: 2rem;
}



/* 4 экран */
.trip-photos {
  padding: 5rem .5rem 5rem;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  background:url(img/bg/white.webp);
  border-radius: 40px;
}

.trip-photos h2 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 1rem;
}

.trip-photos h2 span {
  color: #016D30; /* зелёный акцент */
}

.trip-photos .sub {
  font-size: 15px;
  margin-bottom: 2rem;
  color: #444;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 колонки на десктопе */
  gap: 0.5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.photos-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 колонки на мобилке */
  }

.photos-col {
    display: contents;  /* раскладываем фото в grid */
  }
  
.photo {
  border-radius: 1.5rem;
  background-size: cover;
  background-position: center;
  aspect-ratio: 3 / 4;
}

/* 👉 смещаем каждый второй элемент (правую колонку) */
  .photos-grid .photo:nth-child(2n) {
    transform: translateY(20px);
  }

.guide
 {
    padding: 100px .5rem;
    margin: 0 auto;
}

  /* Весь блок гида */
  .guide-grid {
    display: grid;
    grid-template-columns: 1fr; /* только одна колонка */
    gap: 0.5rem;
  }

  .guide h2 {
    font-size: 30px;
    margin-bottom: 1rem;
    font-weight: bold;
}

.guide .sub {
    text-align: center;
    font-size: 15px;
    color: #444;
    margin: 0 0  2rem 0;
}

  /* ✅ Факты остаются 2 на 2 */
  .guide-facts {
    display: grid;
    grid-template-columns:1fr; /* сохраняем сетку */
    gap: 0.5rem;
  }

  /* Блок цена + форма в колонку */
  .guide-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem;
  }

  .guide-photo {
    background: url(img/guide.webp) no-repeat center / cover;
    border-radius: 1rem;
    color: white;
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    position: relative;
    min-height: 350px;
    width: 345px;
    background-position: center right -50px;
}
.guide-name {
    font-size: 30px;
    font-weight: bold;
    width: 50%;
}
.guide-desc {
    font-size: 16px;
    line-height: 1.4;
    width: 100%;
}
.info-left {
    background: url(img/bg/white.webp);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid #fff;
}
  /* Цена на мобилке меньше */
  .info-left .price {
    font-size: 64px;
    margin: 2.5rem  0 0 0;
  }

  .fact h4 {
    font-size: 24px;
    margin-bottom: 1rem;
    width: 100%;
}
.fact {
    padding: 1.5rem;
    border-radius: 1rem;
}

.fact p {
    font-size: 15px;
    line-height: 1.4;
}

.info-left h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 2rem;
}

.info-left p {
    display: flex
;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 15px;
    width: 100%;
}

.info-left .price span {
    display: block;
    font-size: 14px;
    font-weight: normal;
    color: #555;
    margin-top: 0.5rem;
}

.info-form button {
    background: #016D30;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    padding: 1.5rem 1rem;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Inter';
}

.info-form {
    background: url(img/formbg.webp) no-repeat center / cover;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex
;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    border: 2px solid #fff;
}




/* Что взять с обой блок */
.equipment {
  padding: 50px .5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.equipment h2 {
  text-align: left;
  font-size: 30px;
  margin-bottom: 2.5rem;
}

.equipment-slider {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;         /* горизонтальный скролл */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0;        /* убираем нижний отступ под скролл */
}

/* Скрываем стандартные скроллбары */
.equipment-slider::-webkit-scrollbar {
  display: none;

}

.equipment-slider {
  scrollbar-width: none;    /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}



.equipment-card {
  flex: 0 0 320px;          /* фиксированная ширина */
  height: 420px;            /* фиксированная высота */
  border-radius: 1rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  scroll-snap-align: start;
  color: white;
  display: flex;
  flex-direction: column;   /* чтобы текст и кнопка шли вниз */
  justify-content: flex-end;
  padding: 1.5rem;
}



.card-content {
  position: relative;
  z-index: 2;
}

.card-content h3 {
  font-size: 24px;
  margin-bottom: 1rem;
}

.card-content p {
  font-size: 16px;
  margin-bottom: 2rem;
  width: 100%;
}

.card-content button {
  background: #F6911E;
  border: none;
  border-radius: 0.5rem;
  font-size: 16px;
  color: white;
  cursor: pointer;
    font-family: 'Inter';
    width: 100%;

  
}

.card-content button:hover {
  background: #e37b00;
}

/* Фоновые картинки */
.equip1 { background-image: url("img/eq1.webp");  }
.equip2 { background-image: url("img/eq2.webp");  }
.equip3 { background-image: url("img/eq3.webp"); }
.equip4 { background-image: url("img/eq4.webp");}
.equip5 { background-image: url("img/eq5.webp"); }

/* Нижняя кнопка */
.equipment-footer {
  text-align: center;
}

.equipment-footer .btn-dark {
  background: #016D30;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 1.3rem 1.3rem; /* чуть шире */
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s ease;
    font-family: 'Inter'


}

.equipment-footer .btn-dark:hover {
  background: #249548; /* эффект наведения */
}

.equipment-footer p {
  margin: .5rem 0 5rem 0;
  font-size: 14px;
  color: #333;
}




/* Отзывы */

.reviews {
  background: url(img/bg/orange.webp);
  padding: 1.5rem;
  border-radius: 1rem;
  max-width: 1440px;
  margin: 2rem .5rem;
}

.reviews h2 {
  font-size: 30px;
  margin-bottom: 2rem;
}

.reviews-slider {
  display: flex;            /* все карточки в ряд */
  gap: 0.5rem;                /* расстояние между ними */
  overflow-x: auto;         /* горизонтальный скролл */
  scroll-snap-type: x mandatory; /* прилипание по карточкам */
  padding-bottom: 1rem;


/* скрываем стандартный скролл */
  scrollbar-width: none;   /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.reviews-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.review-card {
  flex: 0 0 280px;          /* фиксированная ширина */
  scroll-snap-align: start; /* прилипание */
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.review-card img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  margin-bottom: .5rem;
}

.review-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.stars {
  color: #2e9c54;
  font-size: 14px;
  margin: .5rem 0 1rem;
}

.review-text {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.scrollbar {
  position: relative;
  height: 8px;
  background: #fff;   /* 👉 фон линии (у тебя сейчас серый — тут меняешь) */
  border-radius: 3px;
  margin-top: 0;
}

.scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  background: #2e9c54;  /* 👉 цвет бегунка */
  border-radius: 3px;

  width: 150px !important;         /* 👉 длина ползунка, можно поставить ширину карточки */
}


/* верхняя часть: фото + инфо */
.review-header {
  display: flex;
  align-items: flex-start; /* имя и блок звёзд сверху */
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-header img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.review-info h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 0.3rem;
}

.stars {
  color: #2e9c54;
  font-size: 18px;
  margin-bottom: 0.3rem;
}

.video-link {
  color: #777;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}

.video-link:hover {
  color: #000;
}

.review-text {
  font-size: 16px;
  line-height: 1.4;
  color: #333;
}


/* FAQ */

.faq {
  margin: 5rem .5rem;
  font-family: 'Inter', sans-serif;
}

.faq h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 30px;
}

.faq-item {
   border-radius: 8px;      /* закругляем один контейнер */
  overflow: hidden;        /* чтобы радиусы применялись и к answer */
  padding: 0 0 0.5rem 0;
}

.faq-question {
  width: 100%;
  background: white;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 1.5rem;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  text-transform: uppercase;
  text-align: left;
    font-family: 'Inter';
    color:#1A1A1A !important;


}

.faq-question .icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.faq-question .icon::before,
.faq-question .icon::after {
  content: "";
  position: absolute;
  background: black;
  transition: all 0.3s ease;
    border-radius: 2px;

}

.faq-question .icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.faq-question .icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

/* активное состояние (крестик) */
.faq-item.active .icon::before {
  background: #016D30; /* зелёный */
  transform: rotate(130deg);
}

.faq-item.active .icon::after {
  background: #016D30; /* зелёный */
  transform: rotate(-45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.2s ease, padding 0.2s ease;
  padding: 0 1rem;
    border-radius: 0 0 8px 8px; /* только низ */
    font-size: 14px;

}

/* когда открыто */
.faq-item.active .faq-question {
  border-radius: 8px 8px 0 0; /* только верх */
}

.faq-item.active .faq-answer {
  max-height: 500px; /* достаточно большое значение */
  padding: 0 1.5rem 1.5rem;
    color: #646464;

}

.questions {
    max-width: 1440px;
    margin: 8rem auto;
    padding: 0 .5rem;
}

.questions-container {
    display: flex;
    flex-direction: column; /* ставим в колонку */
    gap: 0.5rem;
  }

  .questions-photo {
    order: -1;          /* 🔥 фото идёт первым */
    width: 340px;       /* фикс ширина */
    height: 540px;      /* фикс высота */
    margin: 0 auto;     /* по центру */
    border-radius: 25px;
  }

  .questions-form {
    padding: 2rem;
  }

  .questions-form h2 {
    font-size: 30px;
    text-align: center;
  }

  .questions-form p {
    font-size: 15px;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .questions-form input{
    font-size: 14px;
    padding: 0.8rem;
  }
  
  .questions-form button {
    font-size: 16px;
    padding: 1.5rem 1rem;
  }

  .questions-form .form-note {
    font-size: 16px;
    color: #555;
    margin-top: 0.5rem;
    text-align: left;
}

/* Блок с фото */
.final-block {
  position: relative;
  background: url("img/footer.webp") no-repeat center center/cover; /* твоё фото */
  height: 370px;          /* фиксированная высота */
  border-radius: 3rem 3rem 0 0;
  display: flex;
  align-items: center;    /* выравниваем по центру по вертикали */
  justify-content: center;
  text-align: center;
  color: white;
}

.final-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
  backdrop-filter: blur(20px);       /* блюр заднего фона */
  -webkit-backdrop-filter: blur(20px); /* для Safari */
  z-index: 1;
}

.final-section > * {
  position: relative;
  z-index: 2; /* чтобы текст и кнопки были поверх блюра */
}

.final-overlay {
  max-width: 900px;
  padding:0 .5rem 0;
}

.final-block h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #FAFAFA;

}

.final-options {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
  flex-wrap: nowrap;
}

.option--first {
  border: 1px solid rgba(255,255,255,0.4);
    z-index: 1;
  border-radius: 0.5rem;
  padding: 1.5rem 0.8rem;
  font-size: 16px;
  max-width: 160px;
  height: 90px;
  text-align: center;
  background: linear-gradient(
  180deg,
  rgba(156, 156, 156, 0) 0%,     /* светло-серый прозрачный */
  rgba(109, 109, 109, 0.25) 100%    /* тёмнее, тоже прозрачный */
);
backdrop-filter: blur(20px);
color: #FAFAFA;

}


.option--two {
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 16px;
  max-width: 180px;
  height: 90px;
  text-align: center;
  background: linear-gradient(
  180deg,
  rgba(156, 156, 156, 0) 0%,     /* светло-серый прозрачный */
  rgba(109, 109, 109, 0.25) 100%    /* тёмнее, тоже прозрачный */
);
backdrop-filter: blur(20px);
color: #FAFAFA;
}

.btn-choose {
  background: #016D30;
  border: none;
  border-radius: 0.5rem;
  padding: 1.5rem 5rem;
  font-size: 16px;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
    font-family: 'Inter'

}

.btn-choose:hover {
  background: #248243;
}

/* Футер */
.footer {
  background: #1A1A1A;
  text-align: center;
  padding: 2rem 0.6rem;
  color: #FAFAFA;
  font-size: 14px;
}
/* Мобильное выпадающее меню */
.dropdown-mobile {
  position: absolute;
  top: 60px;
  right: 15px;
  width: 280px;
  background: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden; /* чтобы фон шапки не вылезал */
}

.dropdown-mobile.active {
  display: flex;
  background: #F0F0F0;
}

/* Серая верхняя шапка */
.dropdown-mobile-header {
  background: #D9D9D9;
  padding: 1.5rem 2rem;
  position: relative;
}

.dropdown-mobile .close-btn {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 40px;  /* крестик больше */
  cursor: pointer;
  color: #1A1A1A;
}

/* Ссылки меню */
.dropdown-mobile a {
  padding: 1rem 1.5rem;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px dashed #aaa;
}

.dropdown-mobile .socials a {
  border-bottom: none;
  
}

/* Соцсети внизу */
.dropdown-mobile .socials {
  display: flex;
  
  justify-content: flex-start;
}

.dropdown-mobile .socials img {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin: 0 -25px 0 0;
}

.dropdown-mobile .socials img:hover {
  transform: scale(1.2);
}




}


@media (max-width: 500px) {

    .first-screen.mobile-only {
        padding:0  0.5rem 1rem;
    }
    .header-mobile{
              padding: 1rem 0.5rem;
    }


    .tour-days {
        padding: 5rem 0.5rem 2rem;
    }

    .tour-footer {
      padding: 0 0.5rem ;

    }

    .why-tour{
      padding: 5rem 0.5rem 0 ;

    }

    .trip-photos{
      padding: 5rem 0.5rem 0 ;
    }
    .guide{
      padding: 5rem 0.5rem 0 ;
    }
    .equipment{
      padding: 5rem 0.5rem 0;
    }
    .reviews{
      margin: 5rem 0.5rem ;
    }
    .faq{
      margin: 5rem 0.5rem ;
    }
    .questions{
      padding: 5rem 0.5rem 0 ;
    }
}
    

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  background: #000;
  border-radius: 10px;
  padding: 10px;
}

.modal video {
  width: 100%;
  height: auto;
  max-height: 70vh;
  border-radius: 10px;
}

.modal .close {
  position: absolute;
  right: -5px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}



.contacts {
  max-width: 1440px;
    margin: 3rem auto;
    padding: 0 5rem;
}

.contacts .info-left p {
  width: 100%
}
.info-left .price {
    font-size: 45px;
    color: #016D30;}

@media (max-width: 500px) {
.contacts {
    margin: 8px auto;
    padding: 0 16px;
}

.contacts .info-form {
  display: none;
}
.info-left .price {
    font-size: 26px;}
.center-mobile {
  display: none;
}
.video-preview-mobile {
  display: none;
}
}

@media (max-width: 500px) {
    .tours {
        padding: 5rem 0.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .tours {
        padding: 5rem 0.5rem 0;
    }
    .tours__title {
          font-size: clamp(22px, 8vw, 44px);
    .tour-select__label, .tour-select__text {
        font-size: 15px;
    }
    .tour-select {
        max-width: 100%;
    }
}
select {
  -webkit-appearance: none;
  /* убираем нативный стиль iOS */
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 16px;
  color: #747474;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
}

