* {
  box-sizing: border-box;
}

body {
  background-color: #fff2e0;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

@font-face {
  font-family: "PPNeueCorp";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/PPNeueCorp/PPNeueCorp-CompactMedium.woff2")
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/Roboto/roboto-v50-latin-regular.woff2")
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url("/assets/fonts/Roboto/roboto-v50-latin-300.woff2") format("woff2");
  font-display: swap;
}

.promo-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.promo-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.promo-popup__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, #fff2e040, transparent 45%),
    rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.promo-popup.is-visible .promo-popup__backdrop {
  opacity: 1;
}

.promo-popup__card {
  position: relative;
  width: min(92vw, 560px);
  background: #fff2e0;
  color: #1a1a1d;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

.promo-popup.is-visible .promo-popup__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.promo-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 1px solid #1a1a1d1a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 2;
}

.promo-popup__close:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.promo-popup__close img {
  width: 18px;
  height: 18px;
}

.promo-popup__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.promo-popup__content {
  padding: 1.8rem 2rem 2rem;
  display: grid;
  gap: 0.6rem;
}

.promo-popup__content h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "PPNeueCorp", sans-serif;
  color: #1a1a1d;
}

.promo-popup__content p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 200;
  color: #1a1a1d;
}

.promo-popup__cta {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  background: #1a1a1d;
  color: #fff2e0;
  border: none;
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
  font-weight: 200;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.promo-popup__cta img {
  width: 10px;
  height: auto;
  margin-top: 1px;
}

.promo-popup__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .promo-popup__card {
    width: 100%;
  }

  .promo-popup__image img {
    height: 200px;
  }

  .promo-popup__content {
    padding: 1.4rem 1.5rem 1.6rem;
  }

  .promo-popup__content h3 {
    font-size: 1.5rem;
  }

  .promo-popup__content p {
    font-size: 1rem;
  }
}

.holiday-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  z-index: 1250;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.holiday-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.holiday-popup__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, #fff2e040, transparent 45%),
    rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.holiday-popup.is-visible .holiday-popup__backdrop {
  opacity: 1;
}

.holiday-popup__card {
  position: relative;
  width: min(94vw, 620px);
  background: linear-gradient(135deg, #fff9f1 0%, #e7f3ef 100%);
  color: #1a1a1d;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #34656d26;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s ease;
}

.holiday-popup__card::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 60%;
  background: radial-gradient(circle at 30% 40%, #34656d33, transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}

.holiday-popup.is-visible .holiday-popup__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.holiday-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid #1a1a1d1a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 2;
}

.holiday-popup__close:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.holiday-popup__close img {
  width: 18px;
  height: 18px;
}

.holiday-popup__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #34656d;
  color: #fff2e0;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: absolute;
  top: 16px;
  left: 16px;
  box-shadow: 0 12px 30px rgba(52, 101, 109, 0.25);
  z-index: 1;
}

.holiday-popup__content {
  position: relative;
  padding: 2.6rem 2.2rem 2.2rem;
  display: grid;
  gap: 0.8rem;
}

.holiday-popup__eyebrow {
  margin: 0;
  font-size: 0.95rem;
  color: #34656d;
  font-weight: 500;
}

.holiday-popup__content h3 {
  font-size: 1.9rem;
  font-weight: 500;
  font-family: "PPNeueCorp", sans-serif;
  color: #1a1a1d;
  margin-bottom: 0;
}

.holiday-popup__content p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 200;
  color: #1a1a1d;
  line-height: 1.55;
}

.holiday-popup__cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 0.5rem;
}

.holiday-popup__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: #1a1a1d;
  color: #fff2e0;
  border: none;
  border-radius: 12px;
  padding: 0.95rem 1.35rem;
  font-size: 1rem;
  font-weight: 200;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.holiday-popup__cta img {
  width: 10px;
  height: auto;
  margin-top: 1px;
}

.holiday-popup__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.holiday-popup__note {
  font-size: 0.95rem;
  color: #1a1a1dbf;
  font-weight: 100;
  text-align: center;
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0.8rem 2.2rem 0.8rem 2.2rem;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #fff2e080;
  transition:
    top 0.4s ease,
    background-color 0.3s ease;
}

.header-desktop.scrolled {
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.header-desktop nav {
  display: flex;
  justify-content: space-between;
}

.header-desktop .nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.2rem;
}

.header-desktop .nav-link {
  font-size: 1.1rem;
  font-weight: 100;
  color: #fff2e0;
  text-decoration: none;
}

