@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --blue-light: #88a3bc;
  --blue-dark: #4f5b6d;
  --green: #183428;
  --orange: #b98136;
  --br: 32px;
  --br-2: 26px;
  --bg-soft: #f8f7f3;
}
* {
  font-family: "Montserrat", sans-serif !important;
}
.container {
  padding: 0 20px;
  max-width: 1400px;
  margin: auto;
}
html {
  scroll-behavior: smooth;
}
ul,
li {
  list-style: none !important;
}
a {
  text-decoration: none;
  color: #000000;
}

body {
  background-color: var(--bg-soft);
  overflow-x: hidden;
}
.header-lang {
  position: relative;
  display: flex;
  border: 1px solid #33333374;
  border-radius: var(--br);
  padding: 0 10px;
  height: 50px;
  align-items: center;

  background: #f8f7f3; /* ✅ sənin istədiyin */
}

/* BUTTON */
.header-lang__current {
  border: none;
  height: 100%;
  padding: 0 14px;
  background: transparent;

  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* icon */
.header-lang__current svg {
  width: 10px;
  fill: var(--blue-dark);
  transition: 0.3s;
}

/* rotate */
.header-lang:hover .header-lang__current svg {
  transform: rotate(180deg);
}

/* DROPDOWN */
.header-lang__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;

  width: 90px;
  padding: 6px;

  background: #f8f7f3; /* 🔥 uyğunlaşdırıldı */
  border-radius: 16px;

  /* 🔥 əsas fix */
  border: 1px solid #33333320;

  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);

  transition: all 0.25s ease;
  z-index: 100;
}

/* SHOW */
.header-lang:hover .header-lang__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ITEM */
.header-lang__item {
  height: 38px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  color: #111;
  transition: 0.25s;
}

/* hover item */
.header-lang__item:hover {
  background: #ffffff;
  color: var(--blue-dark);
}

/* ACTIVE */
.header-lang__item.is-active {
  background: var(--blue-dark);
  color: #fff;
}
#menu_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.501);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 998;
}
#open_menu {
  display: none;
}

.mobile__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

#close_menu {
  align-self: flex-end;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

#close_menu:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.mobile__menu .header__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile__menu .menu__link {
  display: flex;
  padding: 16px 16px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-radius: var(--br);
  background: #f5f6f8;
  transition: 0.9s ease;
}

.mobile__menu .menu__link:hover {
  background-color: var(--blue-light) !important;
  color: var(--blue-dark);
}

.mobile__menu .social__icons {
  display: flex;
  align-items: center;
  gap: 0px;
  width: fit-content;
}
.mobile__menu .main__button {
  text-align: center;
}
.mobile__menu .social__icons a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile__menu .social__icons svg {
  width: 28px;
  height: 28px;
}
.mobile__menu.is-open {
  transform: translateX(0);
}

#menu_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

#menu_overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.menu-dropdownmobile {
  width: 100%;
}

.dropdown-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #f5f6f8;
  border: none;
}

.arrow {
  transition: transform 0.3s ease;
}

/* DROPDOWN */
.dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 10px;
}

/* OPEN STATE */
.menu-dropdownmobile.active .dropdown-menu {
  max-height: 300px;
}

.menu-dropdownmobile.active .arrow {
  transform: rotate(180deg);
}

/* LINK STYLE */
.dropdown-menu a {
  background: #eef1f4;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background-color: var(--bg-soft);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background-color: rgba(248, 247, 243, 0.95);
  backdrop-filter: blur(8px);
}

header.scrolled nav {
  padding: 5px 0;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 20px;
  transition: padding 0.35s ease;
}
.logo {
  width: 100px;
  transition: width 0.35s ease;
}
.logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.menu__items {
  display: flex;
  align-items: center;
  border: 1px solid #33333374;
  border-radius: var(--br);
  padding: 0 10px;
  height: 60px;
  transition: height 0.35s ease;
}
.menu__items li a {
  padding: 12px 11px;
  border-radius: var(--br-2);
  transition: all 0.9s ease;
  letter-spacing: 0.08em;
  font-size: 16px;
  transition: all 0.35s ease;
}
.menu__items li a:hover {
  background-color: var(--blue-light);
  /* color: var(--orange); */
}
.menu-dropdown {
  position: relative;
}

.menu-dropdown__toggle {
  border: 0;
  background: transparent;
  padding: 12px 15px;
  border-radius: var(--br-2);
  transition: all 0.35s ease;
  letter-spacing: 0.08em;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
}

.menu-dropdown__toggle:hover {
  background-color: var(--blue-light);
}

.menu-dropdown__list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.menu-dropdown:hover .menu-dropdown__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-dropdown__list li a {
  display: block;
  border-radius: 10px;
  padding: 10px 12px;
}
.social__icons {
  display: flex;
  border: 1px solid #33333374;
  border-radius: var(--br);
  padding: 0 10px;
  height: 50px;
  align-items: center;
  transition: height 0.35s ease;
}
.social__icons a:first-child {
  position: inherit;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: var(--br-2);
  border-bottom-left-radius: var(--br-2);
}
.social__icons a:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: var(--br-2);
  border-bottom-right-radius: var(--br-2);
}
.social__icons a {
  padding: 9px;
  transition: all 0.9s ease;
  position: relative;
}
.social__icons a::after {
  position: absolute;
  content: "";
  height: 20px;
  top: 50%;
  transform: translate(0, 50%);
  width: 1px;
  top: 0;
  background-color: #33333374;
  left: 0;
}
.social__icons a:hover {
  background-color: var(--blue-light);
  color: var(--blue-dark);
}
.social__icons a:hover svg path {
  fill: var(--blue-dark);
}
.social__icons svg {
  width: 20px;
  height: 20px;
}
.social__icons svg path {
  fill: #000;
}
.main__button {
  padding: 18px 20px;
  border-radius: var(--br);
  border: 2px solid var(--blue-dark);
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--blue-dark);
  transition: all 0.5s ease;
}
header .main__button {
  transition: padding 0.35s ease;
}

header.scrolled .logo {
  width: 86px;
}

header.scrolled .menu__items {
  height: 52px;
}

