/* ==========================================================================  
   Variables
   ========================================================================== */
:root {
  --color-primary: #2a6f4e;
  --color-primary-rgb: 42, 111, 78;
  --color-secondary: #385c45;
  --color-light: #ffffff;
  --color-light-rgb: 255, 255, 255;
  --color-text: #402929;
  --bg-light: #f5f5f0;
  --spacer: 1rem;
  --radius: 0.5rem;
  --transition: 0.3s ease;
  --header-height: 64px;
  --font-main: "Inter", sans-serif;
  --spa-bg-color: #d4f0dd;
  --bg-edge-width: 8vw;
  --bg-transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* ==========================================================================  
   Base Styles
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
  background: var(--bg-light);
}

/* Language toggle */
body.lang-th .lang-en {
  display: none !important;
}
body.lang-th .lang-th {
  display: inline !important;
}
body.lang-en .lang-th {
  display: none !important;
}
body.lang-en .lang-en {
  display: inline !important;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--spacer);
}

.section {
  padding: calc(var(--spacer) * 4) 0;
  background: #fff;
}

/* ==========================================================================  
   Header Styles
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--spacer);
  display: flex;
  align-items: center;
  width: 100%;
}

.header__brand {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: var(--color-light);
  cursor: pointer;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--transition);
  padding: 0.5em 1em;
  font-size: 1.15rem;
  outline: none;
}

.header__brand:hover {
  background: rgba(255, 255, 255, 0.15);
}

.header__logo {
  width: 40px;
  height: auto;
  margin-right: 1rem;
}

.header__title {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
}

.header__spacer {
  flex: 1 1 auto;
}

.header__lang {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.lang-switch__btn {
  background: rgba(255, 255, 255, 0.14);
  border: 1.3px solid rgba(255, 255, 255, 0.19);
  border-radius: var(--radius);
  padding: 0.5em 1em;
  font-family: inherit;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all var(--transition);
}

.lang-switch__btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lang-switch__divider {
  margin: 0 0.25rem;
  opacity: 0.44;
}

.lang-switch__item {
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lang-switch__item--active {
  opacity: 1;
  font-weight: 700;
}

/* ==========================================================================  
   Off-canvas Navigation
   ========================================================================== */
.offcanvas-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--color-primary);
  transform: translateX(-100%);
  transition: transform var(--transition);
  z-index: 1100;
  padding: var(--spacer);
  display: flex;
  flex-direction: column;
}

.offcanvas-nav.open {
  transform: translateX(0);
}

.offcanvas-nav__close {
  background: none;
  border: none;
  color: var(--color-light);
  font-size: 1.5rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.offcanvas-nav__list {
  list-style: none;
  margin: var(--spacer) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offcanvas-nav__link {
  color: var(--color-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.12rem;
  border-radius: 1.2em;
  padding: 0.42em 1em;
  transition: background 0.18s;
  display: block;
}

.offcanvas-nav__link:hover {
  background: rgba(255, 255, 255, 0.09);
}

.offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(var(--color-primary-rgb), 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 1050;
}

.offcanvas-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================  
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__slideshow,
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__slide {
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: opacity 0.7s;
}

.hero__dark-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(22, 36, 30, 0.54);
  backdrop-filter: blur(5px);
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.14;
  margin-bottom: 0.17em;
}

.hero__text {
  margin: 0.7em 0 2em 0;
  font-size: 1.22rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* ==========================================================================  
   Button Styles
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1.09rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  border: none;
  outline: none;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-light);
}

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

.btn--secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  border: 2px solid #fff;
}

.btn--secondary:hover {
  background: #fff;
  border-color: var(--color-primary);
}

/* ==========================================================================  
   Trust Section
   ========================================================================== */
.trust {
  background: var(--bg-light);
  position: relative;
  z-index: 1;
  background-size: 100% 400px;
  background-repeat: no-repeat;
}

.trust__topcard {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 2px 18px rgba(42, 111, 78, 0.13);
  border-radius: 1.5rem;
  margin: 0 auto 2.7rem auto;
  padding: 2.1rem 1.5rem;
  max-width: 550px;
}

.trust__title {
  font-size: 2.2rem;
  color: var(--color-primary);
  text-align: center;
  margin: 0 0 0.6em 0;
}