.nav-btn {
  background-color: #34656d;
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  padding: 0.8rem 1.4rem;
  font-family: "Roboto", sans-serif !important;
  color: #fff2e0;
  font-size: 1rem;
  font-weight: 100 !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.nav-btn img {
  margin-top: 2px;
  width: 10px;
  height: auto;
}

.mobile-header {
  display: none;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line {
  background-color: #fff2e0;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #fff2e0;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #fff2e0;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  display: flex;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1.4rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 15%;
  left: 1.4rem;
}

.menu-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.7rem;
  font-weight: 200;
  text-decoration: none;
  padding: 0.4rem 0;
  color: #1a1a1d;
}

.menu-bottom {
  position: absolute;
  bottom: 2rem;
  left: 4%;
}

.vertical-bar {
  color: #1a1a1d;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}

main .hero {
  position: relative;
  width: 100%;
  height: 100%;
}

main .img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.scroll-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 20%;
  filter: brightness(40%);
}

.header-img {
  filter: brightness(45%) !important;
}

.hero-text {
  position: absolute;
  bottom: 20%;
  left: 6rem;
  right: 6rem;
  z-index: 2;
  padding: 5% 0 5% 0;
}

h1 {
  font-family: "PPNeueCorp", sans-serif;
  color: #fff2e0;
  font-weight: 500;
  font-size: 4rem;
  line-height: 4rem;
  margin-top: 0;
  margin-bottom: 0;
  width: 40%;
}

.hero-text p {
  color: #fff2e0;
  font-weight: 100;
  font-size: 1.2rem;
  width: 45%;
  margin-top: 1.2rem;
}

.hero-btn-layout {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.hero-btn {
  background-color: #34656d;
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  padding: 0.8rem 1.4rem;
  font-family: "Roboto", sans-serif !important;
  color: #fff2e0;
  font-size: 1rem;
  font-weight: 100 !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition:
    background-color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95),
    color 0.2s ease;
}

.hero-btn:hover {
  background-color: #fff2e0;
  color: #1a1a1d;
  font-weight: 200;
}

.hero-btn:hover img {
  filter: invert(80%);
}

.hero-btn img {
  margin-top: 2px;
  width: 10px;
  height: auto;
  transition: filter 0.25s ease;
}

.hero-btn-layout a {
  color: #fff2e0;
  font-weight: 100;
  text-decoration: 1px underline;
  text-underline-offset: 3px;
}

.hero-btn-layout a img {
  width: 10px;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.hero-btn-layout a:hover {
  text-decoration: none;
}

.hero-btn-layout a:hover img {
  transform: rotate(225deg);
}

.scroll-disc {
  position: absolute;
  bottom: 0;
  right: 6rem;
  z-index: 2;
  overflow: hidden !important;
  display: flex;
  gap: 2px;
}

.scroll-disc p {
  color: #fff2e0;
  font-weight: 100;
  font-size: 0.9rem;
}

.scroll-disc img {
  width: 10px;
  height: auto;
}

.intro-section {
  margin: 6rem;
}

.line-top {
  width: 100%;
  height: 1px;
  background-color: #1a1a1d;
  margin-bottom: 1.8rem;
}

.intro-header {
  display: flex;
  justify-content: space-between;
}

.intro-header h2 {
  color: #1a1a1d;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  width: 70%;
  margin-top: 0;
  font-family: "PPNeueCorp", sans-serif;
  margin-bottom: 0;
}

.shuffle {
  font-size: 0.9rem;
  font-weight: 200;
  color: #1a1a1d;
}

.shuffle-text.typing {
  animation: blinkCursor 0.8s steps(2, start) infinite;
}

@keyframes blinkCursor {
  0%,
  100% {
    border-color: transparent;
  }
  50% {
    border-color: #fff2e0;
  }
}

.intro-text p {
  font-size: 1.2rem;
  font-weight: 100;
  color: #1a1a1d;
  width: 70%;
}

.intro-btn-layout {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
}

.intro-btn {
  background-color: #34656d;
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  padding: 0.8rem 1.4rem;
  font-family: "Roboto", sans-serif !important;
  color: #fff2e0;
  font-size: 1rem;
  font-weight: 100 !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition:
    background-color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95),
    color 0.2s ease;
}

.intro-btn:hover {
  background-color: #1a1a1d;
  color: #fff2e0;
  font-weight: 200;
}

.intro-btn img {
  margin-top: 2px;
  width: 10px;
  height: auto;
}

.intro-btn-layout a {
  color: #1a1a1d;
  font-weight: 100;
  text-decoration: 1px underline;
  text-underline-offset: 3px;
}

.intro-btn-layout a:hover {
  text-decoration: none;
}

.intro-btn-layout a img {
  width: 10px;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.intro-btn-layout a:hover img {
  transform: rotate(225deg);
}

.services-section {
  margin: 6rem 0 0 0;
  background-color: #2f5755;
  padding: 8rem 6rem 6rem 6rem;
  border-radius: 45px 45px 0 0;
}

.treatment-header h2 {
  color: #fff2e0;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin: 0;
  font-family: "PPNeueCorp", sans-serif;
}

.treatment-header p {
  color: #fff2e0;
  font-weight: 100;
  font-size: 1.2rem;
}

.treatment-wrapper {
  width: 100%;
}

.treatment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d9e9cf;
  cursor: pointer;
  padding: 1rem 0;
  transition: border-color 0.1s ease;
}

.treatment-item h3 {
  color: #fff2e0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6rem;
  font-family: "PPNeueCorp", sans-serif;
}

.treatment-intro {
  font-size: 1.2rem;
  color: #fff2e0;
  font-weight: 100;
  margin-top: 0.5rem;
}

.treatment-icon {
  border: 2px solid #fff2e0;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.treatment-icon:hover {
  background: #fff2e022;
}

.treatment-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.treatment-content.open {
  opacity: 1;
  border-bottom: 1px solid #d9e9cf;
}

.treatment-inner-header {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
}

.treatment-inner-header h4 {
  color: #fff2e0;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-family: "PPNeueCorp", sans-serif;
  margin: 0 0 1rem 0;
}

.treatment-inner-header p {
  color: #fff2e0;
  font-weight: 300 !important;
  font-size: 1.4rem !important;
  margin-top: 0;
}

.treatment-inner-item {
  margin-bottom: 2rem;
}

.treatment-inner-item p {
  color: #fff2e0;
  font-weight: 100;
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.treatment-inner-item a {
  color: #fff2e0;
  font-weight: 100;
  font-size: 1.2rem;
  text-decoration: 1px underline;
  text-underline-offset: 3px;
}

.treatment-item[aria-expanded="true"] {
  border-bottom-color: transparent;
}

.treatment-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  border-bottom: none;
  transition: all 0.3s ease;
  padding: 0 0 0 1rem;
}

.treatment-content.open {
  opacity: 1;
  border-bottom: 1px solid #d9e9cf;
}

.treatment-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 4rem;
}