header.scrolled .menu__items li a,
header.scrolled .menu-dropdown__toggle {
  padding-top: 9px;
  padding-bottom: 9px;
  font-size: 14px;
}

header.scrolled .social__icons {
  height: 44px;
}

header.scrolled .header-lang {
  height: 44px;
}

header.scrolled .main__button {
  padding: 14px 18px;
}
.main__button:hover {
  background-color: var(--blue-light);
  /* color: var(--blue-light); */
  border-color: var(--blue-light);
}

.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  margin-bottom: 0;
  padding: 0;
}

.hero-slide {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.hero-slide > .container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 70%;
  color: #fff;
}

.hero-content h1 {
  font-size: 38px !important;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: opacity 0.2s ease-in-out;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 16px;
  max-width: 500px;
  margin-bottom: 20px;
  line-height: 21px;
  letter-spacing: 0.08em;
}

.hero-link {
  font-size: 14px;
  color: #fff;
  padding-bottom: 4px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.08em;
}

.hero-link svg {
  transition: transform 0.3s ease-in-out;
}
.hero-link:hover svg {
  transform: translateX(3px);
}

.hero-actions {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  z-index: 5;
  padding: 0 20px;
}

.hero-actions-grid {
  display: flex;
  gap: 10px;
}

.hero-action-card {
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 410px;
  padding: 20px 30px 30px;
  display: flex;
  align-items: left;
  flex-direction: column;
  gap: 50px;
  color: #fff;
  letter-spacing: 0.07em;
  transition: all 0.3s ease;
}
.hero-action-card:hover {
  background: hsla(0, 0%, 100%, 0.4);
  backdrop-filter: blur(20px);
}

.hero-action-text {
  flex: 1;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.07em;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-action-text svg {
  transition: transform 0.3s ease-in-out;
}
.hero-action-text:hover svg {
  transform: translateX(3px);
}

.slider-buttons {
  position: absolute;
  bottom: 40px;
  right: 20px;
  z-index: 10;
  display: flex;
}

.slider-buttons__item:not(:first-child) {
  margin-left: 1.4375rem;
}

.slider-buttons__button {
  --size: 8.75rem;
}

.slider-buttons__button {
  position: relative;
  z-index: 0;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  background: none;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  overflow: hidden;
}
#hero-slide1 {
  background: url("/assests/img/DSC00251-Edit-2.jpeg") center top/cover
    no-repeat;
}
#hero-slide2 {
  background: url("/assests/img/DSC00240-Edit-2.jpeg") center/cover no-repeat;
}

#hero-slide3 {
  background: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2200&q=80")
    center/cover no-repeat;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
}

.main__button--hero {
  padding: 14px 22px;
  font-size: 14px;
}

.hero-link--on-dark {
  color: #fff;
}

.slider-buttons__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.slider-buttons__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsla(0, 0%, 100%, 0.75);
}

.slider-buttons__button:hover {
  border-color: var(--green);
}

.slider-buttons__button:hover::before {
  transform: none;
}

.slider-buttons__button:hover .slider-buttons__hover {
  animation:
    MoveUpInitial 0.2s forwards,
    MoveUpEnd 0.2s forwards 0.2s;
}

.slider-buttons__button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  background-color: var(--green);
}

.slider-buttons__span {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
}

.slider-buttons__hover {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-buttons__svg {
  --size: 1.75rem;
}

.slider-buttons__svg {
  width: 40px;
  height: 40px;
  transform: rotate(90deg);
}

.slider-buttons__svg path {
  stroke-width: 1px;
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.slider-buttons__svg.right {
  transform: rotate(-90deg);
}

@keyframes MoveUpInitial {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -105%, 0);
  }
}

@keyframes MoveUpEnd {
  0% {
    transform: translate3d(0, 100%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}
section {
  padding: 60px 0;
}

/* Unified neutral white backgrounds */
.about-section,
.saunas-section,
.advantages,
.reviews,
.projects,
.resources,
.contact {
  background: #ffffff;
}

.about-section,
.saunas-section,
.advantages,
.reviews,
.projects,
.resources,
.contact {
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}
.title {
  font-size: 48px;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.1;
}

.content {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.text-box {
  letter-spacing: 0.04em;
  font-size: 20px;
  line-height: 150%;
  flex: 1.5;
  border-radius: var(--br-2);
  padding: 32px;
  line-height: 1.6;
  color: #000;
  box-shadow: inset 0px 0px 0px 2px #1111111a;
}

.text-box p {
  margin-bottom: 20px;
}

.image-box {
  flex: 1;
  border-radius: var(--br-2);
  overflow: hidden;
}

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

.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.card {
  background: linear-gradient(135deg, var(--green), var(--blue-dark));
  color: #fff;
  border-radius: var(--br-2);
  padding: 32px;
  min-height: 340px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* ICON */
.icon svg {
  width: 73px;
  height: 73px;
  fill: #fff;
  stroke-width: 2;
  transition: all 0.4s ease;
}

/* HOVER EFFECT 🔥 */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green), var(--blue-dark));
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* content üstə qalsın */
.card * {
  position: relative;
  z-index: 1;
}

/* icon animasiya */
.card:hover .icon svg {
  transform: scale(1.2) rotate(5deg);
  fill: var(--orange);
}

/* text */
.card p {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
  transition: 0.3s;
}

.card:hover p {
  color: #fff;
}
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

/* BUTTONS */
.nav-buttons {
  display: flex;
  gap: 12px;
}

.nav-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn svg {
  fill: #000;
  transition: 0.3s;
}

.nav-btn:hover {
  background: var(--blue-dark);
}

.nav-btn:hover svg {
  fill: #fff;
}

/* SWIPER */
.reviews-slider {
  overflow: hidden;
}

.swiper-slide {
  height: auto;
}

.reviews-slider .swiper-wrapper {
  align-items: stretch;
}

.reviews-slider .swiper-slide {
  display: flex;
}

/* CARD */
.review-card {
  border-radius: var(--br);
  padding: 22px;
  box-shadow: inset 0px 0px 0px 2px #1111111a;
  height: 380px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

/* ICON */
.quote-icon svg {
  width: 58px;
  fill: #ddd;
  transition: 0.3s;
}

.review-card:hover .quote-icon svg {
  fill: var(--orange);
  transform: scale(1.1);
}

/* TEXT */
.review-card h4 {
  margin: 15px 0 10px;
  font-size: 20px;
}

.review-card p {
  margin: 0;
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  line-clamp: 8;
  -webkit-box-orient: vertical;
}

.contact-container {
  background: #000;
  border-radius: var(--br-2);
  padding: 60px;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.contact-left {
  flex: 1;
}

.contact h2 {
  color: #fff;
  letter-spacing: 0.07em;
  font-size: 24px;
}

.contact-left p {
  color: #bbb;
  font-size: 18px;
}

/* RIGHT */
.contact-right {
  flex: 1.5;
}

/* INPUT ROW */
.inputs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.field {
  flex: 1;
}

.field label {
  display: block;
  color: #aaa;
  margin-bottom: 8px;
  font-size: 14px;
}

.field span {
  color: red;
}

/* INPUT */
.field input {
  width: 100%;
  padding: 18px;
  border-radius: var(--br-2);
  border: 1px solid #333;
  background: #1a1a1a;
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.field input::placeholder {
  color: #666;
}

.field input:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 2px rgba(136, 163, 188, 0.2);
}

/* CHECKBOX */
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--green);
}

.checkbox label {
  color: #aaa;
  font-size: 14px;
}

.checkbox a {
  color: var(--blue-light);
  text-decoration: underline;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: var(--br-2);
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;

  background: linear-gradient(135deg, var(--green), var(--blue-dark));

  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--orange), var(--blue-dark));
}
/* carousel parent */
.gallery-carousel {
  position: relative;
}