.trust__subtitle {
  text-align: center;
  color: var(--color-secondary);
  font-size: 1.13rem;
  margin-bottom: 1.6rem;
}

.trust__brands {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem auto;
}

.trust__brand {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  display: flex;
  align-items: center;
  gap: 1.05rem;
  background: var(--color-light);
  padding: 1.2rem 1.5rem;
  border-radius: 1.25rem;
  border: 2px solid #e2efe7;
}

.trust__brand img {
  width: 48px;
  height: 48px;
}

.trust__brand-info {
  margin-left: 0.5rem;
}

.trust__rating {
  font-size: 1.24rem;
  font-weight: 600;
  margin: 0;
}

.trust__rating span {
  color: var(--color-primary);
  font-weight: 700;
}

.trust__source {
  font-size: 0.95rem;
  color: #7fa398;
  margin: 0;
}

.trust__reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacer);
  max-width: 960px;
  margin: 2rem auto 0;
  padding: 0 var(--spacer);
}

.trust__review-card {
  background: var(--color-light);
  border-radius: 1.15rem;
  box-shadow: 0 2px 12px rgba(42, 111, 78, 0.09);
  padding: 1.6rem 1.3rem;
  border: 1.8px solid #ddebe3;
}

.trust__review-header {
  display: flex;
  align-items: center;
  gap: 0.88rem;
  margin-bottom: 0.15rem;
}

.trust__review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #b9e6c9;
}

.trust__review-author {
  font-size: 1.09rem;
  font-weight: 600;
  color: var(--color-primary);
}

.trust__review-date {
  font-size: 0.93rem;
  color: #7fa398;
}

.trust__review-text {
  font-size: 1.03rem;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================  
   Section Headers
   ========================================================================== */
.boxed-title,
.section__title.boxed-title,
.massage__titlebox .section__title {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 1.3rem;
  box-shadow: 0 2px 12px rgba(42, 111, 78, 0.09);
  padding: 1.25rem 1.1rem;
  text-align: center;
  color: var(--color-primary);
  font-size: clamp(1.4rem, 4vw, 2.1rem); /* Responsive font size */
  font-weight: 700;
  margin: 0 auto 2.1rem auto;
  max-width: 440px;
  width: 90vw;
}

.boxed-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: #7fe6a7;
  border-radius: 2px;
  margin: 0.65rem auto 0;
  opacity: 0.36;
}

/* ==========================================================================  
   Highlights Section
   ========================================================================== */
.highlights {
  background: var(--bg-light);
  padding: 3.2rem 0 2.8rem 0;
  background-size: 100% 100%; /* Make background seamless */
}

.highlights__container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1rem;
}

.highlights__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(218px, 1fr));
  gap: 2.1rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 900px;
}

.highlights__item {
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: 0 2px 12px rgba(42, 111, 78, 0.09);
  padding: 1.7rem 1.2rem 1.4rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlights__icon-wrapper {
  width: 56px;
  height: 56px;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

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

.highlights__info {
  flex: 1;
}

.highlights__name {
  margin: 0 0 0.19rem 0;
  font-size: 1.09rem;
  font-weight: 600;
}

.highlights__desc {
  margin: 0;
  font-size: 0.99rem;
  color: #6d887c;
  line-height: 1.5;
}

/* ==========================================================================  
   Massage & Spa Section
   ========================================================================== */
.massage {
  background: var(--bg-light);
  padding: 4rem 0;
  background-size: 100% 100%; /* Make background seamless */
}

.massage__container {
  max-width: 960px;
  margin: 0 auto;
}

.massage__content {
  display: grid;
  grid-template-columns: 2fr minmax(200px, 1fr);
  gap: 2.2rem;
  align-items: stretch;
}

.massage__text {
  background: #fff;
  padding: 2.2rem 1.2rem;
  border-radius: 1.1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  color: #402929;
  line-height: 1.6;
}

.massage__info-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.massage__info-list li {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.massage__icon {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
}

.massage__images {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.2rem;
  justify-content: center;
}

.massage__images img {
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 3px solid #fff;
}

/* ==========================================================================  
   Rates Section
   ========================================================================== */
.rates {
  background: var(--bg-light);
  padding: 3.2rem 0 2.6rem 0;
  background-size: 100% 100%; /* Make background seamless */
}

.rates__cards {
  display: flex;
  justify-content: center;
  gap: 2.1rem;
  flex-wrap: wrap;
  max-width: 880px;
  margin: 0 auto;
}

.rates__card {
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: 0 2px 14px rgba(42, 111, 78, 0.08);
  padding: 2.1rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  flex: 1 1 220px;
  border: 2px solid #e3eee5;
}

.rates__card--best {
  border: 2.5px solid #67e79c;
  box-shadow: 0 6px 30px rgba(42, 200, 128, 0.13);
}

.rates__badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(100deg, #62e29d, #47c37e 90%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.33rem 1.1rem;
  border-radius: 2em;
}

.rates__period {
  font-size: 1.17rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.6em;
}

.rates__price {
  font-size: 1.44rem;
  font-weight: 600;
  color: var(--color-text);
}

/* ==========================================================================  
   Gallery Section
   ========================================================================== */
#gallery {
  padding: calc(var(--spacer) * 4) 0;
  background: var(--bg-light);
}

#gallery .section__title {
  margin-bottom: 2rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--spacer);
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 var(--spacer);
}