.treatment-btn {
  background-color: #fff2e0;
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  padding: 0.8rem 1.4rem;
  font-family: "Roboto", sans-serif !important;
  color: #1e201e;
  font-size: 1rem;
  font-weight: 200 !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition:
    background-color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95),
    color 0.2s ease;
}

.treatment-btn:hover {
  background-color: #fff2e0;
  color: #1a1a1d;
  font-weight: 200;
}

.treatment-btn:hover img {
  filter: invert(80%);
}

.treatment-btn img {
  margin-top: 2px;
  width: 10px;
  height: auto;
  transition: filter 0.25s ease;
}

.treatment-cta a {
  color: #fff2e0;
  font-weight: 100;
  text-decoration: 1px underline;
  text-underline-offset: 3px;
}

.treatment-cta a img {
  width: 10px;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.treatment-cta a:hover {
  text-decoration: none;
}

.treatment-cta a:hover img {
  transform: rotate(225deg);
}

.img-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh + 6rem);
  overflow: hidden;
  width: 100%;
}

.img-section .middle-img {
  position: relative;
  top: -6rem;
  width: 100%;
  height: 100%;
}

.img-section .img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.scroll-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: brightness(50%);
}

.middle-text {
  position: absolute;
  bottom: 4rem;
  left: 6rem;
  right: 6rem;
  z-index: 2;
  padding: 5% 0 5% 0;
}

.middle-text h2 {
  color: #fff2e0;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin: 0;
  font-family: "PPNeueCorp", sans-serif;
}

.middle-text p {
  color: #fff2e0;
  font-weight: 100;
  font-size: 1.2rem;
  width: 45%;
  margin-top: 0.8rem;
}