/* NAV WRAP */
.gallery-carousel .owl-nav {
  position: absolute;
  top: 39%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* klik yalnız buttona */
}

/* BUTTON */
.gallery-carousel .owl-nav button {
  pointer-events: all;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff !important;
  border: 2px solid transparent !important;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

/* LEFT */
.gallery-carousel .owl-nav .owl-prev {
  position: absolute;
  right: 70%;
  top: 50%;
  border-color: var(--blue-dark) !important;
}

/* RIGHT */
.gallery-carousel .owl-nav .owl-next {
  position: absolute;
  left: 70%;
  top: 50%;
  border-color: var(--blue-dark) !important;
}

/* ICON */
.gallery-carousel .owl-nav button span {
  font-size: 22px;
  color: var(--blue-dark);
}

/* HOVER */
.gallery-carousel .owl-nav button:hover {
  background: var(--blue-dark) !important;
}

.gallery-carousel .owl-nav button:hover span {
  color: #fff;
}

/* IMAGE */
.gallery-carousel .item {
  /* border-radius: 32px; */
  overflow: hidden;
}

.gallery-carousel img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  height: 72px;
  width: 72px;
}
.gallery-carousel .owl-nav button:hover svg {
  fill: #fff;
}

.faq-logo {
  max-width: 80%;
}

.flex {
  display: flex;
  gap: 30px;
}

.resources .f33 {
  padding-right: 0.75rem;
}

.f33 {
  flex: 1 1 33.33333%;
  width: 33.33333%;
  max-width: 33.33333%;
}

.resources-desc {
  padding: 1.5rem;
  font-size: 24xp;
  text-align: center;
  line-height: 1.2;
  background-color: #f1eee7;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.resources-desc .desc {
  margin-block: 20px;
  letter-spacing: -0.72px;
}

.faq-right {
  max-height: 350px;
  overflow-y: auto;
  padding: 0 30px 0 0;
}

.faq-item {
  transition: all 0.4s ease;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #f1eee7;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  border-radius: 12px;
  /* background: #f6f6f6; */
  border: 1px solid #d5d8dc;
  background-color: #f1eee7;
}

.faq-header h3 {
  font-size: 20px;
  font-weight: bold;
  color: #121212;
  background-color: #f1eee7;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-arrow {
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background-color: #f1eee7;
  border-radius: 0 0 20px 20px;
  padding: 0 24px;
  transform: translateY(-5px);
  transition: all 0.6s ease;
}

.faq-content p {
  font-size: 18px;
  color: #222;
  line-height: 1.6;
  margin: 0;
  padding: 18px 0;
  background-color: #f1eee7;
}

.faq-item.active .faq-header h3 {
  color: var(--green);
}

.faq-item.active .faq-content {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  background-color: #f1eee7;
}

.faq-item.active .faq-arrow {
  transform: rotate(45deg);
}

.faq-item:hover .faq-arrow {
  transform: rotate(45deg);
}

.faq-header:hover h3 {
  color: var(--green);
}

.f66 {
  flex: 1 1 66.66666%;
  width: 66.66666%;
}
.footer {
  padding: 80px 0 20px 0;
  color: #252628;
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1.3fr;
  gap: 40px;
}
/* LOGO */

.footer-logo {
  width: 130px;
  margin-bottom: 40px;
  object-fit: cover;
}

.footer-contact a {
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
  text-decoration: none;
  color: #252628;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-address {
  margin: 40px 0 20px;
  font-size: 16px;
  line-height: 24px;
}

footer .main__button {
  display: inline-block;
  color: #fff;
  cursor: pointer;
  padding: 14px 28px;
  font-size: 16px;
  text-decoration: none;
}

/* LINKS */

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 32px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #6d6d6d;
  text-decoration: none;
}
.footer-subscribe {
  background: #e7e3e0;
  padding: 36px 40px;
  border-radius: 40px;
  height: fit-content;
  align-self: start;
}

.footer-subscribe h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #252628;
}

/* INPUT */

.subscribe-input {
  position: relative;
  margin-bottom: 18px;
}

.subscribe-input input {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 40px;
  padding: 0 150px 0 22px;
  font-size: 16px;
  background: #f3f1ef;
  outline: none;
}

/* BUTTON */

.subscribe-input button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  padding: 0 26px;
  border: none;
  border-radius: 40px;
  background: #ffffff;
  font-size: 16px;
  cursor: pointer;
}

/* CHECKBOX */

.subscribe-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #6d6d6d;
}

