:root {
  --background: #fdf9f3;
  /* Вся страница */
  --green: #2a6b4e;
  --green-dark: #1f4b3e;
  /* Заголовки, кнопки, иконки */
  --text: #1f2a24;
  /* тест */
  --second: #8b9a8c;
  /* Подзаголовки, границы, иконки */
  --warm: #e7b42c;
  /* Акцентные детали, бейджи «Хит», дата */
  --logo: #eedfc2;

  --test: #485e5c;
  --border-radius: 8px;
  --border-max: 100px;
  --button-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  /* темный / светлый градиент */
  background: linear-gradient(135deg, #1f4b3e, #c48b3b);
}
@font-face {
  font-family: "CormorantGaramond";
  src: url("../fonts/CormorantGaramond/CormorantGaramond-Medium.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  font-size: 12px;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--background);
  color: #1a1a1a;
  line-height: 1.4;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  margin: 7rem 0;
  padding: 3rem 0;
}

h1,
h2,
h3 {
  font-family: "CormorantGaramond", serif;
  /* font-family: Playfair Display; */
}

h2 {
  font-size: 3.5rem;
  margin: 3rem 0;
  color: #2a6b4e;
}

h3 {
  text-transform: uppercase;
  color: #2a6b4e;
}

.button {
  background-color: var(--green);
  border: 1px solid #d9e0d9;
  padding: 10px 28px;
  border-radius: var(--border-max);
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: sans-serif;
}

.button:hover {
  /* background: #2A6B4E; */
  border-color: var(--green);
  box-shadow: var(--button-shadow);
  /* color: white; */
}

/* автоматический слайдер */
/* .slider-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

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

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

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

.slide-content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 30px;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .slide {
    height: 400px;
  }
  .slide-content {
    padding: 20px;
  }
  .slide-content h2 {
    font-size: 1.3rem;
  }
}
*/
@media (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  /* .slide {
    height: 300px;
  }
  .slide-content {
    padding: 12px;
  }
  .slide-content h2 {
    font-size: 1rem;
  } */
}

/* ШАПКА */
header {
  height: 140px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  transition:
    transform 0.3s ease,
    background 0.2s ease;
}

header.open {
  background: linear-gradient(rgba(0, 0, 0, 0.8));
}
.navbar {
  display: flex;
  flex-direction: column;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
  /* gap: 1rem; */
}
.navbar__top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.logo__block {
  text-decoration: none;
  color: #fff;
  margin: 0 auto 0 0;
  display: flex;
  align-items: center;
}
.logo {
  width: 50px;
  height: 50px;
}
.logo__text {
  font-size: 2.4rem;
  margin-left: 0.5em;
  font-family: "CormorantGaramond", serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.navbar__phone {
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  margin: auto 2rem auto 0;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 10;
  margin: 0 0 0 auto;
}

.burger span {
  width: 28px;
  height: 2.5px;
  /* background: #2c2a24; */
  background: var(--warm);
  border-radius: 4px;
  transition: 0.2s ease;
}

/* анимация иконки бургера в "крестик" при открытии */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 0 auto;
  list-style: none;
  transition: top 0.3s;
}

.nav-links li {
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.nav-links li .active {
  color: var(--warm);
}

.nav-links li a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s;
}
.nav-links li a:hover {
  color: var(--warm);
}

/* кнопка бронирования тура */
.booking__form {
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 600;
  /* background-color: #e7b42c; */
  background-color: var(--logo);
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  text-transform: inherit;
  /* font-family: sans-serif; */
  box-shadow: 0px 1px 6px 1px #686551;
  transition: all 0.3s;
}

.booking__form:hover {
  background-color: #ffd257;
  border: 1px solid var(--second);
  box-shadow: 0px 2px 6px 2px #686551;
  color: var(--green-dark);
}

@media (max-width: 1280px) {
  header {
    height: 110px;
  }
}

@media (max-width: 1024px) {
  .navbar__phone {
    margin: auto;
  }
  .burger {
    display: flex;
    position: absolute;
    top: 3rem;
    right: 3rem;
    cursor: pointer;
  }
  .navbar__bottom {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(calc(-100% - 100px));
    transition: transform 0.3s ease;
  }
  .navbar__bottom.open {
    transform: translateY(-2rem);
  }
  .nav-links {
    margin-top: 60px;
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-links.open {
    height: 100%;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .navbar .logo__text {
    display: none;
  }
  .logo__block {
    margin-right: 10vw;
  }
  .navbar__phone {
    margin: auto auto auto 0;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .nav-links a {
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
  }
}
@media (max-width: 420px) {
  .logo__block {
    margin-right: 5vw;
  }
}

/* ГЛАВНАЯ */
.intro {
  position: relative;
  height: 85vh;
  /* display: flex; align-items: center;  */
}

.intro__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/avtorskie-tury.jpg");
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 150px;
  border-bottom: var(--warm) 5px solid;
}

.intro__content {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  max-width: 1280px;
  padding: 3rem 3rem 0 3rem;
  margin: 0 auto;
}

.intro h1 {
  font-size: 4.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.2;
  max-width: 600px;
  margin-bottom: 24px;
  color: #fff;
}

.intro p {
  font-size: 2rem;
  color: #fff;
  margin: 2rem 0 3rem;
}

.calendar {
  width: max-content;
  margin: 3rem 3rem 0 auto;
}

@media (max-width: 768px) {
  .intro p {
    font-size: 1.4rem;
    margin: 1.8rem 0;
  }
}

@media (max-width: 700px) {
  .intro h1 {
    font-size: 3.2rem;
  }
}

/* .search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 680px;
  margin-top: 16px;
}

.search-input {
  flex: 3;
  padding: 14px 20px;
  font-size: 1rem;
  border: 1px solid #e2e2e2;
  border-radius: 40px;
  font-family: inherit;
}

.search-input:focus {
  outline: none;
  border-color: #aaa;
}

.search-btn {
  flex: 1;
  background: #000;
  color: white;
  border: none;
  border-radius: 40px;
  padding: 0 24px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  font-family: inherit;
}

.search-btn:hover {
  background: #333;
}
*/

/* <!-- НОВАЯ РУБРИКА: ГАСТРОНОМИЧЕСКАЯ СВОБОДА --> */
.food {
  display: flex;
  justify-content: center;
  font-size: 1.2rem;
}

.food-features {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 20px;
}

.food-card {
  /* background: white; */
  /* border-radius: 32px; */
  padding: 28px 24px;
  flex: 1;
  min-width: 260px;
  /* box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04); */
  /* border: 1px solid #f0ede8; */
  /* transition: transform 0.2s; */
}

/* .food-card:hover {
  transform: translateY(-5px);
} */

.food-icon {
  font-size: 2.8rem;
  background: #fff0e8;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9f6e;
  overflow: hidden;
  margin: 0 auto 2rem;
}

.food-icon img {
  width: 180px;
  height: auto;
}

.food-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 800;
  text-align: center;
}

.food-card p {
  color: #5a5a5e;
  line-height: 1.45;
  margin-bottom: 16px;
  text-align: center;
}

.food-tag {
  display: inline-block;
  background: #fff0e8;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c25d3a;
}

@media (max-width: 768px) {
  .food {
    font-size: 1rem;
  }

  .food-card {
    min-width: 100%;
    padding: 1rem;
  }
}

/* ==================== О ПРОЕКТЕ ==================== */
.about-project {
  /* margin: 64px 0; */
  padding: 0 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* левая колонка с текстом */
.about-content h2 {
  /* font-size: 2rem; */
  /* font-weight: 500; */
  /* color: #1F2A24; */
  margin: 0 0 1rem 0;
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 48px;
  height: 2px;
  background: #e7b42c;
  border-radius: 2px;
}

.about-subtitle {
  font-size: 1.2rem;
  color: #2a6b4e;
  margin: 20px 0 16px;
  font-weight: 500;
}
.about-subtitle span {
  font-family: "CormorantGaramond", serif;
  text-transform: uppercase;
  font-weight: 800;
}

.about-content > p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5b4e;
  margin-bottom: 32px;
}

/* особенности */
.about-features {
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.about-feature span {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.about-feature h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2a24;
  margin-bottom: 6px;
  font-family: inherit;
}

.about-feature p {
  font-size: 1rem;
  color: #4a5b4e;
  line-height: 1.5;
}

/* цитата */
.about-quote {
  background: #f0f4ec;
  padding: 24px 28px;
  border-radius: 24px;
  margin: 32px 0;
  border-left: 4px solid #e7b42c;
}

.about-quote p {
  font-size: 1rem;
  line-height: 1.5;
  color: #1f2a24;
  font-style: italic;
  margin-bottom: 12px;
}

.about-quote span {
  font-size: 0.9rem;
  color: #6f7e6f;
}

/* команда */
.about-team h2 {
  margin: 0 0 2rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f6f2;
  padding: 12px 16px;
  border-radius: 60px;
}

.team-avatar {
  width: 48px;
  height: 48px;
  background: #2a6b4e;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.team-name {
  font-weight: 600;
  color: #1f2a24;
  font-size: 1.2rem;
}

.team-role {
  font-size: 1rem;
  color: #6f7e6f;
  margin-top: 2px;
}

/* правая колонка с фото */
.about-image {
  position: sticky;
  top: 30px;
}

.about-image img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  aspect-ratio: 1/0.9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.image-caption {
  font-size: 0.9rem;
  color: #8b9a8c;
  text-align: center;
  margin-top: 12px;
}

/* адаптив */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image {
    position: static;
    order: -1;
  }

  .about-image img {
    max-height: 400px;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  /* .about-stats {
    grid-template-columns: repeat(2, 1fr);
  } */
  .about-project {
    /* margin: 64px 0; */
    padding: 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-feature {
    flex-direction: column;
    text-align: center;
  }

  .about-quote {
    padding: 20px;
  }
}

/* РЕКЛАМА */
.hero .container {
  max-width: 720px;
}

.hero-light {
  background: rgba(89, 199, 185, 0.15);
  backdrop-filter: blur(4px);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 60px;
  color: #2f8a7c;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 28px;
  border: 1px solid rgba(89, 199, 185, 0.3);
}

.hero h2 {
  /* font-family: 'Poppins', sans-serif; */
  font-family: Motserrat;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  /* letter-spacing: -0.02em; */
  color: #2c2a24;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.hero h2 span {
  background: linear-gradient(120deg, #ff9f6e, #ff6b6b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: #5a5a5e;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.4rem;
    text-align: center;
  }

  .hero__subtitle {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-light {
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-light {
    font-size: 0.8rem;
  }
}

/* ТУРЫ */
.tours__wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.tours h3 {
  font-size: 2.5rem;
}

.tours p {
  font-size: 2rem;
}

.tour__block {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.tour__image {
  width: 40%;
  height: 500px;
  overflow: hidden;
  border-radius: 6px;
  /* aspect-ratio: 9 / 16; */
}

/* .tours img {width: 100%; height: 100%;} */
/* .tour__image img{width: 100%; height: 100%; object-fit: cover;border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;} */
/* .tour__image {
  overflow: hidden;
  width: 300px;
  height: 500px;
} */

.tour__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 55% 45% 60% 40% / 50% 55% 45% 50%;
  transition: border-radius 0.5s ease; */
}

/* Анимация "дышащего" облака при ховере */
/* .tour__image img:hover {
  border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%;
} */

.tour__plane {
  width: 60%;
}

.tour__plane:first {
  margin-right: 4rem;
}

.tour__plane:last-child {
  margin-left: 4rem;
}

.tour__title {
  margin-bottom: 2rem;
}

.tour__description {
  position: relative;
  color: var(--test);
  font-family: cursive;
}

.tour__description::before {
  content: "";
  position: absolute;
  border-left: 2px dotted brown;
  height: 100%;
}

.tour__line {
  position: relative;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 2rem 3rem;
}

.tour__time {
  white-space: nowrap;
  font-weight: 100;
}

.tour__item {
  /* display: flex; */
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.2rem;
}

.tour__text p {
  color: var(--test);
  font-family: cursive;
  line-height: 1.6;
}

.tour__dot {
  position: absolute;
  top: 32px;
  left: -7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: brown;
  border: 3px solid white;
  box-shadow: 0 0 0 2px brown;
}

@media (max-width: 1280px) {
  .tours p {
    font-size: 1.4rem;
  }
}

@media (max-width: 1024px) {
  .tour__block {
    gap: 2rem;
  }

  .tour__image {
    height: 400px;
  }

  .tour__line {
    gap: 3rem;
    padding: 1.2rem 0 1.2rem 2.5rem;
  }

  .tour__time {
    min-width: 80px;
  }

  .tours h3 {
    font-size: 2rem;
  }

  .tours p {
    font-size: 1.2rem;
  }

  .tour__dot {
    top: 20px;
  }
}

/* Мобильные (до 768px) — вертикальное расположение */
@media (max-width: 768px) {
  .tour__block {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .tour__image {
    width: 100%;
    height: 350px;
    order: 1 !important;
    /* Перебиваем inline style */
  }

  .tour__plane {
    width: auto;
    order: 2;
    padding: 0 2rem;
  }

  .tour__plane:first {
    margin-right: 0rem;
  }

  .tour__plane:last-child {
    margin-left: 0rem;
  }

  .tours h3 {
    font-size: 1.8rem;
    margin-top: 0;
  }

  .tours p {
    font-size: 1.4rem;
  }

  .tour__title {
    margin-bottom: 1rem;
  }

  .tour__line {
    gap: 1.5rem;
    padding: 1rem 0 1rem 2rem;
  }

  .tour__time {
    min-width: 70px;
    font-size: 1.2rem;
    padding-left: 1rem;
  }

  .tour__time br {
    display: none;
    /* Убираем перенос строки на мобильных */
  }

  .tour__time p {
    margin: 0;
  }

  .tour__text {
    gap: 6px;
    flex: 1;
  }

  .tour__text svg {
    width: 20px;
    height: 20px;
  }

  .tour__dot {
    top: 18px;
    left: 10px;
    width: 12px;
    height: 12px;
  }

  .tour__description::before {
    left: 16px;
    height: calc(100% - 30px);
  }
}

/* Маленькие мобильные (до 480px) */
@media (max-width: 480px) {
  .tour__image {
    height: 250px;
  }

  .tours h3 {
    font-size: 1.5rem;
  }

  .tours p {
    font-size: 1.2rem;
  }

  .tour__line {
    gap: 1rem;
    padding: 0.8rem 0 0.8rem 1.8rem;
  }

  .tour__time {
    min-width: 55px;
    font-size: 1rem;
  }

  .tour__text svg {
    width: 18px;
    height: 18px;
  }

  .tour__dot {
    top: 14px;
    left: 8px;
    width: 10px;
    height: 10px;
  }

  .tour__description::before {
    left: 13px;
  }
}

/* ЧТО ВКЛЮЧЕНО */
.included-card {
  margin: 48px 0;
}

.included-wrapper {
  background: #f8f6f2;
  border-radius: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px;
  align-items: center;
}

.included-content {
  flex: 2;
  min-width: 260px;
}

.included-content h3 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #1f2a24;
  margin-bottom: 16px;
}

.price-badge {
  display: inline-block;
  background: #2a6b4e;
  color: white;
  padding: 6px 18px;
  border-radius: 40px;
  font-weight: 600;
  margin-bottom: 24px;
}

.included-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.included-content li {
  padding: 8px 0;
  color: #4a5b4e;
  border-bottom: 1px solid #d9e0d9;
  display: flex;
  align-items: center;
  gap: 12px;
}

.included-content li:last-child {
  border-bottom: none;
}

.included-btn {
  background: #e7b42c;
  border: none;
  padding: 12px 32px;
  border-radius: var(--border-max);
  font-weight: 600;
  color: #1f2a24;
  cursor: pointer;
  /* transition: 0.2s; */
}

.included-btn:hover {
  background: #ebc355;
  /* transform: scale(1.02); */
}

.included-image {
  flex: 1;
  min-width: 200px;
}

.included-image img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

@media (max-width: 768px) {
  .included-wrapper {
    flex-direction: column;
    padding: 24px;
  }
}

/* ГАЛЕРЕЯ */
.gallery__blocks {
  display: grid;
  gap: 0.1rem;
  grid-template-columns: repeat(3, 1fr);
}

.gallery__img {
  overflow: hidden;
}

.gallery__img img:hover {
  transform: scale(1.05);
}

.gallery img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s linear;
}
.gallery__footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .gallery__blocks {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SEO */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  margin: 80px 0 0;
  padding: 40px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.feature {
  flex: 1;
  min-width: 180px;
}

.feature h4 {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.feature p {
  /* font-size: 0.85rem; */
  color: #5e5e5e;
}

.seo-text {
  margin: 48px 0 32px;
  padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
}

.seo-text p {
  font-size: 1rem;
  color: #5e5e5e;
  line-height: 1.5;
  margin-bottom: 12px;
}

.footer-note {
  margin-top: 3.5rem;
  text-align: center;
  background: #f2efe8;
  padding: 2rem;
  border-radius: 3rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  /* background: url('/images/cloud2.png');
  background-size: 100% 100%; */
}

/* FOOTER */
.footer__content {
  margin-top: 4rem;
  padding: 2rem 0;
  /* border-top: 1px solid #f0f0f0; */
  font-size: 1.2rem;
  color: #888;
  gap: 20px;
}

.footer__link {
  text-decoration: none;
}

.footer__link:hover {
  text-decoration: underline;
}
.footer__line {
  display: grid;
  grid-template-columns: 1fr 0.5fr 0.5fr;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 300px;
}
.footer__col a {
  text-decoration: none;
  color: #888;
  line-height: 1.2;
}

.footer__logo p {
  color: #555;
  font-weight: 600;
}

/* полоска */
.divider {
  height: 2px;
  background: #9ca3af00;
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.15),
    0 1px 0 #ffffff;
  border: none;
  border-radius: 100px;
  margin: 2rem 0;
}

.divider-test {
  height: 2px;
  background: #9ca3af00;
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.15),
    0 1px 0 #ffffff;
  border: none;
  border-radius: 100px;
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .footer__line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .footer__col {
    gap: 0.5rem;
  }
  .footer__col .logo__block {
    margin: 0 auto 1rem;
  }
}

@media (max-width: 700px) {
  .features {
    flex-direction: column;
  }

  .feature h4 {
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .footer__content {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

/* ОБРАТНАЯ СВЯЗЬ */
.feedback-call-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  /* position: relative; */
  width: 80px;
  height: 80px;
  /* background: linear-gradient(135deg, var(--green), var(--green-dark)); */
  background: linear-gradient(135deg, #0d9488, #0f766e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 20px 35px -12px rgba(0, 0, 0, 0.5),
    0 0 0 0 rgba(13, 148, 136, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.3),
    inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: none;
  outline: none;
  backdrop-filter: blur(1px);
}

/* Эффект пульсации (внешний ринг) */
.feedback-call-btn::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.3);
  z-index: -1;
  opacity: 0.7;
  transition: all 0.5s ease;
  animation: pulse-ring 2s infinite;
}

/* Вторая, более широкая волна для мягкого свечения */
.feedback-call-btn::after {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: -16px;
  bottom: -16px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 148, 136, 0.25),
    transparent 70%
  );
  z-index: -2;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

/* SVG-иконка трубки (стилизованная, современная) */
.phone-icon {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: white;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.25s ease;
}

/* Дополнительные мелкие детали: микро-блик */
.feedback-call-btn .glint {
  position: absolute;
  top: 18%;
  left: 22%;
  width: 18px;
  height: 18px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 245, 0.7) 0%,
    rgba(255, 255, 245, 0) 80%
  );
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.8;
}

/* Эффекты при наведении и клике */
.feedback-call-btn:hover {
  transform: scale(1.07) translateY(-3px);
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  box-shadow:
    0 28px 40px -14px rgba(0, 0, 0, 0.6),
    0 0 0 6px rgba(13, 148, 136, 0.4),
    inset 0 1px 2px rgba(255, 255, 245, 0.5);
}

.feedback-call-btn:hover::before {
  animation: pulse-ring-hover 1.2s infinite;
  background: rgba(13, 148, 136, 0.5);
}

.feedback-call-btn:active {
  transform: scale(0.96);
  transition: 0.08s linear;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

/* Анимация пульсирующего кольца */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.15);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse-ring-hover {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Плавающая анимация для кнопки (легкое покачивание) */
.feedback-call-btn {
  animation: subtle-float 3s infinite ease-in-out;
}

@keyframes subtle-float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Отключаем float при наведении, чтобы не конфликтовать */
.feedback-call-btn:hover {
  animation: none;
}

/* Маска */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}
/* Модальное окно */
.modal {
  background: white;
  width: 95%;
  max-width: 450px;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  animation: slideIn 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Крестик закрытия */
.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: color 0.2s;
}

.close-modal:hover {
  color: #333;
}

.modal h3 {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #1a3a2f;
  margin-bottom: 10px;
  text-align: center;
}

.modal p {
  text-align: center;
  color: #666;
  margin-bottom: 25px;
  font-size: 14px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  transition: border-color 0.2s;
  box-sizing: border-box;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c5f2d;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.modal-checkbox label{
display: flex; align-items: flex-start; gap: 10px; cursor: pointer; margin-bottom: 1rem;
}

.contact-form-personal-data {
  margin-top: 0.2rem;
}
.button__contact-form {
  background-color: transparent;
  border: none;
  font-size: inherit;
  color: rgb(0, 102, 204);
  line-height: inherit;
  cursor: pointer;
}
.button__contact-form:hover {
  text-decoration: underline;
}

/* Сообщение об успехе */
.success-message {
  text-align: center;
  padding: 20px;
  background: #e8f5e9;
  border-radius: 12px;
  color: #2c5f2d;
  margin-top: 15px;
  display: none;
}

/* Уведомление внизу */
.toast-notification {
  position: fixed;
  bottom: 110px;
  right: 30px;
  background: #2c5f2d;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  z-index: 1002;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-family: system-ui, sans-serif;
}

/* ОТЗЫВЫ */
/* ОТЗЫВЫ */
/* .reviews-section {
  margin: 72px 0 48px;
  padding: 0 20px;
} */
.reviews h2 {
  position: relative;
}
.reviews h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0px;
  width: 48px;
  height: 2px;
  background: rgb(231, 180, 44);
  border-radius: 2px;
}

/* Две колонки */
.reviews__subtitle {
  text-align: center;
  color: #5a4a3a;
  margin-bottom: 40px;
  font-size: 1.1rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

/* Форма отзыва */
.form-card {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0d5c5;
  border-radius: 12px;
  font-size: 16px;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #2c5f2d;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Рейтинг звёздами */
.rating-group {
  display: flex;
  gap: 10px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.rating-group input {
  display: none;
}

.rating-group label {
  font-size: 30px;
  cursor: pointer;
  color: #ddd;
  transition: color 0.2s;
}

.rating-group label:hover,
.rating-group label:hover ~ label,
.rating-group input:checked ~ label {
  color: #ffd700;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #2c5f2d, #1a3a2f);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Список отзывов */
.reviews-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reviews-card h4 {
  color: #1a3a2f;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.reviews-list {
  max-height: 500px;
  overflow-y: auto;
}

.review-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.review-item:last-child {
  border-bottom: none;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.review-name {
  font-weight: bold;
  color: #1a3a2f;
  font-size: 1.1rem;
}

.review-stars {
  color: #ffd700;
  font-size: 18px;
}

.review-date {
  color: #999;
  font-size: 12px;
}

.review-message {
  color: #555;
  line-height: 1.5;
  margin-top: 10px;
}

.no-reviews {
  text-align: center;
  color: #999;
  padding: 40px;
}

/* Сообщения */
.alert {
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: none;
}

.alert-success {
  background: #e8f5e9;
  color: #2c5f2d;
  border: 1px solid #a5d6a7;
}

.alert-error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* Загрузка */
.loading {
  display: none;
  text-align: center;
  padding: 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e0d5c5;
  border-top-color: #2c5f2d;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