.gallery__thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery__thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.gallery__thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Lightbox Overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lightbox.active {
  display: flex;
}

.lightbox__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox__content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.lightbox__nav-button {
  background: var(--color-light);
  color: var(--color-primary);
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), color var(--transition);
}

.lightbox__nav-button:hover {
  background: var(--color-primary);
  color: var(--color-light);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.lightbox__prev {
  margin-right: auto;
}

.lightbox__next {
  margin-left: auto;
}

.lightbox__close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--color-primary);
  color: var(--color-light);
  border: none;
  font-size: 1.25rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

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

/* ==========================================================================  
   Video Section
   ========================================================================== */
.video {
  background: var(--bg-light);
}

.video__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background-color: #000;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.video__thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}

.video__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video__play-btn svg {
  fill: var(--color-primary);
}

.video__iframe {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  border: 0;
  max-width: 960px;
  margin: 2rem auto 0;
}

/* ==========================================================================  
   Location Section
   ========================================================================== */
.location {
  background: var(--bg-light);
  padding: 3rem 0;
}

.location__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location__content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 2rem;
}

.location__map-wrapper {
  flex: 1;
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.location__map {
  width: 100%;
  height: 100%;
  border: none;
}

.location__directions {
  flex: 1;
  background: var(--color-light);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location__welcome {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  color: var(--color-primary);
  text-align: center;
}

.location__text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.location__note {
  font-size: 1rem;
  color: #d32f2f; /* Красный для предупреждения */
  font-weight: 600;
  margin: 1.5rem 0 0 0;
  padding: 0.75rem;
  background: rgba(255, 235, 238, 0.5);
  border-left: 3px solid #d32f2f;
  border-radius: 0 4px 4px 0;
}

/* ==========================================================================  
   Places Section
   ========================================================================== */
.places {
  background: var(--bg-light);
}

.places__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacer);
}