.subscribe-check input {
  width: 18px;
  height: 18px;
}

.subscribe-check a {
  color: #5c8b66;
  text-decoration: none;
}
.footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 15px 0; /* py-[30px] */
  border-top: 1px solid #e6e6e6; /* border-t border-t-[#E6E6E6] */
}
.footer_bottom p {
  font-size: 15px; /* te
  maxt-[12px] */
  line-height: 17px; /* leading-[17px] */
  font-family: "Montserrat", sans-serif; /* font-montserrat */
  font-weight: 500; /* font-medium */
  color: #999999; /* text-[#999999] */
}
.footer_bottom a {
  transition: 0.3s ease;
  color: #000;
}
.footer_bottom a:hover {
  color: var(--green);
}
footer {
  margin-top: 60px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BACKGROUND */
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

/* BOX */
.modal-box {
  position: relative;
  width: 100%;
  max-width: 850px;
  border-radius: var(--br);
  overflow: hidden;
  z-index: 2;

  background: #fff;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);

  animation: modalIn 0.4s ease;
}

/* ANIMATION */
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CLOSE */
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f1f1f1;
  cursor: pointer;
  font-size: 18px;
}

/* LAYOUT */
.modal-inner {
  display: flex;
}

/* LEFT */
.modal-left {
  flex: 1;
  padding: 50px;
  background: var(--bg-soft);
}

.modal-left h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.modal-left p {
  color: #666;
}

/* FORM SIDE */
.modal-form {
  flex: 1;
  padding: 50px;
}

/* INPUT */
.modal-form input {
  width: 100%;
  padding: 16px;
  margin-bottom: 15px;
  border-radius: var(--br-2);
  border: 1px solid #ddd;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.modal-form input:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 2px rgba(136, 163, 188, 0.2);
}

/* BUTTON */
.modal-form button {
  width: 100%;
  padding: 18px;
  border-radius: var(--br-2);
  border: none;
  font-size: 16px;
  cursor: pointer;

  background: var(--green);
  color: #fff;

  transition: 0.3s;
}

.modal-form button:hover {
  background: var(--blue-dark);
}
.saunas-section {
  margin-bottom: 0;
}

.catalog-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.catalog-section-head .section-title {
  margin: 0;
}

.catalog-section-head .title {
  margin: 0;
}

.section-subtitle {
  margin: 12px 0 28px;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #4f5b6d;
}

.catalog-section-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 768px) {
  .catalog-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-section-nav {
    align-self: flex-end;
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .reviews-header .nav-buttons {
    align-self: flex-end;
  }
}

.main__button--ghost {
  color: var(--blue-dark);
  background: #fff;
  border-color: var(--blue-dark);
}

.main__button--ghost:hover {
  color: #fff;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.reviews-header-text {
  max-width: 720px;
}

.reviews-lead {
  margin: 12px 0 0;
  font-size: 18px;
  line-height: 1.45;
  color: #444;
  letter-spacing: 0.04em;
}

.advantages .title,
.reviews-header-text .title {
  margin-bottom: 0;
}

.footer-bottom-tagline {
  max-width: 920px;
  margin: 0 auto 16px;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #22212a;
}

/* Card */
.sauna-card-new {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

/* Image area */
.sauna-image-wrap {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.sauna-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.sauna-card-new:hover img {
  transform: scale(1.04);
}

/* Overlay gradient */
.sauna-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(0 0 0 / 88%),
    rgb(0 0 0 / 29%),
    rgb(0 0 0 / 50%)
  );
}

/* Floating badges (top-right) */
.sauna-badges {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}

.sauna-badges span {
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

/* Text on image */
.sauna-text {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  color: #fff;
  z-index: 3;
  transition: 0.4s ease;
}

.sauna-category {
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.9;
}

.sauna-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 6px;
}

/* Hidden hover info */
.sauna-hidden-info {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.45s ease;
}

.sauna-card-new:hover .sauna-hidden-info {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

.sauna-hidden-info p {
  font-size: 14px;
  line-height: 1.5;
}

.sauna-specs {
  font-size: 13px;
  opacity: 0.85;
}

/* Bottom buttons */

/* Slider arrows */
.saunas-slider {
  padding: 20px 0;
}
section {
  padding: 60px 0;
}
.sauna-card-footer {
  padding: 18px 20px 22px;
  text-align: center;
}

/* Outline premium button */
.sauna-card-new .main__button {
  display: inline-block;
  padding: 12px 26px;
  width: 100%;
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  transition: opacity 0.6s ease;
  z-index: 1;
}

.service-card__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  color: #fff;
  z-index: 2;
}

.service-card__title {
  font-size: 22px;
  font-weight: 500;
  max-width: 70%;
  line-height: 25px;
  margin: 0;
}

.service-card__desc {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
  max-height: 0;
  max-width: 80%;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition:
    max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card__btn {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__btn svg {
  width: 10px;
  height: 10px;
  transition: transform 0.4s ease;
  transform: rotate(45deg);
}
.service-card__btn svg path {
  fill: #fff;
}
.projects button {
  background: none !important;
  border: none;
}
img {
  overflow: hidden;
}

.projects {
  text-align: center;
  /* margin-bottom: 50px; */
}

.gallery-carousel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Images grayscale by default */
.gallery-carousel .item img,
.gallery-grid .item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-top-left-radius: var(--br);
  border-bottom-right-radius: var(--br);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-carousel .item,
.gallery-grid .item {
  position: relative;
  overflow: hidden;
  border-top-left-radius: var(--br);
  border-bottom-right-radius: var(--br);
}
.gallery-carousel .item:hover img,
.gallery-grid .item:hover img {
  transform: scale(1.08);
}
.gallery-carousel .service-card__overlay {
  border-top-left-radius: var(--br);
  border-bottom-right-radius: var(--br);
}

.gallery-carousel .item:hover .service-card__overlay {
  opacity: 0.45;
}

.projects .owl-carousel {
  position: relative;
}

.projects .owl-carousel {
  position: relative;
}

.sticky_icon_wrapper {
  display: block;
  position: absolute;
  z-index: 200;
}
#main-div {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 0;
}

#main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  bottom: 10px;
  height: 60px;
  width: 60px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(5, 27, 52, 0.2);
  border: 1px solid #ddd;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.wave {
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes wave {
  0% {
    box-shadow: 0 0 0 0 #1a4d7e5a;
  }

  100% {
    box-shadow: 0 0 0 15px #1a4d7e1b;
  }
}
#main-button ~ .onlineregistration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  visibility: hidden;
  font-weight: bold;
  text-decoration: none;
  height: 50px;
  padding: 0 25px;
  color: #fff;
  border: 1px solid var(--blue);
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: -1;
  right: 10px !important;
  bottom: 10px !important;
  opacity: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
  font-size: 14px;
}

#main-button ~ .wrappericon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: -1;
  height: 55px;
  width: 55px;
  opacity: 0;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}
