/*!
Theme Name: GetMyAcht
Author: VINCH
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
*/

/*--------------------------------------------------------------
# THEME STYLES
--------------------------------------------------------------*/

:root {
  --main-color: #23BCB3;
  --accent-color: #004378;
  --dark-color: #282929;
  --light-color: #f5f3ee;
  --light-color-2: #FFFEFE;
  --light-accent-color: #d4c3b7;
  --background-dark-color: #000;
  --dark-color-2: #101212;
  --dark-color-3: #181E1D;
}

.product__text {
  display: none;
}


#pre {
  position: fixed;
  display: grid;
  place-items: center;
  height: 100vh;
  width: 100vw;
  background-color: var(--background-dark-color);
  z-index: 999;
  overflow: hidden;
}

html {
  box-sizing: border-box;
  overflow-x: hidden;

  /* Scrolbar */
  scrollbar-width: 10px;
  scrollbar-color: var(--dark-color);
  scroll-behavior: smooth;
}

html.lock {
  overflow: hidden;
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: var(--light-color);
}

html::-webkit-scrollbar-thumb {
  border: none;
  background-color: #d4c3b79c;
}

html::-webkit-scrollbar-thumb:hover {
  border: none;
  background-color: #d4c3b7;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

input,
button,
textarea,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

body {
  /* background-color: var(--background-dark-color); */
  /* background-color: var(--light-color); */
  background-color: var(--dark-color-3);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 95%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-weight: 700;
}

h1 {
  font-size: 55px;
}

a {
  color: inherit;
  text-decoration: none;
}

.icons {
  width: 20px;
  height: 20px;
  fill: var(--light-accent-color);
}

/* =============|BUTTONS|============= */

.button {
  background-color: var(--main-color);
  color: var(--light-color);
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.2s;
  overflow: hidden;
  font-size: 18px;

  border-radius: 15px;
}

@media screen and (max-width: 767px) {
  .button {
    font-size: 16px;
  }
}

.button::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -200%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.582);
  filter: blur(60px);
  transform: skew(20deg);
  transition: 0.2s ease-out;
}

.button:hover::before {
  top: 0;
  left: 100%;
}

.button:hover {
  filter: brightness(1.1);
  box-shadow: inset 5px 0 10px rgba(0, 0, 0, 0.5);
}

.button--accent {
  background-color: var(--accent-color);
}

.button-sort {
  all: unset;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 15px;
  background: var(--light-color);
  border: 1px solid var(--main-color);
  color: var(--dark-color);
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.button-sort:hover {
  color: var(--main-color);
  border-color: var(--dark-color);
}

.button-add {
  display: flex;
  gap: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

.button-sort__icon,
.button-add__icon,
.filters__mobile-icon,
.filters__mobile-icon--close {
  fill: var(--main-color);
  width: 22px;
  height: 22px;
}

.button-add__icon {
  fill: #fff;
}

.attributes-btns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.button--wa {
  background-color: #014d4b;
  display: flex;
  gap: 15px;
  align-items: center;
}

.cat {
  display: flex;
  justify-content: center;
  margin: 50px;
}

/* =============|HEADER|============= */
.header {
  background-color: var(--dark-color);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  gap: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--light-color);
  position: relative;
}

.logo {
  max-width: 180px;
}

.header__logo {
  /* align-self: flex-start; */
  /* margin-right: auto; */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

._overlay {
  position: absolute;
  float: left;
  opacity: 0;
  transition: 0.2s;
}

._overlay.menu--visible {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
  z-index: 10;
}

.menu__logo {
  margin: 0 auto;
  opacity: 0.8;
  transition: 0.5s;
}

.menu__logo:hover {
  opacity: 1;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  /* flex-grow: 1; */
}

.right-menu {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 40px
}

.right-menu .button {
  color: #000 !important;
}

.menu__list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Скрываем пункт "Контакты" в навигации header на десктопе */
.header .menu__list #menu-item-1034,
.header .menu__list #menu-item-1035 {
  display: none;
}

/* Показываем пункт "Контакты" на мобильных устройствах */
@media screen and (max-width: 1100px) {

  .header .menu__list #menu-item-1034,
  .header .menu__list #menu-item-1035 {
    display: block;
  }

  /* Скрываем кнопку "Связаться с нами" в header на мобильных */
  .header .right-menu>a.button {
    display: none !important;
  }
}

.menu__link {
  font-weight: 700;
  padding: 7px 0;
  text-decoration: none;
}

.menu__link:hover,
.menu__link.menu__link--current {
  color: var(--main-color);
  border-bottom: 3px solid var(--main-color);
}


/*sub menu*/
.menu li a[href="#"]:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--light-color);
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);

}

.menu li a[href="#"]:hover:after {
  border-left: 6px solid var(--light-accent-color);
}

.menu li ul {
  position: absolute;
  min-width: 150px;
  display: none;
  padding: 20px 20px 10px 20px;
  margin-left: -20px;
  list-style: none;

}

.header__inner .menu:not(.menu--visible) li ul {
  background: var(--dark-color);
}

.menu li>ul li a {
  display: block;
  text-transform: none;
  border-bottom: 3px solid transparent;
}

.menu li>ul li ul {
  position: absolute;
  right: -150px;
  top: 0;
}

.menu li:hover>ul {
  display: block;
  z-index: 100;
}



/*sub menu*/
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-weight: bold;
}

.lang-switcher>a>img {
  display: none;
}

.lang-switcher a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher .lang_active {
  display: none;
}

.lang-switcher:hover {
  text-decoration-line: underline;
  filter: brightness(1.5);
}

.lang-switcher__flag {
  width: 20px;
  height: 12px;
}

.location__text {
  font-size: 16px;
  font-weight: 700;
}

.phone,
.location,
.email {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.phone__icon,
.location__icon,
.email__icon {
  width: 20px;
  height: 20px;
  fill: var(--main-color);
}

.phone__text {
  font-weight: 700;
}

/* =============|BURGER MENU|============= */

.menu__burger {
  all: unset;
  position: relative;
  width: 20px;
  height: 15px;
  z-index: 20;
  cursor: pointer;
  flex-shrink: 0;
  display: none;
}

.menu__burger i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 3px;
  background-color: var(--main-color);
}

.menu__burger::before,
.menu__burger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--main-color);
  transition: all 0.2s;
}

.menu__burger::before {
  top: 0;
}

.menu__burger::after {
  bottom: 0;
}

.menu__burger.menu--visible i {
  transform: scale(0);
}

.menu__burger.menu--visible::before {
  top: 50%;
  transform: rotate(-45deg);
}

.menu__burger.menu--visible::after {
  top: 50%;
  transform: rotate(45deg);
}

.mobile-only,
.mobile-only--add {
  display: none;
}

.button.mobile-only,
.button.menu__btn.mobile-only {
  display: none !important;
}
.menu.menu--mobile > .button.menu__btn.mobile-only {
  color: #000 !important;
}


/* =============|FOOTER|============= */

.footer {
  padding-top: 55px;
  /* background-image: url(../images/footer-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center; */
  background-color: #1F2423;
  color: var(--light-color);
  min-height: 400px;
}

.footer__inner {
  display: grid;
  justify-content: space-between;
  gap: 20px;
  grid-template-areas: 'logo menu btn contacts';
  margin-bottom: 50px;
  align-items: center;
}

.footer__menu {
  flex-wrap: wrap;
  grid-area: menu;
}

.footer__logo {
  grid-area: logo;
  align-self: center;
}

.footer__btn {
  grid-area: btn;
}

.contacts {
  display: grid;
  gap: 20px;
  font-style: normal;
  flex-shrink: 0;
}

.footer__contacts {
  grid-area: contacts;
  justify-self: center;
}

.copy {
  font-size: 14px;
}

/* =============|MAIN|============= */

/* =============|ROUTES PAGE STYLES|============= */
.main__inner--services {
  padding-top: 20px;
  padding-bottom: 200px;
  display: grid;
  background-color: var(--dark-color-3);
  gap: 20px;
}

.main__title--services {
  margin-bottom: 0px;
  color: white;
  font-size: 42px;
  font-weight: 700;
  text-align: start;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 1%;
  background-color: transparent;
}

@media (min-width: 768px) {
  .service {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.service__image {
  display: flex;
  padding-top: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .service__image {
    width: 45%;
    flex-shrink: 0;
  }
}

.service__content {
  width: 100%;
  align-items: start;
  justify-content: center;
  display: flex;
  flex-direction: column;
  color: white;
}

@media (min-width: 768px) {
  .service__content {
    flex: 1;
    width: auto;
  }

  .service__content a .button {
    color: #000 !important;
  }
}

.service__content h2 {
  color: #23BCB3 !important;
  font-size: 24px;
  font-weight: 700;

}

.service__content-text {
  display: grid;
  gap: 20px;
  margin-bottom: 50px;
  color: white;
}

.service__content-text p {
  color: white;
  font-size: 16px;
  line-height: 1.6;
}

/* Ensure correct mobile stacking for routes/services cards */
@media (max-width: 767px) {
  .service {
    flex-direction: column !important;
  }

  .service__image {
    order: 1 !important;
    width: 100% !important;
  }

  .service__content {
    order: 2 !important;
    width: 100% !important;
  }
}

.button {
  background-color: #23BCB3;
  color: white !important;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.button:hover {
  background-color: #1ea59c;
  transform: translateY(-2px);
}

.main__inner--yachts {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .main__inner--yachts {}

}

.main__inner--contacts {
  padding-top: 70px;
  padding-bottom: 5%;
  min-height: 70vh;
}

.main__title {
  font-size: min(55px, calc((1vw + 1vh) * 2.5));
  color: var(--light-color-2);
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 30px;
  font-weight: 500;
}


.home-inner,
.catalog-inner {
  position: relative;
  background-color: var(--dark-color-3);
  max-width: 1340px;
  margin: 0 auto 50px;
  padding: 0px 20px;
  /* border-top: 6px solid var(--dark-color); */
  z-index: 1;
}

.post-inner {
  position: relative;
  background-color: var(--light-color);
  max-width: 1340px;
  margin: 0 auto 50px;
  padding-top: 50px;
  /* border-top: 6px solid var(--dark-color); */
  z-index: 1;
}

/* =============|SERVICE|============= */
.main__inner--service .service__content {
  flex: 2;
}

.main__inner--service {
  padding-bottom: 0px;
}

/* =============|CATERING CONTENT|============= */
.catering-content {
  width: 100%;
  margin: 0 auto;
}

.catering-content__layout {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.catering-content__image {
  flex: 0 0 auto;
  order: 0;
}

.catering-content__image-img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: cover;
}

.catering-content__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  order: 1;
  min-width: 0;
}

.catering-content__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #23BCB3;
  margin: 0;
  width: 100%;
}

.catering-content__paragraph {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 16px);
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  width: 100%;
  text-align: left;
}

/* Адаптивность для кейтеринга */
@media screen and (max-width: 1024px) {
  .catering-content__layout {
    gap: 40px;
  }

  .catering-content__image-img {
    max-width: 400px;
  }
  .catering-content__subtitle{
    text-align: left;
  }
}

