@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
}
.animate-on-scroll.slide-up {
  transform: translateY(30px);
}
.animate-on-scroll.slide-up.animated {
  transform: translateY(0);
}
.animate-on-scroll.slide-left {
  transform: translateX(-30px);
}
.animate-on-scroll.slide-left.animated {
  transform: translateX(0);
}
.animate-on-scroll.slide-right {
  transform: translateX(30px);
}
.animate-on-scroll.slide-right.animated {
  transform: translateX(0);
}
.animate-on-scroll.fade-scale {
  transform: scale(0.9);
}
.animate-on-scroll.fade-scale.animated {
  transform: scale(1);
}

.animate-delay-1 {
  transition-delay: 0.1s;
}

.animate-delay-2 {
  transition-delay: 0.2s;
}

.animate-delay-3 {
  transition-delay: 0.3s;
}

.animate-delay-4 {
  transition-delay: 0.4s;
}

.animate-delay-5 {
  transition-delay: 0.5s;
}

.animate-delay-6 {
  transition-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #2D3436;
  background-color: #F7F5F2;
  overflow-x: hidden;
  padding-top: 80px;
}
@media (max-width: 767px) {
  body {
    padding-top: 70px;
  }
}

body.scroll-locked {
  overflow: hidden;
}

.section-alt {
  background-color: #BEE3DB;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #0F4C5C;
  color: #FFFFFF;
  padding: 1rem 2rem;
  text-decoration: none;
  z-index: 10002;
  font-weight: 600;
  border-radius: 0 0 1rem 0;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #FF8E72;
  outline-offset: 2px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 5px;
  background: linear-gradient(90deg, #0F4C5C 0%, #FF8E72 50%, #0F4C5C 100%);
  background-size: 200% 100%;
  z-index: 10001;
  transition: width 0.1s ease;
  box-shadow: 0 2px 8px rgba(15, 76, 92, 0.5), 0 0 10px rgba(15, 76, 92, 0.3);
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.header--scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.98);
}
.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 767px) {
  .header__container {
    padding: 0 1rem;
  }
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  height: 80px;
}
@media (max-width: 767px) {
  .header__container {
    height: 70px;
    padding: 0.5rem 1rem;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header__logo img {
  height: 65px;
  width: auto;
  filter: brightness(0);
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .header__logo img {
    height: 50px;
  }
}
.header__logo:hover img {
  transform: scale(1.05);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1023px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100vh;
    height: 100%;
    background-color: #FFFFFF;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 100px 3rem 3rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 99999;
    -webkit-overflow-scrolling: touch;
  }
  .header__nav--active {
    transform: translateX(0);
    visibility: visible;
  }
}
@media (max-width: 767px) {
  .header__nav {
    padding: 90px 2rem 2rem;
  }
}
.header__link {
  color: #2D3436;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  white-space: nowrap;
  position: relative;
}
.header__link:hover {
  color: #0F4C5C;
}
.header__link:focus {
  outline: 2px solid #0F4C5C;
  outline-offset: 2px;
  border-radius: 4px;
}
@media (max-width: 1023px) {
  .header__link {
    display: block;
    font-size: 1.125rem;
    padding: 2rem 1rem;
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(15, 76, 92, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    color: #2D3436;
  }
  .header__link:hover, .header__link:focus {
    background: rgba(15, 76, 92, 0.05);
    color: #0F4C5C;
    padding-left: 2rem;
  }
  .header__link:last-child {
    border-bottom: none;
  }
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 1001;
}
@media (max-width: 1023px) {
  .header__burger {
    display: flex;
  }
  .header__burger--active {
    z-index: 100000;
  }
}
.header__burger span {
  width: 25px;
  height: 3px;
  background: #0F4C5C;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__burger--active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.header__burger--active span:nth-child(2) {
  opacity: 0;
}
.header__burger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.btn--small {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}
@media (max-width: 1023px) {
  .btn--small {
    width: 100%;
    margin-top: 2rem;
  }
}

.header__nav .btn {
  align-self: center;
  height: auto;
  flex-shrink: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2D3436;
  margin-bottom: 2rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 3rem;
  }
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: none;
  border-radius: 1rem;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background: linear-gradient(135deg, #0F4C5C 0%, #093642 100%);
  color: #FFFFFF;
}
.btn--primary:hover {
  background: linear-gradient(135deg, #093642 0%, rgb(5.94, 35.64, 43.56) 100%);
}
.btn--outline {
  display: block;
  width: 100%;
  padding: 12px;
  border: 2px solid #0F4C5C;
  color: #0F4C5C;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: transparent;
}
.btn--outline:hover {
  background: #0F4C5C;
  color: #FFFFFF;
}
.btn--secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  backdrop-filter: blur(10px);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.hero .btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}
.hero .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.btn--block {
  display: block;
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/relax1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 767px) {
  .hero {
    background-attachment: scroll;
  }
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 76, 92, 0.85) 0%, rgba(44, 110, 122, 0.72) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #FFFFFF;
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.hero__logo {
  margin-bottom: 4rem;
  animation: fadeInScale 0.8s ease-out;
  display: inline-block;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.hero__logo:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}
.hero__logo img {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  display: block;
}
@media (min-width: 1024px) {
  .hero__logo img {
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .hero__logo img {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .hero__logo {
    padding: 8px 12px;
    margin-bottom: 3rem;
  }
}
.hero__logo {
  display: none !important;
}
.hero__title {
  color: #FFFFFF;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.8s ease-out 0.2s both;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }
}
.hero__subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.75;
  margin-bottom: 6rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.8s ease-out 0.4s both;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}
.hero__buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.6s both;
}
@media (max-width: 767px) {
  .hero__buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

.packages {
  padding: 6rem 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: start;
}

.package-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(15, 76, 92, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(15, 76, 92, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}
.package-card:hover {
  transform: translateY(-10px);
}
.package-card--popular {
  border: 2px solid #FF8E72;
  transform: scale(1.05);
  z-index: 2;
}
.package-card--popular:hover {
  transform: scale(1.05) translateY(-10px);
}
@media (max-width: 767px) {
  .package-card--popular {
    transform: scale(1);
  }
  .package-card--popular:hover {
    transform: translateY(-10px);
  }
}
.package-card__header {
  margin-bottom: 2rem;
}
.package-card__title {
  font-size: 24px;
  color: #0F4C5C;
  margin: 0 0 5px;
}
.package-card__subtitle {
  font-size: 14px;
  color: #666666;
  margin-bottom: 5px;
}
.package-card__price {
  font-size: 36px;
  font-weight: 700;
  color: #0F4C5C;
  margin-top: 10px;
}
.package-card__price span {
  font-size: 16px;
  font-weight: 400;
  color: #999;
}
.package-card__body {
  flex-grow: 1;
}
.package-card__footer {
  margin-top: auto;
}

.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF8E72 0%, #FFB09C 100%);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.package-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #2D3436;
}
.package-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0F4C5C;
  font-weight: 700;
}
.package-list li strong {
  color: #0F4C5C;
}

.concept {
  padding: 6rem 0;
  background-color: #f8f9f8;
}
.concept__text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
  color: #666666;
}
.concept__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}
.concept__feature {
  text-align: center;
  padding: 3rem;
}
.concept__feature h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}
.concept__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .concept__icon {
    width: 80px;
    height: 80px;
  }
}
.concept__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.program-steps {
  padding: 6rem 0;
  background-image: url("../img/bg_3_gradient.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.program-steps .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
@media (max-width: 767px) {
  .program-steps .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: #FFFFFF;
  border-radius: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.step-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.step-card {
  padding: 3rem;
  text-align: center;
}
.step-card__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.step-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.step-card:hover .step-card__image img {
  transform: scale(1.1);
}
.step-card__title {
  color: #0F4C5C;
  margin-bottom: 1rem;
}
.step-card__text {
  color: #666666;
  line-height: 1.75;
}

.btn-link {
  background: none;
  border: none;
  color: #0F4C5C;
  border-bottom: 1px dashed #0F4C5C;
  cursor: pointer;
  margin-top: 15px;
  font-size: 14px;
  padding: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  transition: all 0.3s ease;
}
.btn-link:hover {
  color: #093642;
  border-bottom-color: #093642;
}

.procedures {
  padding: 6rem 0;
  background-image: url("../img/bg_4_gradient.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.procedures-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.procedures-slider__wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
}

.procedure-slide {
  display: none;
}
.procedure-slide.active {
  display: block;
  animation: fadeInScale 0.5s ease;
}
.procedure-slide__image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .procedure-slide__image {
    height: 300px;
  }
}
.procedure-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.procedure-slide__content {
  background: #FFFFFF;
  padding: 3rem;
  text-align: center;
}
.procedure-slide__title {
  color: #0F4C5C;
  margin-bottom: 1rem;
}
.procedure-slide__text {
  color: #666666;
  line-height: 1.75;
}

.procedures-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.slider-nav__btn {
  width: 50px;
  height: 50px;
  border: 2px solid #0F4C5C;
  background: #FFFFFF;
  color: #0F4C5C;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-nav__btn:hover {
  background: #0F4C5C;
  color: #FFFFFF;
  transform: scale(1.1);
}

.slider-nav__dots {
  display: flex;
  gap: 1rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 76, 92, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background: #0F4C5C;
  transform: scale(1.2);
}
.slider-dot:hover {
  background: rgba(15, 76, 92, 0.6);
}

.team {
  padding: 6rem 0;
  background-image: url("../img/bg_5_gradient.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
}
@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-member {
  background: #FFFFFF;
  border-radius: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.team-member:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.team-member {
  text-align: center;
  padding: 3rem;
}
.team-member__photo {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #E8DCC6;
}
.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-member__name {
  color: #0F4C5C;
  margin-bottom: 0.5rem;
}
.team-member__role {
  font-weight: 600;
  color: #FF8E72;
  margin-bottom: 1rem;
}
.team-member__description {
  color: #666666;
  line-height: 1.75;
}

.benefits {
  padding: 6rem 0;
  background-color: #f8f9f8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
@media (max-width: 767px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem;
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.benefit-item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}
.benefit-item__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #0F4C5C;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-item__icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
.benefit-item__text {
  color: #2D3436;
  line-height: 1.75;
  margin: 0;
}

.footer {
  padding: 6rem 0 3rem;
  background: linear-gradient(135deg, #2D3436 0%, #0F4C5C 100%);
  color: #FFFFFF;
}
.footer__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .footer__content {
    grid-template-columns: 1fr;
  }
}
.footer__title {
  color: #FFFFFF;
  margin-bottom: 2rem;
}
.footer__subtitle {
  margin-bottom: 3rem;
  opacity: 0.9;
}
.footer__contacts-title {
  color: #FFFFFF;
  margin-bottom: 2rem;
}
.footer__contact-item {
  margin-bottom: 2rem;
}
.footer__contact-item strong {
  display: block;
  margin-bottom: 0.5rem;
}
.footer__contact-item a {
  color: #FFFFFF;
  text-decoration: none;
  opacity: 0.9;
}
.footer__contact-item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer__social {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
}
.social-link img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.social-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.social-link:hover img {
  transform: scale(1.1);
}
.social-link:active {
  transform: translateY(0);
}

.footer__copyright {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.7;
}

.contact-form .form-group {
  margin-bottom: 2rem;
  position: relative;
}
.contact-form .form-input {
  width: 100%;
  padding: 1rem 3rem 1rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form .form-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.contact-form .form-input:focus {
  outline: none;
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}
.contact-form .form-input--error {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
  padding-right: 3rem;
}
.contact-form .form-input--error:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}
.contact-form .form-input--success {
  border-color: #4A7C59;
  background: rgba(74, 124, 89, 0.1);
  padding-right: 3rem;
}
.contact-form .form-input--success:focus {
  border-color: #4A7C59;
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.2);
}
.contact-form .form-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: none;
  pointer-events: none;
}
.contact-form .form-icon--success {
  display: none;
}
.contact-form .form-icon--error {
  display: none;
}
.contact-form .form-icon img {
  width: 100%;
  height: 100%;
}
.contact-form .form-group:has(.form-input--success) .form-icon--success {
  display: block;
}
.contact-form .form-group:has(.form-input--error) .form-icon--error {
  display: block;
}
.contact-form .form-error {
  color: #ffcccc;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
  min-height: 1.25rem;
}
.contact-form .form-group--checkbox {
  margin-bottom: 2rem;
}
.contact-form .form-group--checkbox .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.875rem;
}
.contact-form .form-group--checkbox .checkbox-label input[type=checkbox] {
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.contact-form .form-group--checkbox .checkbox-label a {
  color: #FF8E72;
  text-decoration: underline;
}
.contact-form .form-group--checkbox .checkbox-label a:hover {
  color: rgb(255, 182.8723404255, 165);
}
.contact-form .form-message {
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 1rem;
  text-align: center;
  font-weight: 600;
  animation: slideUp 0.3s ease;
}
.contact-form .form-message--success {
  background-color: #4A7C59;
  color: #FFFFFF;
}
.contact-form .form-message--error {
  background-color: #dc3545;
  color: #FFFFFF;
}
.contact-form .form-message--warning {
  background-color: #e6a23c;
  color: #FFFFFF;
}

.testimonials {
  padding: 6rem 0;
  background-color: #f8f9f8;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-slider__wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
}
.testimonial-slide.active {
  display: block;
  animation: fadeInScale 0.5s ease;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 1.5rem;
  padding: 4rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.testimonial-card__rating {
  margin-bottom: 2rem;
}
.testimonial-card__rating .star {
  color: #FFD700;
  font-size: 1.5rem;
  margin: 0 2px;
}
.testimonial-card__text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #2D3436;
  margin-bottom: 3rem;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.testimonial-card__photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: #0F4C5C;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-card__info {
  text-align: left;
}
.testimonial-card__name {
  font-weight: 600;
  color: #2D3436;
  margin-bottom: 0.25rem;
}
.testimonial-card__date {
  font-size: 0.875rem;
  color: #666666;
}

.testimonial-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonials-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-nav__btn {
  width: 50px;
  height: 50px;
  border: 2px solid #0F4C5C;
  background: #FFFFFF;
  color: #0F4C5C;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-nav__btn:hover {
  background: #0F4C5C;
  color: #FFFFFF;
  transform: scale(1.1);
}

.testimonial-nav__dots {
  display: flex;
  gap: 1rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 76, 92, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonial-dot.active {
  background: #0F4C5C;
  transform: scale(1.2);
}
.testimonial-dot:hover {
  background: rgba(15, 76, 92, 0.6);
}

.floating-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}
@media (max-width: 767px) {
  .floating-button {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
}
.floating-button svg {
  width: 28px;
  height: 28px;
}
@media (max-width: 767px) {
  .floating-button svg {
    width: 24px;
    height: 24px;
  }
}
.floating-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  background: #20BA5A;
}
.floating-button:active {
  transform: scale(0.95);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}
.gallery {
  padding: 6rem 0;
  background-color: #f8f9f8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 76, 92, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item__icon {
  font-size: 2rem;
  color: #FFFFFF;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}
.lightbox--active {
  display: flex;
}
.lightbox__close {
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2001;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}
.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2001;
}
.lightbox__prev:hover, .lightbox__next:hover {
  background: rgba(255, 255, 255, 0.3);
}
.lightbox__prev {
  left: 3rem;
}
.lightbox__next {
  right: 3rem;
}
.lightbox__image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 1rem;
}

.faq {
  padding: 6rem 0;
  background-color: #FFFFFF;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(15, 76, 92, 0.1);
  margin-bottom: 1rem;
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 3rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2D3436;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
}
.faq-question:hover {
  color: #0F4C5C;
  background: rgba(15, 76, 92, 0.05);
}
.faq-question:focus {
  outline: 2px solid #0F4C5C;
  outline-offset: 2px;
}
.faq-question .faq-icon {
  font-size: 1.5rem;
  color: #0F4C5C;
  transition: transform 0.5s ease ease;
  flex-shrink: 0;
  margin-left: 2rem;
  font-weight: 700;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-question[aria-expanded=true] {
  color: #0F4C5C;
  background: rgba(15, 76, 92, 0.05);
}
.faq-question[aria-expanded=true] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease, opacity 0.3s ease 0.1s;
  padding: 0 3rem;
  opacity: 0;
}
.faq-answer p {
  padding: 2rem 0 3rem;
  color: #666666;
  line-height: 1.75;
  margin: 0;
  transition: opacity 0.3s ease 0.2s;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 3rem;
  opacity: 1;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease, opacity 0.3s ease;
}
.faq-item.active .faq-answer p {
  opacity: 1;
  transition: opacity 0.3s ease 0.1s;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal--active {
  display: flex;
}
.modal--visible .modal__overlay {
  opacity: 1;
}
.modal--visible .modal__content {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal__content {
  position: relative;
  z-index: 1001;
  background: #FFFFFF;
  border-radius: 1.5rem;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .modal__content {
    padding: 3rem;
    max-height: 95vh;
  }
}
.modal__content--wide {
  max-width: 800px;
}
.modal__body--scroll {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(15, 76, 92, 0.1);
  color: #0F4C5C;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1002;
}
.modal__close:hover {
  background: #0F4C5C;
  color: #FFFFFF;
  transform: rotate(90deg);
}
.modal__title {
  color: #0F4C5C;
  margin-bottom: 3rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  padding-right: 50px;
}
@media (max-width: 767px) {
  .modal__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    padding-right: 40px;
  }
}
.modal__body {
  color: #2D3436;
  line-height: 1.75;
}
.modal__body h3 {
  color: #0F4C5C;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.modal__body p {
  margin-bottom: 2rem;
}
.modal__body ul {
  margin-left: 3rem;
  margin-bottom: 2rem;
}
.modal__body ul li {
  margin-bottom: 1rem;
}
.modal__body ul li strong {
  color: #0F4C5C;
}
.modal__body strong {
  color: #2D3436;
}

.step-card[data-modal] {
  cursor: pointer;
  transition: all 0.3s ease;
}
.step-card[data-modal]:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.step-card[data-modal]:active {
  transform: translateY(-5px);
}

/*# sourceMappingURL=main.css.map */