#main-button ~ .wrappericon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: -1;
  height: 55px;
  width: 55px;
  opacity: 0;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

#main-button ~ .wrappericon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: -1;
  height: 55px;
  width: 55px;
  opacity: 0;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

#main-button ~ .wrapper_icon_messenger {
  width: fit-content;
  height: fit-content;
  box-shadow: unset;
  border-radius: unset;
}
#main-button.open .icon-mail {
  display: none;
}
.open {
  animation-iteration-count: 1;
}
#main-button.open .icon-close {
  display: block;
}
#main-button .icon-close {
  display: none;
}
#main-button.open ~ .onlineregistration {
  visibility: visible;
  right: 80px !important;
  opacity: 1;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  background: #fff;
  color: black;
  width: 200px;
}
#main-button.open ~ #wrapper_messenger {
  bottom: 82px;
  right: 10px;
  border-radius: 50%;
  overflow: hidden;
}

#main-button.open ~ .wrappericon {
  opacity: 1;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}
#main-button.open ~ #wrappertg {
  bottom: 150px;
  background: linear-gradient(0deg, #017ab1, #01abe6) !important;
}

#main-button.open ~ .wrappericon {
  opacity: 1;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}
#main-button.open ~ #wrapper_whatsapp {
  bottom: 220px;
  background: lab(70.5521% -66.5147 45.8073);
}
#main-button.open ~ #wrapper_imo {
  bottom: 350px;
  border-radius: 50%;
  overflow: hidden;
}
#main-button.open ~ .wrappericon {
  opacity: 1;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}
btn {
  background: linear-gradient(90deg, #e0a96d, #c7d184);
  border: none;
  padding: 12px 26px;
  border-radius: 25px;
  color: white;
  font-size: 15px;
  cursor: pointer;
  width: fit-content;
}
.container {
  max-width: 1400px;
  padding: 0 20px;
  margin: auto;
}

/* overlay for better text readability */

/* content */
a {
  text-decoration: none;
}
section {
  padding: 60px 0;
}

/* base overlay for readability */

/* title */

/* overlay */

/* radial hover */

.card:has(.card-btn:hover) .card-overlay {
  clip-path: circle(150% at 90% 90%);
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 34px;
  font-weight: 600;
}

.services-btn {
  padding: 16px 28px;
  border: 2px solid var(--green);
  border-radius: 32px;
  text-decoration: none;
  color: var(--green);
  font-weight: 500;
  transition: 0.3s;
}

.services-btn:hover {
  background: var(--green);
  color: #fff;
}

/* CARD */

/* HOVER ZOOM */

/* OVERLAY */

/* TITLE */

/* LEFT PAGINATION */

/* RIGHT BUTTONS */

/* overlay */

/* hover effect */

/* title on image */

/* CONTENT */
/* LOGO */

/* LINKS */

/* INPUT */

/* BUTTON */

/* CHECKBOX */

.projects {
  padding: 60px 0;
}

.project-card {
  display: block;
  background: #f4f4f4;
  border-radius: var(--br);
  overflow: hidden;
  transition: 0.3s;
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* IMAGE */

.project-bg {
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* CONTENT */

.project-content {
  position: absolute;
  left: 24px;
  top: 24px;
  color: #fff;
  z-index: 2;
}

.project-content h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.price {
  font-size: 20px;
  font-weight: 600;
}

/* TAGS */

.project-tags {
  padding: 16px;
  display: flex;
  gap: 10px;
}

.project-tags span {
  background: #e7e3e0;
  color: #000;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
}
.page-hero {
  position: relative;
  height: 480px;
  background-image: url("/assests/img/slide1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}

/* overlay */

.page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* content */

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  margin: auto;
}

/* breadcrumb */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 20px;
  justify-content: center;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.breadcrumb span {
  opacity: 0.8;
}

.breadcrumb .active {
  opacity: 1;
}

/* title */

.page-title {
  font-size: 48px;
  font-weight: 600;
}
.about-texts p {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  max-width: 800px;
}
hr {
  opacity: 0.3;
}

.landscape-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
  align-items: stretch;
}

.landscape-title {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 500;
  max-width: 400px;
}

.landscape-text {
  font-size: 14px;
  line-height: 26px;
  color: #444;
}

.landscape-image img {
  width: 100%;
  display: block;
  height: 500px;
  object-fit: cover;
  border-radius: var(--br);
}

.about-title {
  font-size: 45px;
  line-height: 64px;
  font-weight: 500;
  margin-bottom: 50px;
  max-width: 680px;
}

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

.about-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  height: 760px;
  border-radius: var(--br);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.about-item h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-item p {
  font-size: 15px;
  line-height: 1.3;
  color: #444;
  max-width: 460px;
}

.about-values .btn {
  margin-top: 20px;
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid var(--green);
  font-size: 16px;
  transition: 0.3s ease;
  width: fit-content;
}
.about-values .btn:hover {
  background: #fff;
  color: var(--green) !important;
}

excursion .btn {
  margin-top: 0;
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid var(--green);
  font-size: 16px;
  transition: 0.3s ease;
}

.excursion .btn:hover {
  background: #fff;
  color: var(--green) !important;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 20px;
  align-items: start;
}

/* TITLE */

.contacts-title {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 40px;
}

/* BLOCKS */

.contact-block {
  margin-bottom: 28px;
}

.contact-block span {
  display: block;
  font-size: 14px;
  color: #8a8a8a;
  margin-bottom: 6px;
}

.contact-block p {
  font-size: 18px;
  margin: 0;
}
.contact-block a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  margin: 0;
}
/* BUTTON */

.map {
  width: 100%;
  height: 550px;
  border-radius: var(--br);
}
#map {
  height: 550px;
  border-radius: var(--br);
}
.contacts-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contacts-inner .services-btn {
  width: fit-content;
}

.excursion-image {
  margin-bottom: 40px;
}

.excursion-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: var(--br);
}