.middle-btn-layout {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.middle-btn-layout a {
  color: #fff2e0;
  font-weight: 100;
  text-decoration: 1px underline;
  text-underline-offset: 3px;
}

.middle-btn-layout a img {
  width: 10px;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.middle-btn-layout a:hover {
  text-decoration: none;
}

.middle-btn-layout a:hover img {
  transform: rotate(225deg);
}

.review-section {
  margin: 0 6rem 6rem 6rem;
}

.review-header h2 {
  color: #1a1a1d;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin: 0;
  width: 70%;
  font-family: "PPNeueCorp", sans-serif;
}

.review-header p {
  font-size: 1.2rem;
  font-weight: 100;
  color: #1a1a1d;
  width: 70%;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.stars {
  display: flex;
  gap: 1px;
}

.stars img {
  width: 20px;
}

.review-stars p {
  margin: 0;
  font-size: 1rem;
}

.reviews-layout {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
  align-items: flex-start;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  touch-action: auto;
  padding-bottom: 45px;
}

.review-item {
  position: relative;
  background: #fdebd0;
  box-shadow:
    0 77px 22px 0 rgba(0, 0, 0, 0),
    0 50px 20px 0 rgba(0, 0, 0, 0.01),
    0 28px 17px 0 rgba(0, 0, 0, 0.05),
    0 12px 12px 0 rgba(0, 0, 0, 0.09),
    0 3px 7px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem 1.3rem 1.5rem 1.3rem;
  width: 330px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  left: 1.3rem;
}

.review-count {
  position: absolute;
  top: 1rem;
  right: 1.3rem;
  display: flex;
  align-items: center;
  gap: 1px;
}

.review-count img {
  width: 19px;
  height: auto;
}

.review-text {
  margin-top: 2rem;
}

.review-text p {
  font-size: 1.1rem;
  font-weight: 200;
  color: #1a1a1d;
}

.author {
  display: flex;
  align-items: center;
  gap: 6px;
}

.author p {
  margin: 0;
  color: #1a1a1d;
  font-weight: 300;
}

.author img {
  width: 40px;
}

.author-disclaimer {
  color: #65625e !important;
  font-weight: 200;
}

.slider-buttons-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: calc(2rem - 45px);
}

.reviews-layout::-webkit-scrollbar {
  display: none;
}
.reviews-layout {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews-layout.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

/* Mobile: softer snapping to reduce axis lock conflicts */
@media (max-width: 768px) {
  .reviews-layout {
    scroll-snap-type: x proximity;
  }
}

.next-slider,
.prev-slider {
  background: transparent;
  border: 1px solid #1e201e;
  border-radius: 2px;
  cursor: pointer;
  height: 44px;
  width: 74px;
}

.next-slider img,
.prev-slider img {
  width: 20px;
}

.gallery-section {
  margin: 4rem 6rem 6rem 6rem;
}

.gallery-section h2 {
  color: #1a1a1d;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin: 0;
  width: 70%;
  font-family: "PPNeueCorp", sans-serif;
}

.gallery-section p {
  font-size: 1.2rem;
  font-weight: 100;
  color: #1a1a1d;
  width: 70%;
}

.gallery-layout {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
}

.img-large {
  width: 50%;
  height: 800px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-small {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 50%;
}

.img-small-item {
  width: 100%;
  height: calc(400px - 0.6rem);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.img-small-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nails-img {
  object-position: 50% 94%;
}

.gallery-btn-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 4rem;
}

.gallery-btn {
  background-color: #34656d;
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  padding: 0.8rem 1.4rem;
  font-family: "Roboto", sans-serif !important;
  color: #fff2e0;
  font-size: 1rem;
  font-weight: 200 !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition:
    background-color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95),
    color 0.2s ease;
}

.gallery-btn:hover {
  background-color: #1a1a1d;
  color: #fff2e0;
  font-weight: 200;
}

.gallery-btn img {
  width: 10px;
  height: auto;
  transition: filter 0.25s ease;
}

.gallery-btn-layout a {
  color: #1a1a1d;
  font-weight: 100;
  text-decoration: 1px underline;
  text-underline-offset: 3px;
}

.gallery-btn-layout a img {
  width: 10px;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.gallery-btn-layout a:hover {
  text-decoration: none;
}

.gallery-btn-layout a:hover img {
  transform: rotate(225deg);
}

.faq-section {
  margin: 6rem;
}

.faq-section h2 {
  color: #1a1a1d;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin: 0;
  width: 70%;
  font-family: "PPNeueCorp", sans-serif;
}

.faq-section p {
  font-size: 1.2rem;
  font-weight: 100;
  color: #1a1a1d;
  width: 70%;
  margin-bottom: 0;
}

.faq-item {
  border-bottom: 1px solid #1a1a1d;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #1a1a1d;
  font-size: 1.1rem;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.faq-icon {
  width: 20px;
  height: 20px;
  fill: #1a1a1d;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.faq-item h4 {
  color: #1a1a1d;
  font-family: "Roboto", sans-serif !important;
  font-weight: 200;
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem 0;
}

.faq-answer p {
  color: #1a1a1d;
  font-weight: 100;
  font-size: 1.2rem;
  padding: 0 0 20px;
  margin-top: 0;
}

.faq-item a {
  color: #34656d;
  text-underline-offset: 3px;
  text-decoration: 1px solid underline;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-btn-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 4rem;
}

.faq-btn-layout a {
  color: #1a1a1d;
  font-weight: 100;
  text-decoration: 1px underline;
  text-underline-offset: 3px;
}

.faq-btn-layout a img {
  width: 10px;
  height: auto;
  transition: transform 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.faq-btn-layout a:hover {
  text-decoration: none;
}

.faq-btn-layout a:hover img {
  transform: rotate(225deg);
}

.blog-section {
  margin: 6rem;
}

.blog-intro h2 {
  color: #1a1a1d;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin: 0;
  width: 70%;
  font-family: "PPNeueCorp", sans-serif;
}

.blog-intro p {
  font-size: 1.2rem;
  font-weight: 100;
  color: #1a1a1d;
  width: 70%;
  margin-bottom: 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.blog-item {
  width: 100%;
  height: 560px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.blog-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 250, 250, 0.08) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.blog-item:hover .blog-img img {
  transform: scale(1.09);
}

.blog-img {
  width: 100%;
  height: 100%;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
  transition: all 0.3s ease-in-out;
}

.blog-text {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
  z-index: 2;
}

.blog-text h3 {
  color: #fff2e0;
  font-family: "PPNeueCorp", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.7rem;
  margin-bottom: 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.blog-text p {
  color: #fff2e0 !important;
  width: 100%;
  font-weight: 200;
  font-size: 1.1rem;
  margin-top: 0;
}

.contact-section {
  margin: 6rem;
}

.contact-section h2 {
  color: #1a1a1d;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin: 0;
  width: 70%;
  font-family: "PPNeueCorp", sans-serif;
}

.contact-layout {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.contact-layout p {
  font-size: 1.2rem;
  font-weight: 100;
  color: #1a1a1d;
  width: 70%;
  margin-bottom: 0;
}

.map-wrapper {
  width: 100%;
  height: 450px;
  position: relative;
  margin-top: 19.2px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

#map {
  width: 100%;
  height: 100%;
}

.overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay-img img {
  filter: brightness(50%);
  object-fit: cover;
  object-position: 100% 20%;
  width: 100%;
  height: 450px;
}

#map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff2e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
}

#map-overlay p {
  font-size: 1.1rem;
  font-weight: 100;
  margin-bottom: 20px;
  padding: 0 20px;
  color: #fff2e0;
}

#map-overlay a {
  font-size: 1rem;
  font-weight: 100;
  color: #fff2e0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#accept-map {
  width: 140px;
  height: 45px;
  font-size: 1rem;
  font-weight: 200;
  font-family: "Inter", sans-serif !important;
  background-color: #fff2e0;
  color: #080808;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

.contact-info {
  margin-top: 2rem;
  width: 80%;
}

.contact-info ul {
  padding: 0;
}

.contact-info ul li {
  list-style: none;
  display: flex;
  align-items: center;
  line-height: 2rem;
  gap: 7px;
}

.contact-info ul li a {
  font-weight: 100;
  color: #1a1a1d;
  font-size: 1.2rem;
  text-decoration: none;
}

.contact-info ul li img {
  width: 16px;
  height: auto;
}

.contact-line {
  width: 80%;
  background-color: #1a1a1d80;
  height: 0.5px;
}

.adress-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
  width: 80%;
}

.adress-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.adress-item img {
  margin-top: 2px;
}

.adress-item p {
  margin-top: 0 !important;
  width: 100%;
}

.adress-item a {
  font-weight: 100;
  color: #1a1a1d;
  font-size: 1.2rem;
  text-decoration: none;
}

.opening-hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}

.newsletter-section {
  display: flex;
  justify-content: center;
  margin: 8rem 6rem;
}

.newsletter-text {
  width: 40%;
  z-index: 2;
}

.newsletter-text h2 {
  color: #fff2e0;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  font-family: "PPNeueCorp", sans-serif;
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.newsletter-text h3 {
  color: #afafaf;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.7rem;
  font-family: "PPNeueCorp", sans-serif;
  margin-top: 0;
}

.newsletter-text p {
  color: #fff2e0 !important;
  width: 100%;
  font-weight: 200;
  font-size: 1.1rem;
  margin-top: 0;
}

.newsletter-wrapper {
  display: flex;
  justify-content: space-between;
  background-color: #2f5755;
  padding: 2rem;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.newsletter-img {
  position: absolute;
  right: 6rem;
  top: -2rem;
}

.newsletter-img img {
  width: 400px;
}

.newsletter-img-second {
  position: absolute;
  left: 2rem;
  top: -1rem;
  z-index: 1;
}

.newsletter-img-second img {
  width: 200px;
}

.layout_form {
  background: none;
  padding: 0;
  border-radius: 0;
  backdrop-filter: none;
  margin-top: 2rem;
}

.layout_form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff2e0;
  opacity: 0.8;
  margin-bottom: 0.4rem;
}

.layout_form input[type="email"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px 0 0 12px;
  padding: 0.9rem 1rem;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 200;
  color: #fff2e0;
  transition: all 0.25s ease;
}

.layout_form input::placeholder {
  color: rgba(255, 242, 224, 0.5);
}

.layout_form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.18);
}

.newsletter-input-row {
  display: flex;
  align-items: center;
  width: 100%;
  height: 58px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
}

.newsletter-input-row input {
  flex: 1;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 1.4rem;
  font-size: 0.95rem;
  color: #fff2e0;
}

.newsletter-input-row input::placeholder {
  color: rgba(255, 242, 224, 0.6);
}

.newsletter-input-row input:focus {
  outline: none;
}

.newsletter-submit {
  height: 100%;
  padding: 0 2rem;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  background: #fff2e0;
  color: #2f5755;
  font-family: "PPNeueCorp", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-submit:hover {
  background: #ffffff;
}

.newsletter-submit:active {
  transform: scale(0.97);
}

.newsletter-input-row:focus-within {
  background: rgba(255, 255, 255, 0.28);
}

.clever_form_error {
  border-color: #ffb3a7 !important;
}

.g-recaptcha {
  margin-top: 2rem;
}

footer {
  background-color: #1a1a1d;
  position: relative;
  padding: 2rem 6rem 0 6rem;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/icons/logo-footer.svg") no-repeat;
  background-size: min(85vmin, 900px);
  z-index: 0;
  pointer-events: none;
}

.footer-layout {
  position: relative;
  z-index: 1;
  width: 80%;
  display: flex;
  justify-content: space-between;
}

.footer-layout h4 {
  font-family: "PPNeueCorp", sans-serif;
  color: #585861;
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0;
}

.footer-layout ul {
  padding: 0;
  margin: 0;
}

.footer-layout ul li {
  list-style: none;
  line-height: 1.3rem;
}

.footer-layout ul li a {
  color: #fff2e0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 100;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
}

.social-link {
  margin-bottom: 0.5rem;
}

.footer-bottom-layout {
  position: relative;
  z-index: 1;
  border-top: 1px solid #fff2e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #fff2e0;
  font-weight: 100;
  font-size: 0.9rem;
  margin: 0.8rem 0;
}

.footer-bottom a {
  color: #fff2e0;
  font-weight: 100;
  font-size: 0.9rem;
  margin: 0.8rem 0;
  text-decoration: none;
}

@media (max-width: 768px) {
  .holiday-popup__card {
    width: 100%;
  }

  .holiday-popup__content {
    padding: 1rem;
  }

  .holiday-popup__content h3 {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }

  .holiday-popup__content p {
    font-size: 1rem;
  }
  .holiday-popup__cta {
    padding: 0.95rem 1rem;
  }
  .holiday-popup__badge {
    font-size: 0.85rem;
  }
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-text {
    left: 1rem;
    right: 1rem;
    bottom: 15%;
    padding: 0;
  }
  h1 {
    font-size: 2rem;
    line-height: 2rem;
    width: 100%;
  }
  .hero-text p {
    width: 100%;
    font-size: 1.1rem;
  }
  .rmv-mobile {
    display: none;
  }
  .hero-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .hero-btn img {
    width: 9px;
    height: auto;
  }
  .hero-btn-layout a {
    font-size: 1rem;
  }
  .hero-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .scroll-disc {
    right: 1rem;
  }
  .intro-section {
    margin: 6rem 1rem 2rem 1rem;
  }
  .shuffle {
    display: none;
  }
  .intro-header h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .intro-text p {
    width: 100%;
    font-size: 1.1rem;
  }
  .intro-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .intro-btn img {
    width: 9px;
    height: auto;
  }
  .intro-btn-layout a {
    font-size: 1rem;
  }
  .intro-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .services-section {
    margin: 4rem 0 0 0;
    padding: 4rem 1rem;
    border-radius: 15px 15px 0 0;
  }
  .treatment-header h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .treatment-content {
    padding: 0;
  }
  .treatment-intro {
    font-size: 1.1rem;
  }
  .treatment-inner-item p {
    font-size: 1.1rem;
  }
  .treatment-inner-item a {
    font-size: 1.1rem;
  }
  .treatment-icon {
    display: none;
  }
  .treatment-header p {
    font-size: 1.1rem;
  }
  .treatment-inner-header p {
    font-size: 1.2rem !important;
  }
  .treatment-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .treatment-cta a {
    font-size: 1rem;
  }
  .services-block h3 {
    font-size: 1.6rem;
  }
  .services-laoyut {
    grid-template-columns: 1fr;
  }
  .service-item h4 {
    font-size: 1.2rem;
  }
  .services-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .services-btn img {
    width: 9px;
    height: auto;
  }
  .services-btn-layout a {
    font-size: 1rem;
  }
  .services-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .img-section {
    height: 100vh;
  }
  .img-section .middle-img {
    top: 0;
  }
  .middle-text {
    left: 1rem;
    right: 1rem;
  }
  .middle-text h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .middle-text p {
    width: 100%;
    font-size: 1.1rem;
  }
  .middle-btn-layout a {
    font-size: 1rem;
  }
  .middle-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .review-section {
    margin: 6rem 1rem;
  }
  .review-header h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .review-header p {
    width: 100%;
    font-size: 1.1rem;
  }
  .next-slider,
  .prev-slider {
    height: 40px;
    width: 68px;
  }
  .gallery-section {
    margin: 6rem 1rem;
  }
  .gallery-section h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .gallery-section p {
    width: 100%;
    font-size: 1.1rem;
  }
  .gallery-layout {
    flex-direction: column-reverse;
  }
  .img-large {
    width: 100%;
    height: 400px;
  }
  .img-small {
    width: 100%;
    flex-direction: column-reverse;
  }
  .img-small-item {
    height: 400px;
  }
  .gallery-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .gallery-btn img {
    width: 9px;
    height: auto;
  }
  .gallery-btn-layout a {
    font-size: 1rem;
  }
  .gallery-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .faq-section {
    margin: 6rem 1rem;
  }
  .faq-section h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .faq-section p {
    width: 100%;
    font-size: 1.1rem;
  }
  .faq-item h4 {
    font-size: 1.1rem;
  }
  .faq-btn-layout {
    margin-top: 2rem;
  }
  .gallery-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .gallery-btn img {
    width: 9px;
    height: auto;
  }
  .faq-btn-layout a {
    font-size: 1rem;
  }
  .faq-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .blog-section {
    margin: 6rem 1rem;
  }
  .blog-intro h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .blog-intro p {
    width: 100%;
    font-size: 1.1rem;
  }
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .contact-section {
    margin: 6rem 1rem;
  }
  .contact-section h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .contact-section p {
    width: 100%;
    font-size: 1.1rem;
  }
  .contact-layout {
    flex-direction: column;
    gap: 0;
  }
  .adress-info,
  .contact-info {
    width: 100%;
  }
  .contact-line {
    width: 100%;
  }
  .opening-hours {
    gap: 0.5rem 1rem;
  }
  .newsletter-section {
    margin: 6rem 1rem;
  }
  .newsletter-wrapper {
    padding: 2rem 1rem;
    flex-direction: column;
    border-radius: 0;
  }
  .newsletter-text {
    width: 100%;
  }
  .layout_form {
    margin-top: 1.2rem;
  }
  .newsletter-img {
    display: none;
  }
  .newsletter-img-second {
    left: -1rem;
    top: -0.8rem;
  }
  .newsletter-submit {
    padding: 0 1.2rem;
  }
  footer {
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-bottom-layout {
    flex-direction: column;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-text {
    left: 1rem;
    right: 1rem;
    bottom: 15%;
    padding: 0;
  }
  h1 {
    font-size: 2rem;
    line-height: 2rem;
    width: 100%;
  }
  .hero-text p {
    width: 100%;
    font-size: 1.1rem;
  }
  .rmv-mobile {
    display: none;
  }
  .hero-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .hero-btn img {
    width: 9px;
    height: auto;
  }
  .hero-btn-layout a {
    font-size: 1rem;
  }
  .hero-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .scroll-disc {
    right: 1rem;
  }
  .intro-section {
    margin: 6rem 1rem 2rem 1rem;
  }
  .shuffle {
    display: none;
  }
  .intro-header h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .intro-text p {
    width: 100%;
    font-size: 1.1rem;
  }
  .intro-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .intro-btn img {
    width: 9px;
    height: auto;
  }
  .intro-btn-layout a {
    font-size: 1rem;
  }
  .intro-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .services-section {
    margin: 4rem 0 0 0;
    padding: 4rem 1rem;
    border-radius: 15px 15px 0 0;
  }
  .services-intro h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .services-intro p {
    font-size: 1.1rem;
  }
  .services-block h3 {
    font-size: 1.6rem;
  }
  .services-laoyut {
    grid-template-columns: 1fr 1fr;
  }
  .service-item h4 {
    font-size: 1.2rem;
  }
  .services-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .services-btn img {
    width: 9px;
    height: auto;
  }
  .services-btn-layout a {
    font-size: 1rem;
  }
  .services-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .img-section {
    height: 100vh;
  }
  .img-section .middle-img {
    top: 0;
  }
  .middle-text {
    left: 1rem;
    right: 1rem;
  }
  .middle-text h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .middle-text p {
    width: 100%;
    font-size: 1.1rem;
  }
  .middle-btn-layout a {
    font-size: 1rem;
  }
  .middle-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .review-section {
    margin: 6rem 1rem;
  }
  .review-header h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .review-header p {
    width: 100%;
    font-size: 1.1rem;
  }
  .gallery-section {
    margin: 6rem 1rem;
  }
  .gallery-section h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .gallery-section p {
    width: 100%;
    font-size: 1.1rem;
  }
  .gallery-layout {
    flex-direction: column-reverse;
  }
  .img-large {
    width: 100%;
    height: 400px;
  }
  .img-small {
    width: 100%;
    flex-direction: column-reverse;
  }
  .img-small-item {
    height: 400px;
  }
  .gallery-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .gallery-btn img {
    width: 9px;
    height: auto;
  }
  .gallery-btn-layout a {
    font-size: 1rem;
  }
  .gallery-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .faq-section {
    margin: 6rem 1rem;
  }
  .faq-section h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .faq-section p {
    width: 100%;
    font-size: 1.1rem;
  }
  .faq-item h4 {
    font-size: 1.1rem;
  }
  .faq-btn-layout {
    margin-top: 2rem;
  }
  .gallery-btn {
    font-size: 1rem;
    gap: 2px;
    padding: 0.7rem 1.1rem;
  }
  .gallery-btn img {
    width: 9px;
    height: auto;
  }
  .faq-btn-layout a {
    font-size: 1rem;
  }
  .faq-btn-layout a img {
    width: 9px;
    height: auto;
  }
  .blog-section {
    margin: 6rem 1rem;
  }
  .blog-intro h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .blog-intro p {
    width: 100%;
    font-size: 1.1rem;
  }
  .blog-layout {
    grid-template-columns: 1fr 1fr;
  }
  .contact-section {
    margin: 6rem 1rem;
  }
  .contact-section h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .contact-section p {
    width: 100%;
    font-size: 1.1rem;
  }
  .contact-layout {
    flex-direction: column;
    gap: 0;
  }
  .adress-info,
  .contact-info {
    width: 100%;
  }
  .contact-line {
    width: 100%;
  }
  .opening-hours {
    gap: 0.5rem 1rem;
  }
  .newsletter-section {
    margin: 6rem 1rem;
  }
  .newsletter-wrapper {
    padding: 2rem 1rem;
    flex-direction: column;
    border-radius: 0;
  }
  .newsletter-text {
    width: 70%;
  }
  .layout_form {
    margin-top: 1.2rem;
  }
  .newsletter-img {
    right: -2rem;
  }
  .newsletter-img img {
    width: 300px;
  }
  .newsletter-img-second {
    left: -1rem;
    top: -0.8rem;
  }
  .newsletter-submit {
    padding: 0 1.2rem;
  }
  footer {
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-bottom-layout {
    flex-direction: column;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .mobile-header nav {
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  .hero-text {
    left: 5rem;
    right: 5rem;
    bottom: 16%;
  }
  h1 {
    font-size: 3.4rem;
    line-height: 3.4rem;
    width: 50%;
  }
  .hero-text p {
    width: 50%;
    margin-top: 1rem;
  }
  .rmv-mobile {
    display: none;
  }
  .scroll-disc {
    right: 5rem;
  }
  .intro-section {
    margin: 6rem 5rem;
  }
  .services-section {
    padding: 4rem 5rem;
    border-radius: 35px 35px 0 0;
  }
  .middle-text {
    left: 5rem;
    right: 5rem;
  }
  .review-section {
    margin: 6rem 5rem;
  }
  .gallery-section {
    margin: 0 5rem 6rem 5rem;
  }
  .faq-section {
    margin: 6rem 5rem;
  }
  .blog-section {
    margin: 6rem 5rem;
  }
  .contact-section {
    margin: 6rem 5rem;
  }
  footer {
    padding: 2rem 5rem 0 5rem;
  }
}