@media screen and (max-width: 768px) {


  .form-submit .submit-btn {
    width: 100%;
  }

  .catering-content {
    padding: 0 15px;
  }

  .catering-content__layout {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .catering-content__image-img {
    max-width: 350px;
  }

  .catering-content__text {
    align-items: center;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {


  .catering-content {
    padding: 0 10px;
  }

  .catering-content__layout {
    gap: 25px;
  }

  .catering-content__image-img {
    max-width: 100%;
  }
}

/* =============|EXPERTS SECTION|============= */
.experts-section {
  width: 100%;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 80px) 20px;
}

.experts-section__container {
  width: 100%;
  max-width: 1400px;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.experts-section__content {
  width: 70%;
  background: rgba(35, 188, 179, 0.1);
  border-radius: 30px;
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(40px, 10vw, 130px) clamp(40px, 6vw, 72px);
  min-height: 400px;
}

.experts-section__text {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 30px);
  max-width: 650px;
}

.experts-section__title {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
  width: 100%;
}

.experts-section__description {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.4;
  color: #ffffff80;
  margin: 0;
  width: 100%;
}

.experts-section__image {
  position: absolute;
  right: -35%;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  border-radius: 30px;
  overflow: hidden;
  width: min(50vw, 600px);
  height: min(35vw, 450px);
  max-width: 744px;
  max-height: 530px;
}

.experts-section__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/* Адаптивность для experts section */
@media screen and (max-width: 1200px) {
  .experts-section__image {
    width: min(45vw, 500px);
    height: min(30vw, 400px);
  }
}

@media screen and (max-width: 1024px) {
  .experts-section__container {
    flex-direction: column;
    gap: 40px;
  }

  .experts-section__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(40px, 5vw, 60px) clamp(30px, 4vw, 50px);
  }

  .experts-section__text {
    max-width: 100%;
    width: 90%;
    order: 2;
  }

  .experts-section__image {
    position: relative;
    right: auto;
    top: auto;
    transform: scaleX(-1);
    width: 100%;
    max-width: 500px;
    height: min(40vw, 350px);
    order: 1;
    margin-bottom: 30px;
  }
}

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

  .experts-section__container {
    gap: 30px;
  }

  .experts-section__content {
    padding: 30px 20px;
  }

  .experts-section__text {
    gap: 20px;
    width: 90%;
    order: 2;
  }

  .experts-section__image {
    height: min(45vw, 300px);
    order: 1;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .experts-section {
    padding: 30px 10px;
  }

  .experts-section__content {
    padding: 25px 15px;
  }

  .experts-section__text {
    width: 100%;
    order: 2;
  }

  .experts-section__image {
    height: min(50vw, 250px);
    order: 1;
    margin-bottom: 15px;
  }
}

/* =============|ABOUT US SECTION|============= */
.about-us-section {
  width: 100%;
  margin: 0 auto;
  padding: 0px 0px clamp(60px, 8vw, 80px) 0px;
}

.about-us-section__container {
  width: 100%;
  max-width: 1400px;
  margin: 0px auto 50px auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(60px, 20vw, 400px);
}

.about-us-section__images {
  flex: 0 0 auto;
  position: relative;
  width: 100%;
  max-width: 500px;
  height: clamp(300px, 40vw, 400px);
}

.about-us-section__image {
  position: absolute;
  width: 100%;
  max-width: 375px;
  height: 100%;
  max-height: 378px;
  border-radius: 10px;
  overflow: hidden;
}

.about-us-section__image--first {
  left: 0;
  top: 0;
  z-index: 2;
}

.about-us-section__image--second {
  left: clamp(200px, 25vw, 80%);
  top: clamp(60px, 8vw, 80px);
  z-index: 1;
}

.about-us-section__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.about-us-section__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(30px, 4vw, 40px);
  min-width: 0;
}

.about-us-section__text {
  width: 100%;
}

.about-us-section__description {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.32;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  width: 100%;
}

.about-us-section__button {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  gap: 10px;
  width: auto;
  max-width: 300px;
  height: 54px;
  background: #23BCB3;
  border: 2px solid #23BCB3;
  border-radius: 15px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.about-us-section__button:hover {
  background: #1ea59c;
  border-color: #1ea59c;
  transform: translateY(-2px);
}

/* Адаптивность для about-us section */
@media screen and (max-width: 1024px) {
  .about-us-section__container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .about-us-section__images {
    max-width: 90%;
    margin: auto;
    height: 300px;
  }

  .about-us-section__image--second {
    left: 50%;
    top: 40px;
  }

  .about-us-section__image-img {
    width: 90%;
    height: 90%;
  }

  .about-us-section__content {
    align-items: flex-start;
    text-align: left;
    align-items: center;
    width: 85%;
    padding-top: 5%;
  }

  .about-us-section__button {
    white-space: nowrap;
  }
}

@media screen and (max-width: 768px) {
  .about-us-section {
    padding: 40px 15px;
  }

  .about-us-section__container {
    gap: 30px;
  }

  .about-us-section__images {
    max-width: 90%;
    margin: 0 auto;
    height: 250px;
  }

  .about-us-section__image-img {
    width: 70%;
    height: 70%;
  }

  .about-us-section__image--second {
    left: 50%;
    top: 30px;
  }

  .about-us-section__button {
    max-width: 250px;
    height: 48px;
    font-size: 16px;
  }
}
@media screen and (max-width: 650px) {
  .about-us-section__image-img {
    width: 55%;
    height: 55%;
  }
}
@media screen and (max-width: 520px) {
  .about-us-section__image-img {
    width: 50%;
    height: 50%;
  }
}


@media screen and (max-width: 480px) {
  .about-us-section {
    padding: 30px 10px;
  }

  .about-us-section__container {
    gap: 25px;
  }

  .about-us-section__images {
    max-width: 100%;
    width: 80%;
    height: 200px;
  }

  .about-us-section__image--second {
    left: 50%;
    top: 25px;
  }

  .about-us-section__image-img {
    width: 45%;
    height: 70%;
  }

  .about-us-section__button {
    max-width: 200px;
    height: 44px;
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* =============|ARTICLE|============= */

.add-service__img {
  aspect-ratio: 75 / 52;
  border-radius: 20px;
  max-width: 625px;
  width: 100%;
}

.service__image-img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
}

.service__content button {
  color: black !important;
}

.service__content-title {
  font-size: min(35px, calc((1vw + 1vh) * 1.5));
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
  color: white;
}

.service__content-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 150%;
  background-color: #23BCB3;
}

.add-service__title {
  font-size: 42px !important;
  font-weight: 700 !important;
  text-align: center;
}

/* =============|YACHTS|============= */

.yachts__head,
.post__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
  /* padding: 0px 20px; */
}

.yachts__head button {
  width: 100%;
  max-width: 200px;
  border-radius: 10px;
  justify-content: center;
  flex-shrink: 1 !important;
}

@media screen and (max-width: 1100px) {
  .yachts__head {
    display: flex;
    width: 100%;
  }

}

/* =============|YACHT LIST|============= */

.yacht-list {
  list-style: none;
  display: grid;
  gap: 40px 30px;
  justify-content: center;
  justify-items: center;
}

@media (min-width: 1140px) {

  /* 3 × 380px + 2 gaps ≈ 1140px */
  .yacht-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === 2 coloane === */
@media (min-width: 760px) and (max-width: 1139px) {

  /* 2 × 380px + gap ≈ 760px */
  .yacht-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === 1 coloană === */
@media (max-width: 759px) {
  .yacht-list {
    grid-template-columns: 1fr;
    padding: 0px 20px;
  }
}

/* =============|YACHT CARD|============= */

.yacht-list__item {
  width: 100%;
  max-width: 490px;
  padding: 20px 20px;
  background-color: #282929;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .yacht-list__item {
    padding: 30px 20px;
  }
}

/* Скрытые карточки яхт */
.yacht-list__item.yacht-card-hidden {
  display: none;
}

/* Кнопка "Смотреть еще" - скрыта по умолчанию, показывается через JS */
.show-more-yachts-btn {
  display: none;
}

/* Плавная анимация при показе скрытых карточек */
.yacht-list__item.yacht-card-showing {
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card__image {
  width: 100%;
}

.card__image--img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}

.card__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* padding: 30px 25px; */
  padding-top: 30px;
  height: 100%;
  /* background: #fff; */

}



.card__title {
  font-size: 20px;
}

.card__title--model {
  font-weight: normal;
}

.card__price {
  font-size: 20px;
  color: white;
  font-weight: 700;
}

.meta {
  list-style: none;
  display: flex;
  gap: 30px;
}

.card__meta {
  padding-bottom: 20px;
  border-bottom: 1px solid #dedede;
  width: 100%;
}

.meta__info {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
}

.meta__icon {
  width: 22px;
  height: 22px;
  fill: #23BCB3;
}

/* Для новых SVG иконок */
.meta__icon img {
  width: 22px;
  height: 22px;
}

/* Новый дизайн карточки яхты */
.card__header {
  margin-bottom: 20px;
}

.card__title-new {
  font-size: 37px;
  margin-bottom: 15px;
  line-height: 1.2;

}

.card__price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.card__price-new {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
}

.currency-selector {
  position: relative;
}

.currency-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 2px 5px;
  border: 2px solid #23BCB3;
  border-radius: 12px;
  background: #282929;
  color: #23BCB3;
  font-weight: 800;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 89px;
  white-space: nowrap;
}

.currency-btn:hover {
  border-color: #23BCB3;
  box-shadow: 0 0 10px rgba(35, 188, 179, 0.3);
}

.currency-btn.open {

  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.currency-btn svg {
  width: 24px;
  height: 24px;
  fill: #23BCB3;
  transition: transform 0.3s ease;
}

.currency-btn.open svg {
  transform: rotate(180deg);
}

.currency-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: -2px;
  background: #282929;
  border: 2px solid #23BCB3;
  border-top: none;

  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  min-width: 100%;
  overflow: hidden;
}

.currency-dropdown::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 2px;
  background: #282929;
  z-index: 1;
}

.currency-option {
  width: max-content;
  margin: 2px 5px;
  text-align: left;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: none;
}

.currency-option:last-child {
  border-bottom: none;
}

.currency-option:hover {
  background: rgba(35, 188, 179, 0.1);
  border-bottom: 1px solid #23BCB3;
}

/* Новый дизайн Hero секции */
.hero-new {
  position: relative;
  justify-content: center;
  min-height: 70vh !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
  background: none;
  max-width: 90%;
  margin: 40px auto 40px auto;
  border-radius: 25px;
}

.hero-new__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;

}

.hero-new__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;

}

.hero-new__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.hero-new__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.hero-new__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2%;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  flex-direction: row;
  transition: flex-direction 0.3s ease;
}

.hero-new__left {
  flex: 1;
  max-width: 600px;
  color: white;
  order: 1;
  transition: order 0.3s ease;
}

.hero-new__title {
  font-size: 68px;
  font-weight: 400;
  line-height: 1.0;
  margin-bottom: 20px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.05em;
  color: white !important;
}

.hero-new__subtitle {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
  max-width: 500px;
  color: white !important;
}

.hero-new__duration {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.hero-new__duration-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.hero-new__duration-text {
  font-size: 30px;
  color: white !important;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  font-weight: 600;
}

.hero-new__duration-value {
  font-weight: 700;
}

/* Scale duration text and icon from 1400px downward */
@media (max-width: 1400px) {
  .hero-new__duration-icon {
    width: clamp(32px, 3.5vw, 50px);
    height: clamp(32px, 3.5vw, 50px);
  }

  .hero-new__duration-text {
    font-size: clamp(14px, 1.8vw, 30px);
  }
}

/* Responsive: center and shrink duration block from 825px to 0 */
@media (max-width: 824px) {
  .hero-new__duration {
    justify-content: center;
    gap: 10px;
    margin: 0 !important;
  }

  .hero-new__duration-icon {
    width: clamp(26px, 8vw, 42px);
    height: clamp(26px, 8vw, 42px);
  }

  .hero-new__duration-text {
    font-size: clamp(12px, 3.6vw, 18px);
  }
}

.hero-new__buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  width: 100%;
  justify-content: flex-start;
  overflow: hidden;
  min-width: 0;
}