.excursion-content {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: flex-start;
  gap: 40px;
}

/* title */

.excursion-title {
  font-size: 26px;
  font-weight: 500;
}

/* text */

.excursion-text {
  font-size: 18px;
  line-height: 1.3;
  max-width: 700px;
  color: #333;
}

.static-text li::marker {
  color: var(--green);
}
.static-text li::marker {
  color: var(--green);
}

:is(footer, .contact_wrapper) .socialContainer {
  border-radius: 12px;
}

.Tabs_button__F1b7d:focus-visible {
  color: #121214;
}

.Tabs_button__F1b7d:focus-visible .Tabs_wrapper__2b_4x > :first-child {
  color: #4f4e57;
  background-color: #dae3e3;
}

.Tabs_button__F1b7d:focus-visible .Tabs_wrapper__2b_4x > :nth-child(2) {
  color: var(--color-green);
  background-color: #eaedf6;
}

@supports not selector(:focus-visible) {
}

.switch:has(.circle:checked) {
  background: var(--color-offwhite);
}

.switch:has(.circle:checked) > .sun {
  opacity: 1;
}

.switch:has(.circle:checked) > .moon {
  opacity: 0;
}
.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}

.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}
/* Right Card - Contact Center */

.text-styles ul li::marker {
  color: #92b33d;
}

.page-catalog2-main-list-item-ava-list:focus-visible {
  outline: none;
}

.quote-form-submit:hover:not(:disabled) svg {
  transform: translateX(4px);
}

.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}

.phone-input:has(input:focus) {
  border-color: #006525;
}

/* TITLE */
/* CONTENT */

/* BUTTON */
/* IMAGE */

/* NAVIGATION */
.contacts-icons .homesinnericons {
  margin-top: 0;
}

/* SUBSCRIBE */

/* ACTIVE */
/* BURGER */

/* ACTIVE BURGER */

/* MOBILE MENU */

/* =========================
   MOBILE MENU WRAPPER
========================= */

/* =========================
   OVERLAY
========================= */

/* =========================
   PANEL (LEFT SLIDE)
========================= */

/* =========================
   TOP (CLOSE BUTTON)
========================= */

/* CLOSE BUTTON */

/* =========================
   MENU
========================= */

/* hover effect */

/* =========================
   BOTTOM
========================= */

/* phone */

/* icons */

/* button */

/* =========================
   ACTIVE STATE
========================= */

/* =========================
   STAGGER ANIMATION
========================= */

/* =========================
   BURGER
========================= */
.desktop {
  display: block;
}
.mobile {
  display: none;
}

/* LEFT */

/* THUMBS */

/* RIGHT */

/* BUTTONS */

.btn {
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}
.homesinnericons {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-top: 40px;
}
.homesinnericons img {
  width: 43px;
  height: 43px;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .contacts-grid {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 10px;
    align-items: start;
  }
  .excursion-content {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .excursion-image.mobile {
    margin-bottom: 0;
    margin-top: 40px;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

.static-text li::marker {
  color: var(--green);
}
.static-text li::marker {
  color: var(--green);
}

:is(footer, .contact_wrapper) .socialContainer {
  border-radius: 12px;
}

.Tabs_button__F1b7d:focus-visible {
  color: #121214;
}

.Tabs_button__F1b7d:focus-visible .Tabs_wrapper__2b_4x > :first-child {
  color: #4f4e57;
  background-color: #dae3e3;
}

.Tabs_button__F1b7d:focus-visible .Tabs_wrapper__2b_4x > :nth-child(2) {
  color: var(--color-green);
  background-color: #eaedf6;
}

@supports not selector(:focus-visible) {
}

.switch:has(.circle:checked) {
  background: var(--color-offwhite);
}

.switch:has(.circle:checked) > .sun {
  opacity: 1;
}

.switch:has(.circle:checked) > .moon {
  opacity: 0;
}
.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}

.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}
/* Right Card - Contact Center */

.text-styles ul li::marker {
  color: #92b33d;
}

.page-catalog2-main-list-item-ava-list:focus-visible {
  outline: none;
}

.quote-form-submit:hover:not(:disabled) svg {
  transform: translateX(4px);
}

.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}

.phone-input:has(input:focus) {
  border-color: #006525;
}
.reviews-grid,
.gallery-grid,
.baths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.btn {
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
  }
  .about-title {
    font-size: 39px;
    line-height: 64px;
    font-weight: 500;
    margin-bottom: 50px;
    max-width: 680px;
  }
  .landscape-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .project-content {
    position: absolute;
    left: 15px;
    top: 24px;
    color: #fff;
    z-index: 2;
    /* max-width: 95%; */
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .page-title {
    font-size: 26px;
    font-weight: 600;
  }
  .about-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 450px;
    border-radius: var(--br);
  }
  .about-title {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 50px;
    max-width: 680px;
  }
  .about-texts p {
    font-size: 23px;
  }
  .services-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .gallery-carousel {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .modal-inner {
    flex-direction: column;
  }

  .modal-left,
  .modal-form {
    padding: 30px;
  }
}