.places__card {
  display: flex;
  flex-direction: column;
  background: var(--color-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.places__img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  background-color: #e0e0e0;
}

.places__img-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.places__info {
  padding: var(--spacer);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.places__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.places__desc {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* ==========================================================================  
   Contact Section
   ========================================================================== */
.contact {
  background: var(--bg-light);
  padding: 4rem 0;
}

.contact__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact__title {
  font-size: 2rem;
  color: #2a6f4e;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.contact__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #7fe6a7;
  margin: 1rem auto 0;
}

.contact__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  padding: 2rem 0;
}

.contact__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.contact__icon {
  width: 24px;
  height: 24px;
  fill: #2a6f4e;
}

.contact__text {
  font-size: 1.1rem;
  color: #333;
}

.contact__social {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.contact__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #2a6f4e;
  font-weight: 600;
  transition: opacity 0.3s;
}

.contact__social-link:hover {
  opacity: 0.8;
}

.contact__social-icon {
  width: 20px;
  height: 20px;
}

.contact__button-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact__button {
  background: #2a6f4e;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  min-width: 200px;
  text-align: center;
}

.contact__button:hover {
  background: #1e5a3f;
}


.contact__email-line {
  text-align: center;
  margin-block-end: 1rem;
  font-weight: 500;
  font-size: 1rem;
}

.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 700;
}

.contact__email:hover {
  text-decoration: underline;
}

.contact__icon--email {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

/* ==========================================================================  
   Footer
   ========================================================================== */
.footer-block {
  background: white;
  padding: 0;
  padding-bottom: 10px;
  border-radius: 1.3rem 1.3rem 1.3rem 1.3rem;
  box-shadow: 0 4px 24px rgba(111, 42, 94, 0.07);
  margin: 0 auto 2rem auto;
  max-width: 1140px;
}

.footer-block__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer__nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 700;
}

.footer__link {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.9rem;
  color: var(--color-text);
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
}

.footer__copy {
  font-size: 0.9rem;
  color: var(--color-text);
}

/* ==========================================================================  
   Adaptive Styles
   ========================================================================== */

@media (max-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .massage__content {
    grid-template-columns: 1fr;
  }
  .massage__images {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 1rem;
  }
  .massage__images img {
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .header__inner {
    padding: 0 0.75rem;
  }
  .header__logo {
    width: 32px;
    margin-right: 0.75rem;
  }
  .header__title {
    font-size: 1.25rem;
  }
  .lang-switch__btn {
    padding: 0.4em 0.8em;
    font-size: 0.9rem;
  }
  .offcanvas-nav__link {
    padding: 0.75em 1.25em;
    font-size: 1.1rem;
  }
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .video__wrapper {
    width: 100%;
    padding-bottom: 56.25%;
  }
  .location__content {
    flex-direction: column;
    gap: 1.5rem;
  }
  .location__map-wrapper,
  .location__directions {
    width: 100%;
    min-height: auto;
  }
  .places__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .trust__reviews {
    grid-template-columns: 1fr;
  }
  .highlights__list {
    grid-template-columns: 1fr;
  }

  .contact__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  .contact__details {
    width: 100%;
    text-align: center;
  }
  .contact__item {
    justify-content: center;
  }
  .contact__social {
    width: 100%;
    justify-content: center;
  }
  .contact__button {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 600px) {
  .header__inner {
    padding: 0 0.75rem;
  }
  .section {
    padding: 2rem 0;
  }
  .header {
    height: auto;
    padding: 0.5rem 0;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .trust__title {
    font-size: 1.6rem;
  }
  .trust__subtitle {
    font-size: 1rem;
  }
  .highlights__list {
    grid-template-columns: 1fr;
  }
  .rates__card {
    width: 100%;
  }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__box {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }
  .contact__details {
    gap: 1.2rem;
  }
  .contact__item {
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact__social {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .contact__button {
    max-width: 260px;
    margin-top: 0.5rem;
  }
  .footer-block__inner {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
  }
  .footer__nav {
    gap: 0.5rem;
  }
  .footer__link {
    padding: 0.4rem;
    font-size: 0.85rem;
  }
  .footer__copy {
    font-size: 0.85rem;
  }
  .modal__dialog {
    width: 95%;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
  .places__grid {
    grid-template-columns: 1fr;
  }
  .header__title {
    display: none;
  }
  .hero__title {
    font-size: 1.5rem;
  }
  .boxed-title {
    font-size: 1.3rem;
    padding: 1rem;
  }

  .contact__box {
    padding: 1.25rem 0.75rem;
  }
  .contact__social {
    flex-direction: column;
    align-items: center;
  }
  .contact__social-link {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================  
   Touch Target Improvements
   ========================================================================== */

@media (max-width: 768px) {
  .contact__social-link,
  .contact__button {
    min-height: 44px;
    padding: 0.8rem 1.5rem;
  }
}

/* ==========================================================================  
   Modal Styles
   ========================================================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

.modal__dialog {
  background: white;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 2;
  padding: 2rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-50px);
  transition: transform 0.3s ease;
}

.modal.active .modal__dialog {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
}

.modal__title {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal__field label {
  font-weight: 600;
  color: var(--color-text);
}

.modal__field input {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-family: var(--font-main);
}

.modal__actions {
  margin-top: 1rem;
}

.modal__submit {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 0.25rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
  width: 100%;
}

.modal__submit:hover {
  background: var(--color-secondary);
}

.modal__content {
  line-height: 1.6;
}

.modal__note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}