.hero-new__buttons a:last-child {
  width: auto;
}

.hero-new__btn {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  gap: 10px;
  border: none;
  border-radius: 15px;
  font-weight: 600;
  font-size: clamp(12px, 2.5vw, 16px);
  cursor: pointer;
  transition: all 0.3s ease;
  width: clamp(180px, 18vw, 240px);
  min-width: clamp(180px, 18vw, 240px);
  text-align: center;
  font-family: inherit;
  flex: none;
  flex-grow: 0;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.hero-new__btn--secondary {
  font-size: clamp(12px, 2.5vw, 16px);
  font-weight: 700;
}

.hero-new__btn--primary {
  background: #23BCB3;
  color: black;
  box-shadow: 0 4px 20px rgba(35, 188, 179, 0.3);
  order: 0;
}

.hero-new__btn--primary:hover {
  background: #1ea59d;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(35, 188, 179, 0.4);
}

.hero-new__btn--secondary {
  background: #282929;
  color: white;
  border: 2px solid #23BCB3;
  order: 1;
  width: clamp(200px, 20vw, 270px);
  min-width: clamp(160px, 18vw, 270px);
  flex-grow: 1;
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.hero-new__btn--secondary:hover {
  background: #3a3b3b;
  border-color: #23BCB3;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(35, 188, 179, 0.4);
}

.hero-new__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 40px;
  order: 2;
  transition: order 0.3s ease;
}

@media screen and (max-width: 824px) {
  .hero-new__right {
    width: 100%;
  }
}

.hero-new__logo {
  font-size: clamp(32px, 5.5vw, 84px);
  font-weight: 800;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.08em;
  line-height: 1;
  color: white !important;
  margin-bottom: 20px;
}

.hero-new__logo-text {
  color: white !important;
}

.hero-new__logo-highlight {
  color: #23BCB3;
}

/* Mobile-only hero logo at top */
.hero-new__logo--mobile {
  display: none;
}

@media (max-width: 824px) {

  /* hide in-content logo on mobile, show the top one */
  .hero-new__right .hero-new__logo {
    display: none;
  }

  .hero-new__logo--mobile {
    display: block;
    position: relative;
    padding: 16px 20px 0 20px;
    z-index: 3;
  }
}

/* Yachts Header */
.yachts__header-container {
  margin-bottom: 30px;
}

.filters-btn-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.filters-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid #23BCB3;
  background: transparent;
  color: #23BCB3;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filters-toggle-btn:hover {
  background: #23BCB3;
  color: black;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(35, 188, 179, 0.3);
}

.filters-toggle-btn:hover .filters-toggle-icon {
  filter: brightness(0);
}

.filters-toggle-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: filter 0.3s ease;
}

/* Dropdown контейнер */
.filters-dropdown-container {
  position: relative;
}

/* Dropdown меню */
.filters-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: #282929;
  border: 1px solid #23BCB3;
  border-radius: 12px;
  width: 400px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.filters-dropdown.active {
  display: flex;
}

/* Header dropdown */
.filters-dropdown__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.filters-dropdown__title {
  color: #23BCB3;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filters-dropdown__icon {
  width: 22px;
  height: 13px;
}

/* Body dropdown */
.filters-dropdown__body {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
}