/* responsive */
@media (max-width: 768px) {
  .modal-content {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .footer_bottom {
    flex-direction: column;
    gap: 10px;
  }
  .container {
    padding: 0 10px;
  }
}

@media (min-width: 640px) {
  .footer_head_three {
    justify-content: flex-start; /* sm:justify-normal */
  }
  .footer_head_four {
    max-width: 280px; /* sm:max-w-[256px] */
  }
  .footer_center_one {
    max-width: 196px; /* sm:max-w-[196px] */
  }
}
@media (min-width: 1024px) {
  .footer_head {
    flex-direction: row; /* lg:flex-row */
    justify-content: space-between; /* lg:justify-between */
    align-items: center;
  }
  .footer_head_two {
    justify-content: space-between; /* lg:justify-normal */
    max-width: 200px; /* lg:max-w-[200px] */
    order: 2; /* lg:order-2 */
  }
  .footer_head_three {
    order: 3; /* lg:order-3 */
    max-width: 188px; /* sm:max-w-[188px] */
  }
  .footer_head_four {
    order: 4; /* lg:order-4 */
  }
  .footer_center {
    padding-top: 27px; /* lg:py-[27px] */
    padding-bottom: 27px; /* lg:py-[27px] */
    flex-direction: row; /* lg:flex-row */
  }
  .footer_center_one {
    order: 1; /* lg:order-1 */
    margin: 0;
  }
  .footer_center_one h3 {
    text-align: start; /* lg:text-start */
  }
  .footer_center_two {
    max-width: 280px; /* xl:max-w-[218px] */
    text-align: left; /* lg:text-start */
    margin: 0;
    order: 2;
  }
  .footer_center_three {
    text-align: start; /* lg:text-start */
    margin: 0; /* lg:mx-0 */
    order: 3; /* lg:order-3 */
  }
  .footer_center_three_addition {
    display: flex;
    align-items: center;
    column-gap: 8px;
  }
  .footer_center_fifth {
    display: none;
  }
  .footer_center_six {
    display: none; /* lg:hidden */
  }
  .footer_bottom p {
    text-align: left; /* lg:text-start */
  }
}

@media (max-width: 1280px) {
  .menu-dropdown__toggle {
    font-size: 13px;
  }
  .faq-header h3 {
    font-size: 17px;
  }
  .faq-content {
    font-size: 16px;
  }
  .desc {
    font-size: 14px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .flex {
    display: flex;
    gap: 30px;
    flex-direction: column-reverse;
    align-items: center;
  }

  .f33 {
    width: 100%;
    max-width: 100%;
  }
  .f66 {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer_bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .footer-subscribe {
    background: #e7e3e0;
    padding: 36px 20px;
    border-radius: 40px;
    height: fit-content;
    align-self: start;
  }
  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 60px;
    row-gap: 32px;
  }
  section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 24px;
  }
  .container {
    padding: 0 10px;
  }
  .faq-header h3 {
    font-size: 14px;
  }
  .faq-right {
    padding: 0 10px 0 0;
  }
  .faq-content p {
    font-size: 14px;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .inputs {
    flex-direction: column;
  }

  .contact-left h2 {
    font-size: 36px;
  }
}
/* RESPONSIVE */
@media (max-width: 1024px) {
  .reviews-header h2 {
    font-size: 40px;
  }
}
@media (max-width: 1280px) {
  .hero-action-card {
    width: 325px;
    gap: 30px;
  }
  .hero-content h1 {
    font-size: 70px;
  }
  .hero-content {
    max-width: 80%;
  }
  .header-lang__current {
    padding: 0 5px;
  }
  .logo {
    width: 90px;
  }
  .slider-buttons__button {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 992px) {
  .hero-actions {
    bottom: 160px;
  }
  .hero-content h1 {
    font-size: 30px !important;
  }
  .hero-content {
    top: -112px !important;
  }
  .slider-buttons {
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
  .hero-content h1 {
    font-size: 20px !important;
    margin-bottom: 10px;
  }
  .hero-content {
    top: -86px !important;
  }
  .hero-action-card {
    padding: 10px 28px 10px;
  }
  .hero-content {
    max-width: 100%;
  }

  .hero-content p {
    font-size: 14px;
    max-width: 500px;
    margin-bottom: 20px;
    line-height: 18px;
  }
  .hero-actions-grid {
    flex-direction: column;
  }
  .hero-action-card {
    width: 100%;
    gap: 10px;
  }
  .slider-buttons__button {
    width: 50px;
    height: 50px;
    background-color: var(--green);
    border-color: var(--green);
  }
  .hero-actions {
    bottom: 130px;
  }
  .hero-action-text {
    font-size: 17px;
  }
}

@media (max-width: 1280px) {
  .menu__items li a {
    padding: 12px 8px;
    font-size: 13px;
  }
  .social__icons {
    padding: 0 3px;
  }
  nav {
    gap: 0;
  }
  .menu__items {
    height: 50px;
  }
}
@media (max-width: 1200px) {
  .menulang {
    display: flex;
    gap: 15px;
    align-items: center;
  }
  .menu__items,
  nav .social__icons,
  nav .main__button {
    display: none;
  }
  #open_menu {
    display: flex;
  }
  nav {
    padding: 5px 0;
  }
}

@media (max-width: 768px) {
}

.card:has(.card-btn:hover) .card-overlay {
  clip-path: circle(150% at 90% 90%);
}
.services {
  padding: 60px 0;
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 34px;
  font-weight: 600;
}

.services-btn {
  padding: 16px 28px;
  border: 2px solid var(--green);
  border-radius: 32px;
  text-decoration: none;
  color: var(--green);
  font-weight: 500;
  transition: 0.3s;
}

.services-btn:hover {
  background: var(--green);
  color: #fff;
}

/* CARD */

.service-card {
  position: relative;
  display: flex;
  height: 420px;
  border-radius: var(--br);
  overflow: hidden;
  cursor: pointer;
}

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

/* HOVER ZOOM */

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

/* OVERLAY */

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.2),
    transparent
  );
}

/* TITLE */

.service-name {
  position: absolute;
  left: 25px;
  bottom: 25px;
  color: white;
  font-size: 22px;
  font-weight: 500;
}
.gallery-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

/* LEFT PAGINATION */

.gallery-pagination {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 30%;
}

.gallery-current,
.gallery-total {
  font-size: 16px;
  font-weight: 500;
}

.gallery-line {
  flex: 1;
  height: 1px;
  background: #ddddddd6;
  position: relative;
}

.gallery-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #333;
  transition: width 0.4s ease;
}

/* RIGHT BUTTONS */