/* Группы фильтров */
.filter-group {
  margin-bottom: 20px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-label {
  display: block;
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

/* Кастомные select */
.custom-select-wrapper {
  position: relative;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select__trigger {
  width: 100%;
  padding: 12px 16px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.custom-select__trigger:hover {
  border-color: #23BCB3;
  box-shadow: 0 2px 8px rgba(35, 188, 179, 0.2);
}

.custom-select__value {
  font-size: 14px;
  color: #333;
  font-weight: bold;
}

.custom-select__arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #23BCB3;
  transition: transform 0.3s ease;
}

.custom-select.open .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select__options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-select.open .custom-select__options {
  display: block;
  position: absolute !important;
}

.custom-select__option {
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 700;
}

.custom-select__option:last-child {
  border-bottom: none;
}

.custom-select__option:hover {
  background: #23BCB3;
  color: white;
}

.custom-select__option.selected {
  background: #23BCB3;
  color: white;
  position: relative;
  font-size: bold;
}

.custom-select__option.selected::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/* Стили для активного состояния */
.custom-select.open .custom-select__trigger {
  border-color: #23BCB3;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Footer dropdown */
.filters-dropdown__footer {
  padding: 20px;
}

.filters-dropdown__apply-btn {
  width: 100%;
  padding: 15px;
  background: #23BCB3;
  color: black;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filters-dropdown__apply-btn:hover {
  background: #1ea5a0;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(35, 188, 179, 0.3);
}

/* Адаптивность */
@media (max-width: 768px) {
  .filters-dropdown {
    width: calc(100vw - 40px);
    max-width: 350px;
    right: -20px;
  }

  .filters-dropdown__header,
  .filters-dropdown__body,
  .filters-dropdown__footer {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .filters-btn-wrapper {
    justify-content: flex-start;
    margin-top: 15px;
  }

  .filters-toggle-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* Hero Navigation - отдельная секция */


.hero-navigation__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hero-navigation__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-navigation__dot--active {
  background: #23BCB3;
  box-shadow: 0 0 10px rgba(35, 188, 179, 0.5);
}

.hero-navigation__dot:hover {
  background: #23BCB3;
}


/* Секция категорий яхт */
/* Yacht categories */
.yacht-categories {
  padding: 60px 0;
}

/* grid */
.yacht-categories__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* card */
.yacht-category {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
  /* default no border */
  will-change: transform;
  display: block;
  text-decoration: none;
  color: inherit;
}

.yacht-category:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(35, 188, 179, 0.3);
}

/* ACTIVE: bigger + WHITE BORDER + stronger glow */
.yacht-category--active {
  transform: scale(1.05);
  border-color: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.35), 0 8px 24px rgba(35, 188, 179, 0.35);
}

/* image */
.yacht-category__image {
  border-radius: 10px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.yacht-category:hover .yacht-category__image {
  transform: scale(1.05);
}

.yacht-category__title {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%) translateY(30%);
  padding: 8px 14px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  background: rgba(255, 255, 255, 0.4);
  text-align: center;
  max-width: calc(100% - 24px);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

/* focus for accessibility */
.yacht-category:focus,
.yacht-category:focus-visible {
  outline: none;
  /* no transform, no border change here */
}

/* Адаптивность */
@media (max-width: 1200px) {
  .hero-new__logo {
    font-size: clamp(36px, 6vw, 84px);
  }

  .hero-new__btn {
    width: clamp(160px, 16vw, 220px);
    min-width: clamp(160px, 16vw, 220px);
    font-size: clamp(13px, 2.2vw, 15px);
  }

  .hero-new__btn--secondary {
    width: clamp(180px, 18vw, 250px);
    min-width: clamp(180px, 18vw, 250px);
  }

  .hero-new__left {
    max-width: 550px;
  }

  .hero-new__title {
    font-size: clamp(42px, 4.5vw, 48px);
  }

  .hero-new__subtitle {
    font-size: clamp(15px, 1.8vw, 16px);
  }
}

@media (max-width: 992px) {
  .hero-new__btn {
    width: clamp(150px, 15vw, 200px);
    min-width: clamp(150px, 15vw, 200px);
    font-size: clamp(12px, 2vw, 14px);
  }

  .hero-new__btn--secondary {
    width: clamp(170px, 17vw, 230px);
    min-width: clamp(170px, 17vw, 230px);
  }

  .hero-new__left {
    max-width: 500px;
  }

  .hero-new__title {
    font-size: clamp(38px, 4.2vw, 42px);
    margin-bottom: 18px;
  }

  .hero-new__subtitle {
    font-size: clamp(14px, 1.6vw, 15px);
    margin-bottom: 28px;
  }
}

@media (max-width: 850px) {
  .hero-new__left {
    max-width: 450px;
    align-items: start;
    text-align: start;
  }

  .hero-new__title {
    font-size: clamp(34px, 4vw, 38px);
    margin-bottom: 16px;
  }

  .hero-new__subtitle {
    font-size: clamp(13px, 1.5vw, 14px);
    margin-bottom: 25px;
  }
}

.hero-new__content {
  padding: 0 2%;
}

.hero-new__title {
  font-size: 84px;
}

.hero-new__subtitle {
  font-size: 28px;
  margin-bottom: 35px;
}

.hero-new__logo {
  font-size: clamp(32px, 5.5vw, 84px);
  padding-bottom: 6%;
}

.hero-new__btn {
  padding: 18px 36px;
  font-size: 16px;
  min-width: 200px;
}



@media screen and (max-width: 1300px) {
  .hero-new__title {
    font-size: 48px;
  }

  .hero-new__subtitle {
    font-size: 24px;
  }
}

@media (max-width: 824px) {
  .hero-new {
    min-height: 55vh !important;
    padding: 20px;
    max-width: 95%;
    border-radius: 20px;
    margin: 30px auto;
  }

  .hero-new__background {
    border-radius: 20px;
  }

  .hero-new__content {
    flex-direction: column !important;
    padding: 0 30px;
    text-align: center;
    justify-content: center;
  }

  .hero-new__left,
  .hero-new__right {
    order: initial !important;
  }

  .hero-new__left {
    margin-bottom: 40px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  /* Ensure brand logo goes first on mobile */
  .hero-new__logo {
    order: -1;
    align-self: flex-start;
  }

  .hero-new__title {
    font-size: clamp(38px, 14vw, 50px);
    margin-bottom: 20px;
  }

  .hero-new__subtitle {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 30px;
    max-width: 100%;

    margin: auto;
  }

  .hero-new__buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .hero-new__btn {
    padding: 12px 20px;
    width: 100% !important;
    min-width: clamp(140px, 28vw, 200px) !important;
    font-size: clamp(11px, 2vw, 14px);
  }

  .hero-new__btn--secondary {
    width: 100% !important;
    min-width: clamp(160px, 32vw, 230px) !important;
  }

  .hero-new__right {
    align-items: center;
    padding-top: 0;
  }

  .hero-new__logo {
    font-size: clamp(32px, 5.5vw, 84px);
    margin-bottom: 20px;
  }

  .yacht-categories__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .yacht-category__image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .hero-new {
    padding: 15px 5px;
  }

  .hero-new__content {
    padding: 30px 20px;
  }

  .hero-new__title {
    font-size: clamp(34px, 10vw, 44px);
    margin-bottom: 16px;
  }

  .hero-new__subtitle {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .hero-new__btn {
    padding: 14px 25px;
    font-size: 13px;
    width: clamp(130px, 35vw, 200px);
    min-width: clamp(130px, 35vw, 200px);
    border-radius: 10px;
  }

  .hero-new__btn--secondary {
    width: clamp(150px, 40vw, 230px);
    min-width: clamp(150px, 40vw, 230px);
  }

  .hero-new__logo {
    font-size: clamp(28px, 4.5vw, 84px);
  }

  .yacht-categories__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .yacht-category__image {
    height: 200px;
  }
}

.button__card {
  margin-top: auto;
  align-self: flex-start;
}


/* =============|CURRENCY DROPDOWN|============= */
.currency-selector {
  position: relative;
}

.currency-dropdown {
  position: absolute;
  z-index: 10;
  padding-bottom: 5px;
}

.hidden {
  display: none;
}

/* Скрываем переключатель валюты в hero секции (основная цена яхты) */
.currency-selector-main {
  display: none !important;
}

/* =============|FILTERS|============= */

.yachts__filters {
  /* margin-bottom: 80px; */
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.yachts__filters label {
  color: white;
}

.filters__mobile-title {
  align-items: center;
  gap: 20px;
  color: var(--light-color);
  font-size: 22px;
  font-weight: 700;
}

.filters {
  display: flex;
  gap: 50px;
}

.filters-fildset {
  display: flex;
  gap: 20px;
}

label {
  display: grid;
  gap: 15px;
}

select,
input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 20px 50px 20px 20px;
  font-weight: 700;
  background: var(--light-color);
  border: 1px solid #bbbbbb;

  border-radius: 10px;
}

.select-wrapper {
  position: relative;
  color: #2f2f2f;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  pointer-events: none;
}

.select-wrapper:focus-within::after {
  transform: translateY(-20%) rotate(-45deg) scale(1, -1);
}

.filters__mobile--btn {
  justify-content: center;
  margin-top: 30px;
}

.filters__mobile-icon--close {
  margin-left: auto;
  cursor: pointer;
}

/* =============|POST SLIDER|============= */

.page-slider {
  position: relative;
  display: flex;
  justify-content: center;
  aspect-ratio: 1.5;
}

.page-slider__controls {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 80px;
  width: 50%;
  transform: translateX(-50%);
}

.slide {
  width: 100%;
  height: 100%;
  /* aspect-ratio: 2; */
  object-fit: cover;
}

.page-slider__prev,
.page-slider__next {
  position: absolute;
  height: 85px !important;
  top: 100%;
  padding: 20px 15px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--light-color);
  transform: translateY(-100%);
  margin: 0;

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-slider__prev {
  transform: translate(-120%, -100%);
}

.page-slider__next {
  transform: translate(120%, -100%);
}

.page-slider__prev {
  left: 0;
}

.page-slider__next {
  right: 0;
}

@media (max-width: 768px) {
  .page-slider__next {
    height: 20px !important;
  }

  .page-slider__prev {
    height: 20px !important;
  }
}

.page-slider__prev:hover,
.page-slider__next:hover {
  background: #000;
}

.page-slider__prev::after,
.page-slider__next::after {
  position: absolute;
  content: '';
  font-size: 0;
  width: 14px;
  height: 14px;
  border-bottom: 5px solid var(--main-color);
  border-right: 5px solid var(--main-color);
}

.page-slider__prev::after {
  transform: translateX(20%) rotate(135deg);
}

.page-slider__next::after {
  transform: translateX(-20%) rotate(-45deg);
}

.page-slider__prev:hover::after,
.page-slider__next:hover::after {
  border-bottom: 5px solid var(--light-color);
  border-right: 5px solid var(--light-color);
}

.swiper-wrapper {
  list-style: none;
  align-items: center;
  box-sizing: border-box;
}

.swiper-slide-visible {
  opacity: 0.8;
}

/* Фиксируем высоту слайдов миниатюр */
.slider-main__thumb .swiper-slide {
  height: 80px !important;
  overflow: hidden;
}

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

.slider-main__thumb .swiper-slide-thumb-active {
  border: 4px solid rgba(255, 255, 255, 0.8);
  opacity: 1;
  filter: grayscale(0);
}

/* =============|POST HEAD|============= */

.post__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 80px;
  margin-bottom: 50px;
}

.main-price {
  font-size: 25px;
  font-weight: 700;
  color: #393c44;
}

/* =============|ATRIBUTES|============= */

.attributes__capture {
  font-size: 22px;
  margin-bottom: 30px;
}

.attributes__box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
  margin-bottom: 80px;
}

/* feautures table */

.feautures {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  justify-content: space-between;
}

.feautures__table {
  border-spacing: 0;
}

.feautures__table tbody {
  display: grid;
  gap: 15px;
}

.feautures__label {
  font-weight: 700;
  padding-right: 30px;
  min-width: 200px;
}

/* brand */

.brand {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
}

.brand__img {
  max-width: 170px;
}

/* description */

.description__box {
  margin-bottom: 80px;
}

.description__box p:not(:last-child) {
  margin-bottom: 30px;
}

/* include */

.include__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 50px;
}

@media screen and (max-width: 767px) {
  .include__list {
    row-gap: 30px;
  }
}

.include__list-item {
  flex: 1 1 300px;
}

.include-card {
  display: grid;
  gap: 20px;
}

.include-card__img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .include-card__img {
    border-radius: 10px;
  }
}

/* =============|POST FORM|============= */

.post-form,
.home-form {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: var(--light-color);
  margin-bottom: 100px;

}

.post-form__overlay {
  background: rgba(255, 255, 255, 0.1);
  padding: 50px;
}

@media screen and (max-width: 480px) {
  .post-form__overlay {
    background: rgba(0, 0, 0, 1);
    padding: 5%;
  }

  .post-form {
    background: rgba(0, 0, 0, 1);
  }

}

@media screen and (max-width: 767px) {
  .home-form {
    padding-top: 50px;
    margin-bottom: 0 !important;
  }
}

.post-form__title {
  font-size: 40px;
  color: inherit;
}

.form-rent {
  display: flex;
  gap: 50px;
}

.form-rent__data {
  display: grid;
  gap: 30px;
  min-width: clamp(280px, 38vw, 488px);
}

@media screen and (max-width: 1024px) {


  .form-rent__data {
    min-width: clamp(280px, 37vw, 380px);
  }
}

@media screen and (max-width: 767px) {
  .form-rent__data {
    min-width: auto;
    width: 100%;
  }
}

.form-rent__data .select-wrapper {
  width: 100%;
}

.form-rent input,
.form-rent textarea {
  color: black;
  font-weight: 400;
  padding: 15px 17px !important;
}

.form-rent select,
.form-rent input,
.form-rent textarea {
  border-radius: 5px !important;
}

.form-rent__message {
  display: grid;
  gap: 30px;
  flex: auto;
}

.form-rent__time {
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 15px;
  border: 0;
}

.form-rent--btn {
  padding-left: 70px;
  padding-right: 70px;
  justify-self: start;
  margin-top: auto;
}

.form-rent__time-legend {
  margin-bottom: 15px;
}

select::-webkit-scrollbar {
  width: 5px;
}

select::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

textarea {
  resize: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 20px 50px 20px 20px;
  font-weight: 700;
  background: var(--light-color);
  border: 1px solid #bbbbbb;
}

/* =============|RELATED SLIDER|============= */

.related {
  margin-bottom: 100px;
  overflow: visible;
}

.related-slider {
  overflow: hidden;
  padding-bottom: 40px;
}

.related-slider__main {
  margin-bottom: 70px;
  padding-bottom: 30px;
  overflow: visible !important;
}

.related-slider__main .swiper-wrapper {
  padding-bottom: 20px;
}

.related__title {
  font-size: 40px;
  margin: 60px 0px;

  color: white;
}

.related-slider__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: -60px;
}

.related-slider__prev,
.related-slider__next {
  height: 15px;
  width: 15px;
  border-bottom: 5px solid var(--main-color);
  border-right: 5px solid var(--main-color);
  cursor: pointer;
}

.related-slider__prev {
  transform: rotate(-45deg);
}

.related-slider__next {
  transform: rotate(135deg);
}

.related-slider__prev:hover,
.related-slider__next:hover {
  border-bottom: 5px solid var(--accent-color);
  border-right: 5px solid var(--accent-color);
}

.related-slider__prev.swiper-button-disabled,
.related-slider__next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.related-slider__prev.swiper-button-disabled:hover,
.related-slider__next.swiper-button-disabled:hover {
  border-bottom: 5px solid var(--main-color);
  border-right: 5px solid var(--main-color);
}

/* =============|RELATED SLIDER CARDS|============= */

/* Стили для карточек яхт в слайдере на страницах услуг */
.related-slider .swiper-slide {
  height: auto;
  overflow: visible !important;
  opacity: 1 !important;
}

/* Убираем прозрачность для всех типов слайдов в related-slider */
.related-slider .swiper-slide-duplicate,
.related-slider .swiper-slide-prev,
.related-slider .swiper-slide-next,
.related-slider .swiper-slide-active {
  opacity: 1 !important;
}

.related-slider .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #282929;
  border-radius: 10px;
  padding: 20px;
  padding-bottom: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.related-slider .card__header {
  margin-bottom: 15px;
}

.related-slider .card__title-new {
  font-weight: bold;
  color: #23BCB3;
  margin-bottom: 10px;
  line-height: 1.2;
}

.related-slider .card__price-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.related-slider .card__price-new {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.related-slider .card__image {
  width: 100%;
  margin-bottom: 15px;
}

.related-slider .card__image--img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.related-slider .card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.related-slider .meta__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.related-slider .meta__icon {
  width: 20px;
  height: 20px;
}

.related-slider .meta__info-text {
  color: #23BCB3;
  font-weight: 600;
  font-size: 18px;
}

/* Контейнер кнопок в карточках */
.related-slider .card__buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
}

/* Кнопки в карточках слайдера */
.related-slider .button {
  white-space: nowrap;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid #23BCB3;
  background-color: #23BCB3;
  color: white;
  cursor: pointer;
  flex: 1;
  box-sizing: border-box;
}

.related-slider .button:hover {
  background-color: #1a9d95;
  border-color: #1a9d95;
  color: white;
  transform: translateY(-2px);
}

/* Кнопка "Подробнее" - прозрачная */
.related-slider .button--details {
  background-color: transparent;
  color: #23BCB3;
  flex: 0 0 40%;
}

.related-slider .button--details:hover {
  background-color: #23BCB3;
  color: white;
}

/* Кнопка "Связаться" с иконкой */
.related-slider .button--contact {
  flex: 0 0 58%;
}

.related-slider .button--contact img {
  width: 25px;
  height: 26px;
}

/* Адаптивность для кнопок на мобильных */
@media screen and (max-width: 768px) {
  .related-slider .card__buttons {
    flex-direction: column;
    gap: 16px;
  }

  .related-slider .button {
    width: 100%;
    flex: 1 1 auto;
  }

  .related-slider .button--details,
  .related-slider .button--contact {
    flex: 1 1 auto;
  }
}

/* Конвертер валют в слайдере - ТОЧНАЯ КОПИЯ СТИЛЕЙ С /yachts/ */
.related-slider .currency-selector {
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.related-slider .card__price-section {
  position: relative;
  z-index: 10;
}

/* Кнопка переключателя валюты - КОПИЯ .currency-btn */
.related-slider .currency-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px;
  border: 2px solid #23BCB3;
  border-radius: 12px;
  background: #282929;
  color: #23BCB3;
  font-weight: 800;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  min-width: 89px;
}

.related-slider .currency-btn:hover {
  border-color: #23BCB3;
  box-shadow: 0 0 10px rgba(35, 188, 179, 0.3);
}

.related-slider .currency-btn.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.related-slider .currency-btn svg {
  width: 14px;
  height: 8px;
  fill: #23BCB3;
  transition: transform 0.3s ease;
}

.related-slider .currency-btn.open svg {
  transform: rotate(180deg);
}

/* Dropdown меню - КОПИЯ .currency-dropdown */
.related-slider .currency-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: -2px;
  background: #282929;
  outline: 2px solid #23BCB3;
  outline-offset: -2px;
  border: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow: hidden;
  box-sizing: border-box;
}

.related-slider .currency-dropdown::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 2px;
  background: #282929;
  z-index: 1;
}

/* Для открытого dropdown увеличиваем z-index родителя */
.related-slider .currency-selector:has(.currency-dropdown:not(.hidden)) {
  z-index: 1001;
}

/* Опции валют - КОПИЯ .currency-option */
.related-slider .currency-option {
  width: 100%;
  padding: 2px 8px;
  text-align: left;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: none;
  box-sizing: border-box;
}

.related-slider .currency-option:last-child {
  border-bottom: none;
}

.related-slider .currency-option:hover {
  background: rgba(35, 188, 179, 0.1);
  border-bottom: 1px solid #23BCB3;
}

/* Адаптивность для слайдера */
@media screen and (max-width: 768px) {
  .related-slider .card {
    padding: 15px;
  }

  .related-slider .card__title-new {
    font-size: 20px;
  }

  .related-slider .card__price-new {
    font-size: 20px;
  }

  .related-slider .card__image--img {
    height: 150px;
  }

  .related-slider .meta__info-text {
    font-size: 16px;
  }
}

/* =============|READ MORE FUNCTIONALITY|============= */

/* Скрытие текста на мобильных устройствах */
@media screen and (max-width: 1028px) {
  .catering-content__paragraph.hidden-mobile {
    display: none;
  }

  .read-more-link {
    color: #23BCB3;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
  }

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

/* На десктопе ссылка скрыта */
@media screen and (min-width: 1029px) {
  .read-more-link {
    display: none;
  }
}

/* =============|ADD SERVICE|============= */

.add-service {
  display: grid;
  gap: 100px;
  padding-bottom: 150px;
}

/* =============|SERVICES SLIDER|============= */

.services-slider-section {
  padding: 80px 0;
}

.services-slider__main-title {
  font-size: 42px !important;
  font-weight: 700 !important;
  text-align: center;
  color: white;
  margin-bottom: 50px !important;
}

.services-slider-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.services-slider {
  overflow: hidden;
  padding: 20px 0 60px;
}

.service-card {
  width: 354px;
  height: 746px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  flex: none;
  order: 0;
  flex-grow: 0;
  flex-shrink: 0;
}

.swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.service-card.swiper-slide-active {
  border-color: #23BCB3;
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(35, 188, 179, 0.3);
}

.service-card__wrapper {
  position: absolute;
  width: 320px;
  height: 746.28px;
  left: calc(50% - 320px/2);
  top: -27.36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 26px;
}

.service-card__image {
  width: 320px;
  height: 320px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 1.88679px 1.88679px 18.8679px rgba(0, 0, 0, 0.16);
  flex: none;
  order: 0;
  flex-grow: 0;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__divider {
  width: 306.61px;
  height: 0px;
  border: 2.83019px solid #23BCB3;
  transform: rotate(0.26deg);
  position: absolute;
  left: 0px;
  top: 346px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.service-card__content {
  width: 317px;
  height: 372.87px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 25px;
  flex: none;
  order: 2;
  flex-grow: 0;
}

.service-card__title {
  padding-top: 15%;
  width: 317px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;

  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

.service-card__description {
  width: 317px;
  height: 236px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.service-card__description p {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  margin: 0;
  flex: none;
}

.service-card__description .highlight {
  color: #23BCB3;
  font-weight: 700;
}

.service-card__description p:first-child {
  width: 317px;

}

.service-card__description p:last-child {
  width: 317px;
  height: 120px;
  flex-grow: 0;
}

.service-card__button {
  width: 232.87px;
  height: 38.87px;
  background: #23BCB3;
  border-radius: 7.07547px;
  border: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 9.43396px;
  gap: 4.72px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: none;
  order: 2;
  flex-grow: 0;
}

.service-card__button span {
  width: 214px;
  height: 20px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  text-align: center;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.service-card__button:hover {
  background: #1ea59c;
  transform: translateY(-2px);
}

/* Swiper пагинация */
.services-pagination {
  position: relative !important;
  margin-top: 30px;
}

.services-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px;
}

.services-pagination .swiper-pagination-bullet-active {
  background: #23BCB3;
}

/* Адаптивность */
@media screen and (max-width: 768px) {
  .services-slider-section {
    padding: 50px 0;
  }

  .services-slider__main-title {
    font-size: 32px !important;
    margin-bottom: 30px !important;
  }

  .services-slider-container {
    padding: 0 50px 0 10px;
  }

  .services-slider {
    padding: 10px 0 50px;
  }

  .service-card {
    width: 300px;
    height: 600px;
    border-radius: 8px;
  }

  .service-card__wrapper {
    width: 270px;
    height: 600px;
    gap: 20px;
  }

  .service-card__image {
    width: 270px;
    height: 270px;
    border-radius: 8px;
  }

  .service-card__divider {
    width: 250px;
    top: 290px;
  }

  .service-card__content {
    width: 270px;
    height: 300px;
    gap: 20px;
  }

  .service-card__title {
    width: 270px;
    height: 40px;
    font-size: 18px;
    line-height: 22px;
  }

  .service-card__description {
    width: 270px;
    height: 200px;
    gap: 12px;
  }

  .service-card__description p {
    font-size: 14px;
    line-height: 18px;
  }

  .service-card__description p:first-child {
    width: 270px;
    height: 90px;
  }

  .service-card__description p:last-child {
    width: 270px;
    height: 110px;
  }

  .service-card__button {
    width: 200px;
    height: 35px;
    border-radius: 6px;
  }

  .service-card__button span {
    width: 180px;
    height: 18px;
    font-size: 14px;
    line-height: 18px;
  }

  .services-pagination {
    margin-top: 20px;
  }

  .services-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}

@media screen and (max-width: 480px) {
  .services-slider__main-title {
    font-size: 28px !important;
  }

  .services-slider-container {
    padding: 0 30px 0 5px;
  }

  .service-card {
    width: 280px;
    height: 550px;
  }

  .service-card__wrapper {
    width: 250px;
    height: 550px;
    gap: 15px;
  }

  .service-card__image {
    width: 250px;
    height: 250px;
  }

  .service-card__divider {
    width: 230px;
    top: 265px;
  }

  .service-card__content {
    width: 250px;
    height: 270px;
    gap: 15px;
  }

  .service-card__title {
    width: 250px;
    height: 35px;
    font-size: 16px;
    line-height: 20px;
  }

  .service-card__description {
    width: 250px;
    height: 180px;
    gap: 10px;
  }

  .service-card__description p {
    font-size: 13px;
    line-height: 16px;
  }

  .service-card__description p:first-child {
    width: 250px;
    height: 80px;
  }

  .service-card__description p:last-child {
    width: 250px;
    height: 100px;
  }

  .service-card__button {
    width: 180px;
    height: 32px;
  }

  .service-card__button span {
    width: 160px;
    height: 16px;
    font-size: 13px;
    line-height: 16px;
  }
}

/* Адаптивность */
@media screen and (max-width: 768px) {
  .services-slider-section {
    padding: 50px 0;
  }

  .services-slider__main-title {
    font-size: clamp(32px, calc(3.68px + 4.47vw), 38px) !important;
    margin-bottom: 30px !important;
  }

  .services-slider {
    padding: 0 15px;
  }

  .services-slider__container {
    padding: 20px;
  }

  .services-slider__content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .services-slider__image {
    width: 100%;
    max-width: 300px;
    height: 200px;
  }

  .services-slider__title {
    font-size: 20px;
  }

  .services-slider__description {
    font-size: 14px;
  }

  .services-slider__button {
    width: 100%;
    max-width: 250px;
  }

  .services-navigation {
    gap: 15px;
  }

  .services-slider__prev,
  .services-slider__next {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

.add-service .service:nth-child(odd) {
  flex-direction: row-reverse;
}

/* .service--reverse {
  flex-direction: row-reverse;
} */

.add-service__content {
  align-items: start;
}

@media screen and (max-width: 767px) {
  .add-service__title {
    font-size: clamp(32px, calc(3.68px + 4.47vw), 38px) !important;
    text-align: left;
  }

  .add-service {
    gap: 50px;
    padding: 0px 20px;
  }

  .add-service__content {
    margin-bottom: 20px;
  }

}

.add-service__content--jet {
  position: relative;
}

.add-service__content--jet::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 200px;
  background-image: url(../images/add-jet.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(50%, -20%);
}

/* =============|HERO|============= */

.hero {
  /* background-image: url(assets/img/dark/hero-one.png); */
  /* background-image: url(assets/img/hero.jpg); */
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
  /* background-position: center; */
  background-color: var(--dark-color-3);
  width: 100%;
  aspect-ratio: 1.2;
  max-height: 90vh;

  /* added */
  display: flex;
  justify-content: center;

}

.hero__title .main__heading {
  font-size: 3.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

.hero__title .highlighted {
  color: var(--main-color);
}

.hero__subtitle {
  font-size: 2.5rem;
  margin-top: 20px;
}

.hero__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
}

.home-inner,
.catalog-inner {
  position: static;
  /* margin-top: -150px; */
}

.hero__content {
  background-image: url(../images/hero.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  /* display: grid; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  z-index: 1;
  padding-top: 100px;
  /* padding-bottom: 500px; */
  padding-bottom: 40px;
  width: 100%;
  max-width: 1400px;
}

@media screen and (max-width: 1024px) {
  .hero__content {
    background-size: cover;
  }
}

.hero__content p {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--light-color-2);
  font-weight: 700;
  text-align: center;
}

.hero__title-location {
  /* display: inline-flex; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
  vertical-align: middle;
}

/* filters */

.home__filters {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

/* =============|CATALOG|============= */

.catalog {
  list-style: none;
  /* display: grid;
  gap: 120px; */
  margin-bottom: 100px;
}

.catalog__item {
  margin-bottom: 120px;
}

/* product */

.product {
  position: relative;
  display: grid;
  gap: 30px 120px;
  min-width: 0;
  grid-template-areas:
    '. slider slider slider'
    'title slider slider slider'
    'info slider slider slider'
    'price slider slider slider'
    'buttons slider slider slider'
    'text slider slider slider'
    '. slider slider slider';
}

.product__title,
.book-yacht__title {
  font-size: 35px;
  grid-area: title;
  position: relative;
}

.product__title::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 200px;
  height: 1px;
  background-color: var(--light-accent-color);
  transform: translateX(100%);
  z-index: 2;
}

.product__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  grid-area: info;
}

.product__brand-img {
  max-width: 110px;
  position: absolute;
  top: 0;
  left: 28%;
  transform: translateY(-50%);
  object-fit: contain;
}

.product__price {
  font-size: 23px;
  font-weight: 700;
  color: #393c44;
  grid-area: price;
}

.product__buttons {
  display: grid;
  gap: 15px;
  grid-area: buttons;
}

.product__text {
  grid-area: text;
}

/* product slider */

.product__slider {
  min-width: 0;
  flex: 2;
  grid-area: slider;
}

.product__slide {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
}

.product__slide img,
.product__slide--thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__slide--thumb {
  aspect-ratio: 1.6;
  margin-top: 5px;
}

.product__slide--thumb.swiper-slide-thumb-active {
  opacity: 1;
}

/* =============|form|============= */

.form-home {
  margin-bottom: 200px;
}

/* =============|REVIEWS|============= */

.reviews__head {
  position: relative;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;

  margin-bottom: 80px;
}

.reviews__title {
  width: auto !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  text-align: left;
}

.reviews__head--btn {
  padding-right: 50px;
  padding-left: 50px;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .reviews {
    padding: 0px 20px;
  }

  .reviews__head {
    margin-bottom: 43px;
  }

  .reviews__title {
    font-size: clamp(32px, calc(3.68px + 4.47vw), 38px) !important;
  }
}

/* =============|REVIEWS SLIDER|============= */

.reviews__content {
  margin-bottom: 5%;
}

.reviews__content-inner {
  padding: 60px 87px;
  margin-bottom: 50px;

  border: 1px solid transparent;
  border-radius: 20px;

  background:
    /* strat interior (culoarea containerului) */
    linear-gradient(var(--dark-color), var(--dark-color)) padding-box,
    /* strat exterior (gradient pe border) */
    linear-gradient(90deg, #23BCB3, #181E1D) border-box;
}

.review-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}



.review-card__image-img {
  /* aspect-ratio: 459 / 256; */
  width: 460px;
  height: 270px;
  object-fit: cover;
  object-position: center -50px;
  border-radius: 10px;
}

@media screen and (max-width: 1024px) {
  .reviews__content-inner {
    padding: 20px 36px;
  }

  .review-card__image-img {
    width: 360px;
  }
}

.review-card__content {
  flex: 3;
  display: grid;
  gap: 20px;
}

.review-card__text p:not(:last-child),
.book-yacht__text p:not(:last-child) {
  margin-bottom: 10px;
}

.review-card__text p {
  color: white;
}


.review-card__author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.stars-list {
  list-style: none;
}

.stars-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.star-icon {
  width: 16px;
  height: 16px;
  fill: #ffba00;
}

.author-name {
  font-size: 25px;
  font-weight: 500;
  color: #23BCB3;
}

@media screen and (max-width: 767px) {
  .reviews__content-inner {
    background: transparent;
    border: none;
  }

  .review-card__image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .review-card__image-img {
    width: 100%;
    max-width: 400px;
  }

  .author-name {
    font-size: 18px;
    font-weight: 600;
  }

  .review-card__author {
    gap: 10px;
  }

  .reviews__content {
    margin-bottom: 100px;
  }
}

.reviews-slider__pagination {
  display: flex;
  justify-content: center;
}

.reviews-slider__nav {
  position: relative;
}

.reviews-slider__next,
.reviews-slider__prev {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-bottom: 3px solid #23BCB3;
  border-right: 3px solid #23BCB3;
}

.reviews-slider__next:hover,
.reviews-slider__prev:hover {
  border-color: var(--accent-color);
  cursor: pointer;
}

.reviews-slider__next {
  transform: translateX(-50%) rotate(-45deg);
  margin-left: 30px;
}

.reviews-slider__prev {
  transform: translateX(-50%) rotate(135deg);
  margin-left: -30px;
}

.reviews-slider__pagination {
  color: #9A9A9A;
  display: flex;
  gap: 3px;
}

.swiper-pagination-current {
  color: white;
}

/* =============|COST|============= */

.cost {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.cost__content {
  display: grid;
  gap: 40px;
  flex: 1;
}

.cost__title {
  font-size: 42px;
  color: white;
}

.cost__list {
  position: relative;
  list-style: none;
  display: grid;
  gap: 20px;
  color: white;
}

.cost__list-item {
  background-image: url(../images/gg_check.svg);
  background-repeat: no-repeat;
  padding-left: 34px;
  background-position: 0 0;
  background-size: 24px;
}

.cost__content--btn {
  padding-right: 85px;
  padding-left: 85px;
  justify-self: start;
}

.cost__image {
  flex: 1;
  /* aspect-ratio: 749 / 546; */
}

.cost__image img {
  /* height: 100%; */
  max-height: 450px;
  object-fit: cover;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .cost {
    padding: 0px 20px;
    margin-bottom: 110px;
  }

  .cost__title {
    font-size: clamp(18px, calc(3.68px + 4.47vw), 38px);
  }

  .cost__image img {
    border-radius: 10px;
  }
}

/* ==============|CONTACTS|================ */

.contacts__title {
  margin-bottom: 10px;
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 59px;
  letter-spacing: 0.03em;
}

.contacts__subtitle {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 46px;
  letter-spacing: 0.03em;
  margin-bottom: 44px;
}

/* Contact Info Section */
.contacts__info {
  display: flex;
  flex-direction: row;

  align-items: flex-start;
  gap: 121px;
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 209px;
}

.contact-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.contact-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 7px;
  width: 54px;
  height: 54px;
  background: rgba(246, 246, 246, 0.1);
  border-radius: 12px;
  box-shadow:
    0px 0px 0px rgba(0, 0, 0, 0.3),
    0px 0px 1px rgba(255, 255, 255, 0.1),
    inset 1px 1px 2px rgba(255, 255, 255, 0.1),
    inset -1px -1px 2px rgba(0, 0, 0, 0.2)
}

.contact-icon-svg {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.contact-details {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.contact-messengers {
  display: flex;
  flex-direction: row;
  align-items: flex-start;

}

.messenger-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 40px;
  height: 40px;
}

.messenger-link img {
  width: 24px;
  height: 24px;
}

.contact-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.email-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
}

/* Contact Form Section */
.contacts-form {
  display: flex;
  flex-direction: column;
  padding: 50px;
  gap: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(50px);
  border-radius: 20px;
  margin-top: 0;
}

.post-form__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 49px;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  margin-bottom: 0;
}

.form-container {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 2.5;
  width: 100%;
}

.form-field-group--textarea {
  flex: 2;
}

.form-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #23BCB3;
  width: 100%;
}

.form-input-wrapper {
  width: 100%;
}

.form-input,
.form-textarea {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  gap: 20px;
  width: 100%;
  height: 59px;
  background: #FFFFFF;
  border: 1px solid #BBBBBB;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #333;
}

.form-textarea {
  height: 176px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #23BCB3;
}

.form-submit {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 10px;
  padding: 15px 0px;

}

.submit-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  gap: 10px;
  width: 250px;
  height: 51px;
  background: #23BCB3;
  border-radius: 15px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #101212;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background: #1ea59d;
}

/* Responsive design for contacts */
@media (max-width: 1200px) {
  .contacts__info {
    gap: 60px;
  }

  .contact-item {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .contacts__title {
    font-size: 32px;
    line-height: 39px;
  }

  .contacts__subtitle {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 30px;
  }

  .contacts__info {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .contact-item {
    width: 100%;
    max-width: 300px;
  }

  .contacts-form {
    padding: 30px 20px;
    gap: 30px;
    background: none;
  }

  .post-form__title {
    font-size: 28px;
    line-height: 34px;
  }

  .form-fields {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .form-field-group {
    width: 100%;
  }

  .form-container {
    gap: 30px;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .contacts__title {
    font-size: 28px;
    line-height: 34px;
  }

  .contacts__subtitle {
    font-size: 20px;
    line-height: 24px;
  }

  .contact-badge {
    width: 48px;
    height: 48px;
  }

  .contact-icon-svg {
    width: 32px;
    height: 32px;
  }

  .contact-text {
    font-size: 18px;
  }
}

.contacts-form__data {
  flex: 1;
  grid-auto-rows: min-content;
}

.contacts-form--btn {
  padding-left: 100px;
  padding-right: 100px;
  justify-self: end;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contacts__phone-img {
  width: 30px;
  object-fit: contain;
}

.contact-address {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* =============|404|============= */

.error-404 {
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  justify-items: center;
  gap: 25px;
}

.button--404 {
  display: grid;
  align-items: center;
}

/* ==============|ADDON FORMS STYLE|================ */

.hf-message-success {
  text-align: center;
  padding: 20px 10px;
  background-color: #5aff98;
  margin: 20px 0;
}

/* ==============|MODAL|================ */

#modal-pre {
  display: grid;
  place-items: center;
  height: 100%;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.modal__overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  padding: 20px;
  overflow-y: scroll;
}

.modal__inner {
  position: relative;
  width: inherit;
  max-width: 1000px;
  margin: auto;
  transform: translateY(-200%);
}

.modal__close {
  all: unset;
  position: absolute;
  top: 20px;
  right: 20px;

  cursor: pointer;
  z-index: 1;
}

.icon-close {
  width: 25px;
  height: 25px;
}

.modal-book {
  display: flex;
  justify-content: center;
  position: relative;
}

.modal-book::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 100%;
  background-color: #c9aa88;
  left: 50%;
  transform: translateX(-50%);
}

.modal-book::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  background-image: url(../images/anchor-img.png);
  width: 90px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transform: translate(-50%, -30%);
}

.modal-book__form {
  padding: 50px 80px 50px 60px;
  background: #f5f3ee;
  flex: 1;
}

.modal-book__yacht {
  padding: 50px 60px 50px 80px;
  background: #fff;
  flex: 1;
  min-width: 0;
}

.book-yacht {
  height: 100%;
}

.book-yacht__capture {
  font-size: 20px;
  font-weight: 700;
}

.book-yacht__title {
  font-size: 35px;
  margin-bottom: 30px;
}

.book-yacht__price {
  font-size: 23px;
  font-weight: 700;
  color: var(--main-color);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--main-color);
  margin-bottom: 35px;
}

.book-yacht__meta {
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

/* MODAL SLIDER */

.book-yacht__slider {
  margin-bottom: 45px;
}

.book-yacht__slide img {
  aspect-ratio: 2;
  object-fit: cover;
}

.modal._active {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
  transition: all 0.2s;
}

.modal._active .modal__inner {
  transform: translateY(0);
  transition: all 0.2s;
}

/* MODAL CONSULT */

.modal-consult {
  background-color: var(--light-color);
  padding: 75px 100px;
  position: relative;
}

.modal-consult::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 130px;
  height: 130px;
  background-image: url(../images/shell-img.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(30%, 30%);
}

.modal-consult::before {
  content: '';
  position: absolute;
  right: 20%;
  top: 0;
  width: 150px;
  height: 190px;
  background-image: url(../images/anchor-img.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-30%);
}

.modal-consult__title {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 35px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.modal-consult__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 60%;
  background: var(--main-color);
}

.icon-consult {
  display: inline-block;
  width: 40px;
  height: 40px;
  fill: var(--dark-color);
}

.form-consult__data {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
}

.form-consult__input {
  flex: auto;
}

.form-consult__data--modal {
  margin-bottom: 45px;
}

.form-consult--btn {
  padding-right: 50px;
  padding-left: 50px;
  position: relative;
  z-index: 2;
}

/* =============|MEDIA|============= */

@media (max-width: 1100px) {
  .right-menu {
    width: 100% !important;
  }

  .footer__inner {
    grid-template-areas:
      'logo contacts'
      'menu menu'
      'btn btn';
  }

  .footer__menu-mobile {
    grid-area: menu;
  }

  .footer .button:not(.footer__btn) {
    grid-area: btn;
  }

  /* .yachts__head
    {
        padding: 0 20px;
    } */

  footer .sub-menu a {
    font-weight: 400;
  }

  /* Mobile footer menu dropdowns */
  .footer__menu-mobile .sub-menu {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
  }

  .footer__menu-mobile .menu-item-has-children.menu-item-open .sub-menu {
    display: block;
  }

  .footer__menu-mobile .menu-item-has-children .menu__link {
    cursor: pointer;
  }

  .mobile-only {
    display: flex;
    flex-shrink: 0;
  }

  .button.mobile-only,
  .button.menu__btn.mobile-only,
  .menu__btn.mobile-only {
    display: flex !important;
    font-size: 16px;
    color: var(--dark-color-2);
  }

  .menu__burger {
    display: block;
  }

  .menu--mobile,
  .filters {
    position: fixed;
    left: 0;
    top: 0;
    padding: 35px;
    flex-direction: column;
    justify-content: flex-start;
    /* gap: 40px; */
    width: 80%;
    height: 100%;
    transform: translateX(-100%);
    transition: 0.2s ease-in-out;
    z-index: 15;
    overflow: auto;
  }

  .filters {
    z-index: 30;
  }

  .filters label {
    color: var(--light-color);
  }

  .menu--visible,
  .filters--visible {
    transform: none;
  }

  .menu__list--mobile {
    z-index: 10;
    flex-direction: column;
    align-items: flex-start;
  }

  /* .menu-desk-left li:last-child {
    display: list-item;
  } */

  .menu li ul {
    display: block;
    position: relative;
    padding: 20px 0 0 0;
    margin-left: 20px;
  }



  .post-inner {
    margin-top: 0;
  }

  /* .page-slider__controls {
    bottom: 30px;
  } */


  .product {
    gap: 30px 60px;
  }

  .modal-consult::after {
    transform: translate(0, 30%);
  }

  .show-desk {
    display: none;
  }

  .menu__list--mobile {
    gap: 20px;
  }
}

/* =============| 960 |============= */

@media (max-width: 960px) {


  .footer__menu-list {
    flex-direction: column;
  }

  .footer__btn {
    align-self: center;
  }

  .main__title--services {
    margin-bottom: 30px;
  }

  .service__content,
  .main__inner--service .service__content {
    flex: auto;
  }

  .service__image {
    flex: auto;
  }

  .service__image-img {
    aspect-ratio: 2;
  }

  .main-price {
    color: var(--main-color);
  }

  .add-service__content--jet::after {
    transform: translate(50%, -50%);
  }

  .product {
    grid-template-areas:
      'title'
      'info '
      'price'
      'slider'
      'buttons'
      'text ';
  }

  .product__title::after {
    display: none;
  }

  .product__brand-img {
    position: static;
    transform: translateY(0);
  }

  .product__price {
    text-align: right;
  }

  .cost {
    flex-direction: column-reverse;
  }

  .cost__content--btn {
    justify-self: auto;
  }

  .cost__content a {
    color: black !important;
  }

  .modal-book {
    flex-direction: column;
  }

  .modal-book::before {
    display: none;
  }

  .modal-book::after {
    transform: translate(-50%, -60%);
  }

  .modal-book__form {
    padding: 50px;
  }

  .modal-book__yacht {
    padding: 50px;
    width: 100%;
    border-bottom: 6px solid #c9aa88;
  }

  .modal-book__form--mobile {
    justify-content: center;
  }

  .modal-consult__title {
    font-size: 28px;
  }

  .modal-consult::before {
    right: 10%;
  }

  .cat--btn {
    width: 100%;

  }
}

/* =============| 767 |============= */
@media (max-width: 1100px) {
  .menu--mobile {
    padding-top: 20px;
    background-color: var(--dark-color);
  }
}

@media (max-width: 767px) {
  .header__logo {
    max-width: 110px;
    position: static !important;
    left: 0 !important;
    transform: none !important;
  }

  .hero__content {
    padding-top: 42px;
  }

  .desktop-only {
    display: none;
  }





  .main__title--post {
    font-size: 45px;
  }

  .slider-main__thumb {
    display: none;
  }

  .form-rent {
    /* display: grid; */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .form-rent--btn {
    justify-self: center;
    width: 100%;
  }

  .review-card {
    align-items: center;
    flex-direction: column;
  }

  .review-card__content {
    display: flex;
    flex-direction: column-reverse;
  }

  .review-card__author {
    justify-content: center;
  }

  .modal-consult {
    padding: 50px;
  }

  .page-slider__controls {
    bottom: 30px;
    width: 15%;
  }

  .feautures__table {
    width: 100%;
  }

  .feautures__table tr {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .single-top {
    border: none !important;
  }

  .attributes__box {
    gap: 40px;
  }

  .attributes-btns {
    gap: 20px;
  }
}

/* =============| 680 |============= */

@media (max-width: 680px) {


  .hero {
    background-position: bottom;

  }

  .main__title--post {
    font-size: 35px;
  }

  .post-form__title {
    font-size: 32px;
  }

  .desktop-only--add {
    display: none;
  }

  .mobile-only--add {
    display: flex;
  }

  .modal-consult__title {
    font-size: 22px;
  }

  .modal-consult::before {
    display: none;
  }
}

/* =============| 480 |============= */

@media (max-width: 480px) {
  .hero__content {
    background-image: url(../images/hero-mob.webp);
    background-size: cover;
  }

  .location__text,
  .phone__text {
    font-size: 12px;
    text-wrap: wrap;
  }

  .contacts {
    gap: 10px;
  }

  .footer {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .header__inner {
    gap: 10px;
  }

  .header__phone--mobile {
    /* align-self: flex-end; */
    font-size: 14px;
  }

  .footer__inner {
    gap: 20px;
    margin-bottom: 20px;
  }

  .footer__logo {
    align-self: center;
  }

  .footer__menu-list {
    gap: 10px;
  }

  .service__image-img {
    aspect-ratio: 1;
  }

  .main__title {
    font-size: 32px;
  }

  .main__title--services {
    margin-bottom: 0;
  }

  .main__title--yachts {
    font-size: 25px;
  }

  .main__title--post {
    font-size: 28px;
  }

  .form-rent__select {
    /* padding: 20px 30px 20px 10px; */
    padding: 0px !important;
  }

  .reviews__content-inner {
    /* padding: 35px 25px; */
    padding: 0;
  }

  .review-card__author {
    flex-direction: column-reverse;
  }

  .modal-book__form {
    padding: 20px;
  }

  .modal-book__yacht {
    padding: 50px 20px;
  }

  .modal-consult {
    padding: 50px 20px;
  }
}

/* ==============|PRELOADER|================ */

:root {
  --hue: 223;
  --bg: hsl(var(--hue), 10%, 90%);
  --fg: hsl(var(--hue), 10%, 10%);
  --primary: hsl(var(--hue), 90%, 55%);
  --trans-dur: 0.3s;
  --pl-dur: 2.6s;
  font-size: calc(16px + (20 - 16) * (100vw - 320px) / (1280 - 320));
}

.pl {
  position: relative;
  width: 9em;
  height: 12em;
}

.pl:before,
.pl:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: inherit;
  height: 12em;
}

.pl:before {
  animation: top calc(var(--pl-dur) / 2) linear infinite, flipZ var(--pl-dur) steps(1) infinite;
  border-radius: 4.5em 0 0 0 / 4em 0 0 0;
  box-shadow: 0 4em 0 0 inset;
  top: 0;
}

.pl:after {
  animation: bottom calc(var(--pl-dur) / 2) linear infinite;
  animation-delay: calc(var(--pl-dur) * -0.25);
  border-radius: 0 0 0 4.5em / 0 0 0 4em;
  box-shadow: 0 -4em 0 0 var(--primary) inset;
  bottom: 0;
}

.pl__sr {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: hsl(var(--hue), 10%, 10%);
    --fg: hsl(var(--hue), 10%, 90%);
  }
}

/* Animations */
@keyframes top {
  from {
    animation-timing-function: ease-in;
    clip-path: polygon(0 0, 123% 0, 123% 70%, 123% 70%, 123% 0, 123% 0, 123% 100%, 0 100%);
  }

  50% {
    animation-timing-function: ease-out;
    clip-path: polygon(0 0, 0 0, 0 70%, 77% 70%, 77% 0, 100% 0, 100% 100%, 0 100%);
  }

  to {
    clip-path: polygon(0 0, 0 0, 0 70%, 0 70%, 0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes bottom {
  from {
    animation-timing-function: ease-in;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 30%, 0 30%, 0 100%, 0 100%);
  }

  50% {
    animation-timing-function: ease-out;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 77% 100%, 77% 30%, 0 30%, 0 100%, 0 100%);
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 123% 100%, 123% 30%, 100% 30%, 100% 100%, 0 100%);
  }
}

@keyframes flipZ {
  from {
    z-index: 0;
  }

  50%,
  to {
    z-index: 1;
  }
}

.but_fixed {
  z-index: 999;
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  z-index: 299;
  /* background: linear-gradient(90deg, #202123, #292e33); */
  height: 130px;
  width: 65px;
  /* box-shadow: 0px 2px 10px rgb(0 0 0 / 15%); */
}

.but_fixed a {
  width: 100%;
  height: 50%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  /* border: 1px solid #212226; */
  text-decoration: none;
  color: inherit;
}

.but_fixed a .icon {
  width: 28px;
  height: 28px;
  display: block;
}

.but_fixed a .icon svg {
  width: 100%;
  height: 100%;
  fill: #4CAF50;
}

.but_fixed_border {
  /* border-bottom: 1px solid #212226 !important; */
}


/* Stiluri adaugate */
.hero-big_logo {
  max-width: 648px;
  margin-bottom: 80px;
}

.button.desktop-only._modal-open {
  padding: 16px 36px;
  color: var(--dark-color-2)
}

.yachts__top {
  width: 100%;
  max-width: 1268px;
  padding: 50px;
  margin: 0px auto 100px;

  border: 3px solid transparent;
  border-radius: 20px;

  background:
    /* strat interior (culoarea containerului) */
    linear-gradient(var(--dark-color), var(--dark-color)) padding-box,
    /* strat exterior (gradient pe border) */
    linear-gradient(180deg, #23BCB3, #181E1D) border-box;
}

.yachts__top--catalog {
  width: auto;
  max-width: 1268px;
  padding: 50px;
  margin-right: auto;

  border: 2px solid transparent;
  border-radius: 20px;

  background:
    /* strat interior (culoarea containerului) */
    linear-gradient(var(--dark-color), var(--dark-color)) padding-box,
    /* strat exterior (gradient pe border) */
    linear-gradient(90deg, #23BCB3, #181E1D) border-box;
}

.yachts__top-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 767px) {

  .home-inner,
  .catalog-inner {
    padding: 0px 0px;
  }

  .yachts__top {
    border: none;
    border-radius: 0;
  }
}

/* Single Yachts */
.single-top {
  border: 3px solid transparent;
  border-radius: 12px;
  /* dacă ai nevoie */
  background:
    /* strat interior (culoarea containerului) */
    linear-gradient(#181E1D, #181E1D) padding-box,
    /* strat exterior (gradient pe border) – verde doar sus, restul închis */
    linear-gradient(to bottom,
      #23BCB3 0%,
      #23BCB3 30%,
      #181E1D 70%,
      #181E1D 100%) border-box;
}


/* Highlights section - (Additional services) */
.highlights {
  padding: 80px 0 10px;
}

.highlights__text {
  white-space: normal;
}

.highlights__text .accent {
  color: #23BCB3;
  font-weight: 600;
}

.highlights__text .muted {
  color: rgba(255, 255, 255, 0.65);
}

.highlights__text .strong {
  font-weight: 700;
}

.highlights__text .small {
  font-size: 0.92em;
}

.highlights__text .break {
  display: block;
  height: 8px;
}

.highlights .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.highlights__title {
  text-align: center;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
}

.highlights__divider {
  width: 100%;
  height: 2px;
  background-color: #23BCB3;
  border-radius: 9999px;
  margin: 10px auto 10px;
  opacity: 0.95;
}

.highlights__viewport {
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  padding-top: 20px;
}

.highlights__track {
  display: flex;
  gap: 16px;
  will-change: transform;
  transition: transform 400ms ease;
  padding-bottom: 8px;
}

.highlights__card {
  background: #393E3D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: calc((100% - 48px) / 4);
  /* 4 полные карточки на больших экранах */
  min-height: 360px;
  padding-top: 30px;
}

.highlights__media {
  padding-top: 12px;
  margin-top: -42px;
  position: relative;
  z-index: 10;
}

.highlights__media-frame {
  width: 92%;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
}

.highlights__media-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
  border-radius: 20px;
}

.highlights__body {
  padding: 0px 14px 16px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
}

.highlights__title-sm {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
}

.highlights__text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.4;
}

.highlights__footer {
  width: 92%;
  margin: 12px auto 14px;
  margin-top: auto;
}

.highlights__cta {
  display: block;
  width: 100%;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  border-radius: 10px;
  line-height: 1.1;
  font-size: 0.65rem;
  white-space: nowrap; 
  
}

.highlights__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 6px;
}

.highlights__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.highlights__dot--active {
  background: #23BCB3;
  transform: scale(1.1);
}


/* Responsive: show 3 cards on medium screens */
@media (max-width: 1199px) and (min-width: 769px) {
  .highlights__card {
    width: calc((100% - 32px) / 3);
    /* 3 полные карточки на средних экранах */
  }
}

/* Responsive: show 1 card per view on mobile*/
@media (max-width: 768px) {
  .highlights__track {
    gap: 12px;
  }

  .highlights__card {
    width: calc(100vw - 40px);
    min-height: 340px;
  }
}
@media (max-width: 768px) {
  .highlights__viewport {
    overflow: hidden; 
  }

  .highlights__track {
    gap: 12px;
  }

  .highlights__card {
    width: 100%;
    flex: 0 0 100%;
    overflow: visible; 
  }

  .highlights__media,
  .highlights__media-frame {
    margin-top: 0;
    transform: none;
  }
}

/* Quote section */
.quote-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 2% 0;
  max-width: 1400px;
  width: 95%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  margin: 4% auto;
  position: relative;
}

.quote-section__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 52px;
  width: 565px;
  height: 293px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.quote-section__texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 32px;
  width: 527px;
  height: 187px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.quote-section__text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 24px;
  width: 527px;
  height: 95px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.quote-section__title {
  width: 527px;
  height: 95px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 120%;
  color: #111D15;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 0;
  margin: 0 0 80px 0; 
  margin-top: -20px;
}

.quote-section__description {
  width: 516px;
  height: 60px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 27px;
  line-height: 30px;
  color: #FFFFFF;
  flex: none;
  order: 1;
  flex-grow: 0;
  margin: 0;
  margin-top: -55px;
}

.quote-section__buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 20px;
  width: 565px;
  height: 54px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.quote-section__button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  gap: 10px;
  border-radius: 15px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quote-section__button--primary {
  width: 240px;
  height: 54px;
  background: #23BCB3;
  color: #101212;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.quote-section__button--secondary {
  width: 300px;
  height: 54px;
  background: #282929;
  border: 2px solid #23BCB3;
  color: #FFFFFF;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.quote-section__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quote-section__image-block {
  width: 600px;
  height: 528.45px;
  flex: none;
  order: 1;
  flex-grow: 0;
  position: relative;
}

.quote-section__image {
  position: absolute;
  border-radius: 25.1046px;
}

.quote-section__image--primary {
  width: 420px;
  height: 420px;
  left: 118.52px;
  top: 0px;
  border: 12.5523px solid #23BCB3;
  border-bottom: 0;
  border-left: 0;
}

.quote-section__image--secondary {
  width: 289.96px;
  height: 332.64px;
  left: 0px;
  top: 195.82px;
  border: 12.5523px solid #FFFFFF;
}

@media screen and (max-width: 568px) {
  .quote-section__image--secondary {
    width: 120px !important;
    height: 140px !important;
    left: 0;
    bottom: 0px;
    border: 5px solid #1a9b94;
    border-left: none;
    border-bottom: none;
    object-position: left;
    object-fit: cover;
  }

  .quote-section__image--primary {
    width: 200px !important;
    height: 200px !important;
  }

  .quote-section__image-block {
    height: 250px !important;
  }
}

/* Responsive design for quote section */
@media (max-width: 1200px) {
  .quote-section {
    flex-direction: column-reverse;
    padding: 50px 30px;
    gap: 40px;
    height: auto;
    width: 90%;
  }

  .quote-section__contents {
    width: 100%;
    height: auto;
    gap: 30px;
  }

  .quote-section__texts {
    width: 100%;
    height: auto;
    gap: 20px;
  }

  .quote-section__text-block {
    width: 100%;
    height: auto;
    gap: 15px;
  }

  .quote-section__title {
    width: 100%;
    height: auto;
    font-size: 40px;
    margin-top: 10px;
  }

  .quote-section__description {
    width: 100%;
    height: auto;
    font-size: 24px;
  }

  .quote-section__buttons {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 15px;
  }

  .quote-section__button {
    width: 100%;
    white-space: nowrap;
    max-width: 300px;
  }

  .quote-section__image-block {
    width: 100%;
    height: 400px;
    max-width: 500px;
  }

  .quote-section__image--primary {
    width: 300px;
    height: 300px;
    left: 50%;
    top: 20px;
    transform: translateX(-40%);
    border: 5px solid #1a9b94;
    border-left: none;
    border-bottom: none;
    object-position: left;
    object-fit: cover;
  }

  .quote-section__image--secondary {
    width: 200px;
    height: 250px;
    left: 0px;
    top: 120px;
    border: 5px solid white;
    border-left: none;
    border-bottom: none;
  }
}

/* Client Photos section */
.client-photos-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3% 74px;
  width: 95%;
  max-width: 1400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  margin: 4% auto;
  flex: none;
  order: 2;
  flex-grow: 0;
}

.client-photos-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 30px;
  width: 1380px;
  max-width: 100%;
  height: 374px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.client-photos-section__title {
  width: 596px;
  max-width: 100%;
  height: 44px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  color: #FFFFFF;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 0;
}

.client-photos-section__gallery {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  max-width: 100%;
  height: 300px;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.client-photos-section__image {
  width: 250px;
  height: 250px;
  filter: drop-shadow(5px 5px 0px rgba(35, 188, 179, 0.7));
  border-radius: 10px;
  flex: none;
  flex-grow: 0;
  object-fit: cover;
}

.client-photos-section__image:nth-child(1) {
  order: 0;
}

.client-photos-section__image:nth-child(2) {
  order: 1;
}

.client-photos-section__image:nth-child(3) {
  order: 2;
}

.client-photos-section__image:nth-child(4) {
  order: 3;
}

/* Responsive design for client photos section */
@media (max-width: 1200px) {
  .client-photos-section {
    padding: 40px 30px;
    height: auto;
    width: 90%;
  }

  .client-photos-section__content {
    width: 100%;
    height: auto;
    gap: 20px;
  }

  .client-photos-section__title {
    width: 100%;
    height: auto;
    font-size: 28px;
    text-align: center;
  }

  .client-photos-section__gallery {
    width: 100%;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .client-photos-section__image {
    width: calc(50% - 10px);
    max-width: 300px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .client-photos-section {
    padding: 30px 20px;
  }

  .client-photos-section__title {
    font-size: 24px;
  }

  .client-photos-section__gallery {
    gap: 15px;
  }

  .client-photos-section__image {
    width: calc(50% - 7.5px);
    height: 200px;
  }
}

@media (max-width: 480px) {
  .client-photos-section__image {
    width: calc(50% - 7.5px);
    height: 150px;
  }
}

/*--------------------------------------------------------------
# HERO SLIDER OPTIMIZATION
--------------------------------------------------------------*/

.hero-new__image {
  transition: opacity 0.3s ease;
  will-change: transform;
}

.hero-new__image[loading] {
  opacity: 0.7;
}

.hero-new__image:not([loading]) {
  opacity: 1;
}

/*--------------------------------------------------------------
# NEW FILTER BLOCK STYLES
--------------------------------------------------------------*/

/* .new-filter-block {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  gap: 50px;
  position: relative;
  width: 80%;
  margin: auto;
  margin: 0 auto;
  background: #282929;
  backdrop-filter: blur(50px);
  border-radius: 20px;
  z-index: 1000;
  border: 3px solid transparent;
  background: linear-gradient(#282929, #282929) padding-box,
    linear-gradient(174.9deg, #23BCB3 -13.7%, #181E1D 95.58%) border-box;
}

.filter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 50px;
  width: 100%;
}

.filter-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 50px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 20px;
  flex: none;
  flex-grow: 0;
}

.filter-label {
  width: 100%;
  height: 20px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  margin: 0;
}

.filter-select {
  position: relative;
  width: 100%;
  min-width: 106px;
  z-index: 1000;
}

.filter-select__trigger {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  width: 100%;
  height: 54px;
  background: #F5F3EE;
  border: 1px solid #BBBBBB;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}

.filter-select__value {
  flex: 1;
  height: 20px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.03em;
  color: #2F2F2F;
  text-align: left;
}

.filter-select__arrow {
  width: 24px;
  height: 24px;
  transform: rotate(0deg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.filter-select__options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #F5F3EE;
  border: 1px solid #BBBBBB;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: none;
  max-height: 200px;
  overflow-y: auto;
}

.filter-select__options.show {
  display: block;
  position: absolute !important;
} */

/* Ensure dropdown is above neighbors when open */
.filter-select__trigger.active,
.filter-select__options.show,
.filter-select:has(.filter-select__options.show) {
  z-index: 20000;
  position: relative;
}

.filter-select__trigger.active .filter-select__arrow {
  transform: rotate(180deg) translateX(10%);
}

.filter-select__option {
  padding: 15px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.03em;
  color: #2F2F2F;
  border-bottom: 1px solid #E0E0E0;
}

.filter-select__option:last-child {
  border-bottom: none;
}

.filter-select__option:hover {
  background: #E8E8E8;
}


/* Responsive styles for new filter block */
@media (max-width: 768px) {
  .new-filter-block {
    padding: 30px 20px;
    gap: 30px;
  }

  .filter-row {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }

  .filter-item {
    width: 100%;
  }

}

/* Стили для центрированного контейнера яхт */
.main__inner--yachts-centered {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

/* Стили для валидации форм */
.hf-form input.error,
.hf-form select.error,
.hf-form textarea.error {
  border-color: #ff4444 !important;
  box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.2) !important;
}

.hf-form .field-error {
  color: #ff4444;
  font-size: 12px;
  margin-top: 5px;
  display: block;
  font-weight: 500;
}

.hf-form input:focus,
.hf-form select:focus,
.hf-form textarea:focus {
  outline: none;
  border-color: #23BCB3 !important;
  box-shadow: 0 0 0 2px rgba(35, 188, 179, 0.2) !important;
}

/* Анимация для полей с ошибками */
.hf-form input.error,
.hf-form select.error,
.hf-form textarea.error {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

/* Стили для сообщений об успехе и ошибке */
.form-success-message,
.form-error-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-align: center;
  min-width: 300px;
}

.form-success-message {
  background: #23BCB3;
  color: white;
}

.form-error-message {
  background: #ff4444;
  color: white;
}

.success-content,
.error-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.success-icon,
.error-icon {
  font-size: 24px;
  font-weight: bold;
}

.success-text,
.error-text {
  font-size: 16px;
}

img.custom-logo {
  width: 180px !important;
  height: auto !important;
  max-width: 100% !important;
}
img.custom-logo {
  transform: scale(1.5); 
  transform-origin: left center; 
}
@media (max-width: 768px){
  img.custom-logo {
  transform: scale(1.5); 
  transform-origin: left center; 
}
 .footer__logo .custom-logo-link img {
    transform: scale(1.1); 
  }
}