.gallery-nav {
  display: flex;
  gap: 15px;
}
.gallery-nav svg {
  width: 30px;
  height: 30px;
}
.gallery-prev,
.gallery-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 25px;
  transition: 0.3s;
  color: #fff;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: #bbb;
}
.gallery-prev svg {
  transform: rotate(-180deg);
}

@media (max-width: 768px) {
  .gallery-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 40px;
    flex-direction: column;
    gap: 15px;
  }
  .gallery-pagination {
    width: 100%;
  }
  .services-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-direction: column;
    gap: 20px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  gap: 30px;
}

.checkbox {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  position: relative;
  width: 100%;
}

.news-detail {
  padding: 60px 0;
  position: relative;
  background: #fff;
}

.news-detail__container {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
}

/* TITLE */

.news-detail__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
}
.news-detail__content-area.servicesinner {
  border-top: 1px solid #e6e6e6;
  padding-top: 40px;
}
/* CONTENT */

.news-detail__content-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-detail__content-area p {
  font-size: 16px;
  line-height: 24px;
}

/* BUTTON */

.news-detail__btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  border: 2px solid var(--green);
  transition: 0.4s ease;
}
.news-detail__btn:hover {
  background-color: #fff;
  color: var(--green);
}

.news-navigation {
  border-top: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: 40px;
}
.news-navigation a {
  color: #333 !important;
}
form a {
  color: #333 !important;
  text-decoration: underline;
}
.news-navigation__container {
  display: flex;
  flex-direction: column;
}
.news-navigation__container p {
  font-size: 12px;
  opacity: 0.7;
}
.news-navigation__link {
  font-weight: 500;
  margin-bottom: 10px;
}

.news-navigation__link_right {
  text-align: right;
}

/* SUBSCRIBE */

.news-subscribe {
  background: #f4f4f4;
  padding: 40px;
  border-radius: 10px;
}

.news-subscribe__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 22px;
}

.news-subscribe__subtitle {
  margin-bottom: 24px;
  font-size: 16px;
  opacity: 0.7;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  color: #6d6d6d;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 14px 24px;
  border-radius: 40px;
  border: 1px solid transparent;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
  font-size: 13px;
}
.news-subscribe__btn {
  width: 100%;
  padding: 16px;
  border-radius: 40px;
  font-weight: bold;
}

@media (max-width: 992px) {
  .news-detail__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .news-navigation {
    display: none;
  }
  .news-subscribe {
    background: #f4f4f4;
    padding: 40px 20px;
    border-radius: 10px;
  }
  .news-detail__title {
    font-size: 26px;
  }
}

.product {
  padding: 80px 0;
  background: var(--bg-soft);
}

.product-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  background: #fff;
  border-radius: var(--br);
  padding: 40px;
}

/* LEFT */
.product-left h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--green);
}

.product-left p {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 18px;
}

/* TAGS */
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.product-bottom-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.product-tags span {
  padding: 8px 14px;
  background: #eef2f4;
  border-radius: 20px;
  font-size: 16px;
  color: var(--blue-dark);
}

/* LINK */
.product-link {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  font-size: 18px;
  margin-top: 30px;
}

/* PRICE */
.product-bottom {
  display: flex;
  gap: 30px;
  flex-direction: column;
}

.product-label {
  font-size: 16px;
  color: #111;
}

.product-price {
  font-size: 26px !important;
  color: #333 !important;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.product-price span {
  font-size: 12px;
  color: #0f0f0f;
}

/* BUTTON */
.product-btn {
  padding: 14px 28px;
  background: var(--green);
  color: #fff;
  border-radius: var(--br-2);
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
  text-align: center;
}

.product-btn:hover {
  background: var(--orange);
}

.product-right {
  position: relative;
  overflow: hidden;
}

/* VIEWPORT */
.product-slider {
  overflow: hidden;
  border-radius: var(--br);
}

/* TRACK (ƏN VACİB) */
.product-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* SLIDE */
.product-track a {
  min-width: 100%;
  flex-shrink: 0;
}

.product-track img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}
.product-slider {
  overflow: hidden;
}

.product-track {
  display: flex;
}

.product-track a {
  width: 100%;
  flex-shrink: 0;
}
/* BUTTONS */
.product-prev,
.product-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  z-index: 2;
  font-size: 22px;
  transition: 0.3s;
}

.product-prev {
  left: 15px;
}
.product-next {
  right: 15px;
}

.product-prev:hover,
.product-next:hover {
  background: var(--green);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .title {
    font-size: 38px;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.1;
  }
  .adv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 992px) {
  .product-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    background: #fff;
    border-radius: var(--br);
    padding: 40px;
}
  .content {
    display: flex;
    gap: 10px;
    align-items: stretch;
    flex-direction: column;
  }
  .services-grid, .reviews-grid, .gallery-grid, .baths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 30px;
}
}

@media (max-width: 768px) {
    .product-box {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        background: #fff;
        border-radius: var(--br);
        padding: 20px;
    }
    .product-left h2 {
    font-size: 29px;
    margin-bottom: 40px;
    color: var(--green);
}
.product-track img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}
.product-bottom-top {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-direction: column;
}
.product-price {
    font-size: 26px !important;
    color: #333 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}
  .contacts-title {
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 40px;
}
  .services-grid, .reviews-grid, .gallery-grid, .baths-grid {
    display: grid;
    grid-template-columns: 1fr ;
    align-items: stretch;
    gap: 30px;
    .service-name {
    position: absolute;
    left: 25px;
    bottom: 25px;
    color: white;
    font-size: 20px;
    font-weight: 500;
}
}
  .adv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .card p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    transition: 0.3s;
  }
  .contact-container {
    background: #000;
    border-radius: var(--br-2);
    padding: 30px 30px;
    display: flex;
    gap: 60px;
    align-items: center;
}
    .contact-left h2 {
        font-size: 24px;
    }
  .title, .reviews-header h2 {
    font-size: 24px;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
  }
  .text-box {
    letter-spacing: 0.04em;
    font-size: 18px;
    line-height: 150%;
    flex: 1.5;
    border-radius: var(--br-2);
    padding: 20px;
    line-height: 1.6;
    color: #000;
    box-shadow: inset 0px 0px 0px 2px #1111111a;
  }
}
