/* Підключення шрифтів Inter */
@font-face {
  font-family: 'Inter';
  src: url('./font/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./font/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./font/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('./font/Inter-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Spring theme */
  --spring-primary: #006500;
  --spring-primary-rgb: 0, 101, 0;
  --spring-background: #a2dd36;

  /* Summer theme */
  --summer-primary: #005b5b;
  --summer-primary-rgb: 0, 91, 91;
  --summer-background: #ff3985;

  /* Autumn theme */
  --autumn-primary: #9c1a2c;
  --autumn-primary-rgb: 156, 26, 44;
  --autumn-background: #fa832f;

  /* Winter theme */
  --winter-primary: #005081;
  --winter-primary-rgb: 0, 80, 129;
  --winter-background: #95c6e5;

  --black: #000000;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scroll для всього документа */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: background-color 0.5s ease;
  min-height: 100vh;
  /* padding: 20px; */
}

.themes-container {
  max-width: 800px;
  margin: 0 auto;
  display: none;
}

.theme-selector {
  text-align: center;
  margin-bottom: 40px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.theme-selector span {
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
}

.theme-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.theme-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  color: white;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}

.theme-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.theme-btn.active {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.theme-btn.spring {
  background: linear-gradient(45deg, #006500, #a2dd36);
}

.theme-btn.summer {
  background: linear-gradient(45deg, #005b5b, #ff3985);
}

.theme-btn.autumn {
  background: linear-gradient(45deg, #9c1a2c, #fa832f);
}

.theme-btn.winter {
  background: linear-gradient(45deg, #005081, #95c6e5);
}

/* Стилі для кожної теми */
.theme-spring {
  --current-primary: var(--spring-primary);
  --current-primary-rgb: var(--spring-primary-rgb);
  --current-background: var(--spring-background);
  /* background: linear-gradient(135deg, #a2dd36, #006500); */
}

.theme-summer {
  --current-primary: var(--summer-primary);
  --current-primary-rgb: var(--summer-primary-rgb);
  --current-background: var(--summer-background);
  /* background: linear-gradient(135deg, #ff3985, #005b5b); */
}

.theme-autumn {
  --current-primary: var(--autumn-primary);
  --current-primary-rgb: var(--autumn-primary-rgb);
  --current-background: var(--autumn-background);
  /* background: linear-gradient(135deg, #fa832f, #9c1a2c); */
}

.theme-winter {
  --current-primary: var(--winter-primary);
  --current-primary-rgb: var(--winter-primary-rgb);
  --current-background: var(--winter-background);
  /* background: linear-gradient(135deg, #95c6e5, #005081); */
}

/* Адаптивність */
@media (max-width: 600px) {
  .theme-buttons {
    flex-direction: column;
    align-items: center;
  }

  .theme-btn {
    width: 200px;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
  background: var(--white);
  color: var(--black);
  padding-left: 16px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.header .rightContainer {
  display: flex;
  height: 100%;
  align-items: center;
}

.header .rightLangBlock {
  display: none;
}

.header .rightLangBlock .langBlock {
  margin-bottom: 0;
  margin-right: 22px;
}

.langBlock a:last-child {
  margin-left: 23px;
}

.langBlock a:last-child:has(svg) {
  margin-left: 0;
}

.header .rightBlock {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  background-color: var(--black);
  width: 70px;
  height: 100%;
  position: relative;
}

.header .rightBlock nav {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header .leftContainer {
  display: flex;
  align-items: center;
}

.header .rightBlock .jumpButtonLink {
  display: none;
}

.logo path {
  transition: fill 0.5s ease;
}


#menuToggle {
  display: block;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
}

#menuToggle a {
  text-decoration: none;
  transition: color 0.3s ease;
}


#menuToggle input {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 4px;
  position: relative;
  background: var(--white);
  border-radius: 2px;
  z-index: 1;
  transform-origin: center center;
  transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    background 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.33s ease;
}

#menuToggle span:first-child {
  transform-origin: center center;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: center center;
}

#menuToggle input:checked~span {
  opacity: 1;
  transform: rotate(45deg) translate(4px, 4px);
}

#menuToggle input:checked~span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
  transform: rotate(-45deg) translate(4px, -4px);
}

#menu {
  position: absolute;
  min-width: 100vw;
  width: 100vw;
  min-height: calc(100vh - 62px);
  margin: 0 0 0 -100vw;
  box-sizing: border-box;
  overflow-y: auto;
  background: var(--white);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  right: 0;
  top: 62px;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* #menu .langBlock .footerLangLink:first-child:not(:has(svg)) {
  margin-left: 23px;
} */

#menu .jumpButton {
  width: 100%;
  min-width: 100%;
  height: 70px;
  text-decoration: none;
  background-color: var(--black);
}

#menu .jumpButton .jumpButtonLink {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  word-wrap: nowrap;
  width: 100%;
  background: var(--black);
}

#menu .jumpButton .jumpButtonLink span {
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
  transition: all 0.3s ease;
  text-align: center;
  background: transparent;
}

#menu .jumpButton .jumpButtonLink span:hover {
  transform: scale(0.97);
}

#menu .jumpButton .btnArrow {
  min-width: 70px;
  height: 70px;
}

#menu .menuContainer {
  display: flex;
  flex-direction: column;
  padding: 40px 16px;
  justify-content: space-between;
  height: calc(100vh - 62px - 70px);

}

.header .middleContainer {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.header .middleContainer .mainHeaderLink {
  text-decoration: none;
  font-size: 16px;
  color: var(--black);
  position: relative;
}

.header .middleContainer .mainHeaderLink::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--black);
  transition: width 0.3s ease;
}

.header .middleContainer .mainHeaderLink:hover::after {
  width: 100%;
}

.header .langBlock {
  margin-bottom: 10px;
}

.header .langBlock .footerLangLink {
  color: var(--black);
  position: relative;
  min-height: 15px;
  line-height: 15px;
}

.header .langBlock .footerLangLink svg {
  height: 15px;
  width: 15px;
  margin-top: -1px;
}

.header .langBlock .footerLangLink::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--black);
  transition: width 0.3s ease;
}

.header .langBlock .footerLangLink:hover::after {
  width: 100%;
}

#menu ul {
  display: flex;
  flex-direction: column;
  list-style: none;
}

#menu .navListItem {
  height: 68px;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 16px;
}

#menu .navListItem::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  transition: left 0.3s ease;
  z-index: 1;
}

#menu .navListItem:hover::before {
  left: 0;
}

#menu .navListItem:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

#menu .navListItem .navLink {
  color: var(--black);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

#menu .navListItem:hover .navLink {
  color: var(--white);
}



#menuToggle input:checked~div {
  transform: none;
}

/* tkt block styles */

.tktBlock {
  margin-top: 62px;
  background-color: var(--current-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}

.tktBlock h1 {
  text-align: center;
  font-size: 32px;
  max-width: 360px;
  margin-bottom: 40px;
}

.ticketsCarousel {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 calc(50vw - 110px);
  width: 100vw;
}

.ticketsCarousel::-webkit-scrollbar {
  display: none;
}

.ticketsCarousel .ticketsCarouselItem {
  width: 220px;
  height: 346px;
  background-color: var(--current-background);
  overflow: hidden;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: all 0.3s ease;
}

.ticketsCarousel .ticketsCarouselItem:hover {
  transform: scale(0.97);
}

.tktDesc {
  display: flex;
  flex-direction: column;
}

.tktDesc h2 {
  font-size: 26px;
  width: 100%;
  text-align: center;
  margin: 22px 0 20px;
}

.tktDesc h2.en {
  margin: 18px 0 20px;
}

.tktDesc .serviceTimeBlock {
  padding: 0 14px;
}

.tktDesc .serviceTimeBlock .serviceTime {
  font-size: 13px;
}

.tktDesc .serviceTimeBlock span {
  color: var(--white);
}

.tktDesc .serviceTimeBlock:last-child {
  margin-bottom: 16px;
}

.tktBlock .learnMore {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin: 16px 10px 0;
  width: 200px;
  height: 56px;
  border: none;
  background-color: var(--white);
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--current-primary);
  transition: all 0.4s ease;
}

.tktBlock .learnMore:hover {
  color: var(--white);
  background-color: var(--current-primary);
}

.bg-primary {
  background-color: var(--current-primary);
}

/* Hero styles */

.hero {
  margin-top: 62px;
  display: flex;
  flex-direction: column;
  min-height: 660px;
  padding: 70px 16px;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero .jumpButton {
  transition: all 0.3s ease;
}

.hero .jumpButton:hover {
  transform: scale(0.97);
}

.titledText {
  font-weight: 500;
  font-size: 42px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0%;
}

.titledText.heroTitledText {
  margin-bottom: 34px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.simpleText {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--white);

}

.simpleText.heroSimpleText {
  margin-bottom: 46px;
  width: 95%;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  max-width: 600px;
}

.jumpButton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 270px;
  height: 56px;
  background: var(--white);
  cursor: pointer;
  text-decoration: none;
}

.jumpButton span {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--current-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.jumpButton .jumpButtonLink {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jumpButton .btnArrow {
  min-width: 56px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--current-background);
}


/* Infinite loop tram styles */

.infiniteLoopTram {
  overflow: hidden;
  width: 100%;
  height: 40px;
  position: relative;
}

.infiniteLoopTramSvg {
  height: 40px;
  width: auto;
  position: absolute;
  animation: tramMove 8s linear infinite;
}

.infiniteLoopTramSvg path {
  transition: fill 0.5s ease;
}

@keyframes tramMove {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(calc(100vw + 50px));
  }
}

/* Services styles */

.servicesContainer {
  display: flex;
  flex-direction: column;
}

.servicesContainer .serviceBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  /* max-height: 900px; */
}

.servicesContainer .serviceBlock .serviceBlockImage {
  width: 100%;
  height: 100vw;
  background-color: var(--current-background);
  border-radius: 50%;
  transform: translateY(-33%);
  padding: 34px;
}

.servicesContainer .serviceBlock .serviceBlockImage img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: 50% 50px;
  clip-path: polygon(71.5% 100%, 50% 81.5%, 28.5% 100%, 28.5% 71.5%, 0% 71.5%, 18.5% 50%, 0% 28.5%, 28.5% 28.5%, 28.5% 0%, 50% 18.5%, 71.5% 0%, 71.5% 28.5%, 100% 28.5%, 81.5% 50%, 100% 71.5%, 71.5% 71.5%);
}

.servicesContainer .serviceBlock .serviceBlockText {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -28vw;
  /* transform: translateY(); */
  padding: 0 16px 40px;
}

.servicesContainer .serviceBlock .serviceBlockText .serviceBlockTextTitle {
  text-align: start;
  color: var(--current-primary);
  font-size: 50px;
  margin-bottom: 34px;
  width: 100%;
}

.servicesContainer .serviceBlock .serviceBlockText .serviceBlockTextDescription {
  text-align: start;
  color: var(--black);
  font-size: 13px;
  margin-bottom: 34px;
}

.servicesContainer .serviceBlock .serviceBlockText .serviceBlockTextDescription:not(:has(~ .serviceTimeBlock)) {
  margin-bottom: 0;
}

.serviceTimeBlock {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4px;
  width: 100%;
  margin-bottom: 8px;
}

.serviceTimeBlock .serviceTimeText {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}

.serviceTimeBlock.en {
  height: 40px;
}

.serviceTimeBlock.en .serviceTimeText {
  font-size: 14px;
}

.serviceTimeBlock.en .serviceTime.nowrap {
  text-wrap: nowrap;
}

.serviceTimeBlock .serviceTime {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.serviceBlock .serviceBottomText {
  font-size: 14px;
  width: 100%;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}

.serviceBlock.bg-primary .serviceBottomText {
  color: var(--white);
}

.serviceBlock .orderBlock {
  width: 100%;
  margin-top: 26px;
}

.serviceBlock .jumpButton {
  background-color: var(--black);
  max-width: 258px;
  transition: all 0.3s ease;
}

.serviceBlock .jumpButton:hover {
  transform: scale(0.97);
}

.serviceBlock .jumpButton .jumpButtonLink span {
  color: var(--white);
  font-size: 20px;
}

.serviceBlock .jumpButton .btnArrow img {
  width: 26px;
  height: 26px;
}

.servicesContainer .serviceBlock.bg-primary .serviceBlockText .serviceBlockTextTitle {
  color: var(--white);
}

.servicesContainer .serviceBlock.bg-primary .serviceBlockText .serviceBlockTextDescription {
  color: var(--white);
}

.servicesContainer .serviceBlock.bg-primary .serviceBlockText .serviceTimeText {
  color: var(--white);
}

.servicesContainer .serviceBlock.bg-primary .serviceBlockText .serviceTime {
  color: var(--white);
}

/* Why us? styles */

.whyUs {
  display: flex;
  flex-direction: column;
  padding: 40px 16px;
}

.textContainer {
  display: flex;
  flex-direction: column;
}

.textContainer .whyUsText {
  color: var(--current-primary);
  font-size: 40px;
  max-width: 260px;
  margin-bottom: 24px;
}

.sliderButtons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 82px;
  margin-bottom: 24px;
}

.sliderButtons button {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background-color: rgba(var(--current-primary-rgb), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  outline: none;
}

.sliderButtons button:hover {
  background-color: rgba(var(--current-primary-rgb), 0.4);
}

.sliderButtons .left {
  transform: rotate(180deg);
}

.carouselContainer {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-items: stretch;
}

.carouselContainer.equal-height {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(100% - 40px);
  gap: 7px;
}

.carouselContainer::-webkit-scrollbar {
  display: none;
}

.carouselItem {
  /* min-width: calc(100% - 40px); */
  max-width: 480px;
  width: calc(100% - 40px);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.carouselItem img {
  height: 275px;
  width: 100%;
  object-fit: cover;
}

.video-container {
  position: relative;
  height: 275px;
  width: 100%;
}

.carouselItem video.carousel-video {
  height: 275px;
  width: 100%;
  object-fit: cover;
  border: none;
  outline: none;
  display: block;
}

/* Кнопка play */
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.video-play-button:hover {
  opacity: 0.8;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Кнопка закриття в повноекранному режимі */
.video-fullscreen-close {
  position: fixed;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.video-fullscreen-close:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

/* Стилі для повноекранного відео */
.carousel-video:fullscreen {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background: black;
}

/* Webkit fullscreen для Safari */
.carousel-video:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background: black;
}

/* MS fullscreen для IE/Edge */
.carousel-video:-ms-fullscreen {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background: black;
}

/* Мобільна адаптація */
@media (max-width: 768px) {
  .video-play-button svg {
    width: 50px;
    height: 50px;
  }

  .video-fullscreen-close {
    top: 10px;
    right: 10px;
  }

  .video-fullscreen-close svg {
    width: 35px;
    height: 35px;
  }
}

/* Стилі для мобільного повноекранного контейнера */
.mobile-fullscreen-container {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: black !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.mobile-fullscreen-container video {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: black !important;
}

/* Запобігаємо прокрутці на мобільних пристроях під час відтворення */
body.mobile-video-playing {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
}

.carouselTextBlock {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--current-primary);
  padding: 14px 20px;
  width: 100%;
  box-sizing: border-box;
  flex: 1;
}

.carouselTitle {
  font-size: 26px;
  margin-bottom: 16px;
}


/* Form styles */

.formContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background-color: var(--current-primary);
}

.formTextContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.formContainer .formTitle {
  text-align: center;
  font-size: 40px;
  margin-bottom: 26px;
}

.formContainer .formText {
  text-align: center;
  margin-bottom: 8px;
}

.formContainer .formLink {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  text-decoration: underline;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.formContainer .formLink:hover {
  opacity: 0.8;
}

.bookingForm {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 16px;
}

.inputGroup {
  display: flex;
  flex-direction: column;
  position: relative;
}

.inputLabel {
  position: absolute;
  top: 8px;
  left: 12px;
  color: var(--current-primary);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0%;
  z-index: 1;
}

.inputField {
  background: var(--white);
  border: none;
  border-radius: 0;
  padding: 28px 20px 12px 12px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  height: 52px;
  box-sizing: border-box;
  letter-spacing: 0%;
  font-weight: 500;
}

.inputField.select {
  color: var(--black);
  padding-bottom: 6px;
  padding-right: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="%23333" d="M4 6l4 4 4-4z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

.inputField::placeholder {
  color: rgba(var(--current-primary-rgb), 0.3);
  font-size: 16px;
}

.inputField:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.dateInputWrapper {
  position: relative;
}

.dateInputWrapper {
  position: relative;
}

.dateInput {
  padding-right: 50px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
  color: var(--black);
  text-align: left;
}

.dateInput::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}

.dateInput::-moz-calendar-picker-indicator {
  display: none;
}

.dateIcon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.2s ease;
  padding: 5;
  background-color: rgba(var(--current-primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dateIcon:hover {
  opacity: 0.8;
}

.submitButton {
  background: var(--current-background);
  color: var(--white);
  border: none;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  height: 60px;
}

.submitButton:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.submitButton:active {
  transform: translateY(0);
}


/* Footer styles */

.footer {
  display: flex;
  flex-direction: column;
  background-color: var(--black);
  padding: 40px 16px;
}

.footerTopBlock {
  display: flex;
  flex-direction: column;
}

.pagesBlock {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.pagesBlock .footerPagesLink {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  width: fit-content;
}

.pagesBlock .footerPagesLink::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.pagesBlock .footerPagesLink:hover::after {
  width: 100%;
}

.langBlock {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}

.langBlock .footerLangLink {
  font-size: 14px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
}

.langBlock .footerLangLink::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.langBlock .footerLangLink:hover::after {
  width: 100%;
}

.contactsBlock {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.contactsBlock .socials {
  display: flex;
  gap: 14px;
}

.contactsBlock .socials .socialsLink {
  height: 28px;
  width: 28px;
  transition: transform 0.3s ease;
}

.contactsBlock .socials .socialsLink:hover {
  transform: scale(1.1);
}

.contactsBlock .socials .socialsLink img {
  width: 24px;
  height: 24px;
}

.contactsBlock .phones {
  display: flex;
  gap: 16px;
}

.contactsBlock .phones .footerPhoneLink {
  font-size: 16px;
  transition: all 0.3s ease;
}

.contactsBlock .phones .footerPhoneLink:hover {
  opacity: 0.8;
}

.contactsBlock .contactsInfo {
  font-size: 12px;
}

.partnersBlock {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 40px;
}

.partnersBlock .partnersText {
  font-size: 16px;
}

.partnersBlock .partnersLogos {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-around;
}

.partnersBlock .partnersLogos a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footerTopBlock .partnersLogos a:hover {
  transform: scale(1.05);
}

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

.footerLargeLogo {
  display: none;
}

/* Media for 620px */

@media (min-width: 620px) {
  .servicesContainer .serviceBlock .serviceBlockImage {
    max-width: 600px;
    max-height: 600px;
  }

  .servicesContainer .serviceBlock .serviceBlockText {
    margin-top: -160px;
  }
}


/* Media for 900px */

@media (min-width: 900px) {
  .header .rightBlock nav {
    display: none;
  }

  .header .rightBlock {
    width: 120px;
  }

  .header .rightBlock .jumpButtonLink {
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header .rightLangBlock {
    display: block;
  }

  .header .rightBlock .jumpButtonLink:hover {
    transform: scale(0.97);
  }

  .header .middleContainer {
    display: flex;
    flex: 1;
  }

  .header .rightContainer {
    flex: 1;
    justify-content: flex-end;
  }

  .header .leftContainer {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .header {
    justify-content: space-between;
  }

  .hero .heroTitledText {
    font-size: 60px;
  }

  .hero .heroSimpleText {
    font-size: 18px;
  }

  .whyUs {
    flex-direction: row;
  }

  .whyUs .textContainer {
    min-width: 440px;
    align-items: center;
    justify-content: center;
  }

  .whyUs .textContainer .whyUsText {
    font-size: 56px;
    max-width: 340px;
  }

  .whyUs .sliderButtons {
    margin-bottom: 0;
  }

  .whyUs .carouselItem {
    min-height: 460px;
  }

  .footer {
    padding: 60px;
    gap: 50px;
  }

  .footerTopBlock {
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .footerTopBlock .partnersLogos img {
    height: 36px;
    width: auto;
  }

  .footerTopBlock .partnersLogos a:nth-child(3) img {
    height: 22px;
  }

  .footerTopBlock .contactsBlock .phones {
    flex-direction: column;
  }

  .footerTopBlock .pagesBlock {
    margin-bottom: 53px;
  }

  .footerTopBlock .langBlock {
    margin-bottom: 0;
  }

  .footer .footerLogo {
    display: none;
  }

  .footer .footerLargeLogo {
    display: block;
  }

  .footer .footerLargeLogo svg {
    width: 100%;
    height: auto;
  }

  .servicesContainer .serviceBlock .serviceBlockText .serviceBlockTextTitle {
    font-size: 60px;
  }

  .servicesContainer .serviceBlock .serviceBlockText .serviceBlockTextDescription {
    font-size: 18px;
  }

  .serviceTimeBlock .serviceTimeText {
    font-size: 17px;
  }


  .serviceTimeBlock .serviceTime {
    font-size: 17px;
  }

  .serviceBlock .serviceBottomText {
    font-size: 17px;
  }
}


/* Media for 1024px */

@media (min-width: 1024px) {
  .header .rightBlock {
    width: 174px;
  }

  .header .middleContainer {
    gap: 40px;
  }

  .header .middleContainer .mainHeaderLink {
    text-decoration: none;
    font-size: 18px;
  }

  .header .rightBlock .jumpButtonLink {
    font-size: 16px;
  }

  .header .logo {
    width: 260px;
    height: auto;
    padding-left: 60px;
  }

  .header {
    padding: 0;
  }

  .hero .heroTitledText {
    font-size: 80px;
  }

  .hero .jumpButton {
    max-width: 390px;
    height: 66px;
  }

  .hero .jumpButton .btnArrow {
    min-width: 66px;
  }

  .hero .jumpButton .btnArrow img {
    width: 26px;
    height: 26px;
  }

  .hero .jumpButton span {
    font-size: 20px;
  }

  .infiniteLoopTram {
    height: 90px;
  }

  .infiniteLoopTram .infiniteLoopTramSvg {
    height: 90px;
    width: auto;
  }

  .whyUs {
    gap: 24px;
    padding: 70px 0px 70px 60px;
  }

  .whyUs .textContainer {
    min-width: 500px;
  }

  .whyUs .textContainer .whyUsText {
    font-size: 80px;
    max-width: 480px;
  }

  .whyUs .sliderButtons {
    min-width: 152px;
  }

  .whyUs .sliderButtons button {
    width: 66px;
    height: 66px;
  }

  .whyUs .sliderButtons button img {
    width: 26px;
    height: 26px;
  }

  .whyUs .carouselItem {
    min-height: 460px;
    min-width: 480px;
    max-width: 480px;
  }

  .carouselContainer {
    gap: 24px;
  }

  .formContainer {
    flex-direction: row;
    gap: 50px;
    padding: 90px 40px;
  }

  .formTextContainer {
    align-items: flex-start;
  }

  .formContainer .formTitle {
    text-align: left;
    font-size: 70px;
  }

  .footer .footerTopBlock {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
  }

  .footer .footerTopBlock .partnersBlock {
    margin-right: 200px;
  }

  .footer .footerTopBlock .contactsBlock {
    margin-right: 70px;
  }

  .footer .footerLargeLogo {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }

  .ticketsCarousel {
    padding: 0;
    overflow: hidden;
    max-width: 988px;
    gap: 36px;
    margin: 0 auto;
    justify-content: center;
  }

  .tktBlock h1 {
    max-width: 1080px;
    font-size: 60px;
  }

  .servicesContainer .serviceBlock {
    flex-direction: row;
    gap: 30px;
    overflow-x: hidden;
    width: fit-content;
    max-height: 900px;
    min-height: 800px;
    max-width: 100vw;
    position: relative;
  }

  .servicesContainer .serviceBlock .serviceBlockImage {
    transform: translateY(0);
    transform: translateX(0);
    max-width: 1000px;
    width: 1000px;
    max-height: 1000px;
    height: 1000px;
    padding: 80px;
    position: absolute;
    left: 55%;
    top: -20%;
  }

  .servicesContainer .serviceBlock .serviceBlockImage img {
    object-position: 76% 50%;
  }

  .servicesContainer .serviceBlock .serviceBlockText {
    margin-top: 0;
    flex: 1;
    padding-top: 40px;
    padding-left: 40px;
    max-width: 50%;
  }

  .serviceBlock .jumpButton .jumpButtonLink span {
    font-size: 24px;
  }

  .servicesContainer .serviceBlock.bg-primary {
    flex-direction: row-reverse;
  }

  .servicesContainer .serviceBlock.bg-primary .serviceBlockImage {
    right: 55%;
    left: auto;
  }

  .servicesContainer .serviceBlock.bg-primary .serviceBlockText {
    padding-left: 0;
    padding-right: 40px;
  }
}

/* Media for 1440px */

@media (min-width: 1440px) {
  .hero .heroTitledText {
    font-size: 94px;
    max-width: 1460px;
  }

  .formContainer {
    flex-direction: row;
    gap: 100px;
    padding: 100px 60px;
  }

  .formContainer .formTitle {
    font-size: 110px;
  }

  .servicesContainer .serviceBlock .serviceBlockText {
    padding-left: 60px;
  }

  .servicesContainer .serviceBlock.bg-primary .serviceBlockText {
    padding-left: 0px;
    padding-right: 60px;
  }

  .servicesContainer .serviceBlock .serviceBlockText .serviceBlockTextDescription {
    margin-right: 200px;
  }

  .servicesContainer .serviceBlock .serviceBlockImage {
    max-width: 1030px;
    width: 1030px;
    max-height: 1030px;
    height: 1030px;
    left: 55%;
    top: -150px;
  }

  .servicesContainer .serviceBlock .serviceBlockImage img {
    object-position: 66% 66px;
  }
}

/* Contacts */
.contacts-section {
  padding: 40px 32px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contacts-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  line-height: 1.2;
  color: var(--black);
}

.contacts-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.contacts-info-card {
  background: var(--current-background);
  color: var(--white);
  padding: 32px;
  border-radius: 0 18px 18px 18px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  max-height: 400px;
}

.contacts-company {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.contacts-address {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--white);
}

.contacts-phones {
  margin-top: 30px;
}

.contacts-booking {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: var(--white);
  opacity: 0.9;
}

.contacts-phone {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.contacts-phone:hover {
  opacity: 0.8;
}

.contacts-map-wrapper {
  width: 100%;
  height: 400px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contacts-map {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* Адаптивність для контактного блоку */
@media (min-width: 768px) {
  .contacts-content {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
  }

  .contacts-title {
    font-size: 40px;
  }

  .contacts-company {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .contacts-section {
    padding: 60px 40px;
  }

  .contacts-content {
    max-width: 1400px;
    gap: 50px;
  }

  .contacts-info-card {
    padding: 40px;
    max-height: 420px;
  }

  .contacts-title {
    font-size: 48px;
    margin-bottom: 60px;
  }

  .contacts-booking {
    font-size: 17px;
  }

  .contacts-company {
    font-size: 32px;
  }

  .contacts-address {
    font-size: 20px;
  }

  .contacts-phone {
    font-size: 28px;
  }

  .contacts-map-wrapper {
    height: 500px;
  }
}

@media (min-width: 1440px) {

  .contacts-content {
    max-width: 1600px;
    min-width: 1200px;
    margin: 0 auto;
  }

  .contacts-info-card {
    padding: 50px;
    max-height: 440px;
  }

  .contacts-map-wrapper {
    height: 600px;
  }
}

.mt-62 {
  margin-top: 62px;
}

/* ===== AIR DATEPICKER CUSTOM STYLES ===== */

/* Wrapper стилі */
.air-datepicker-wrapper {
  position: relative;
  width: 100%;
}

/* Input стилі для Air Datepicker */
.air-datepicker-input {
  padding-right: 50px !important;
  width: 100% !important;
  color: var(--black) !important;
  text-align: left !important;
  cursor: pointer;
}

.air-datepicker-input::placeholder {
  color: rgba(var(--black-rgb), 0.6);
}

.air-datepicker-input:disabled {
  background-color: #f5f5f5;
  color: #999999;
  cursor: not-allowed;
}

.air-datepicker-input:disabled::placeholder {
  color: #999999;
}

/* Disabled дні в календарі */
.air-datepicker .air-datepicker-cell.-disabled- {
  color: #ccc !important;
  background: transparent !important;
  cursor: not-allowed !important;
  opacity: 0.5;
}

.air-datepicker .air-datepicker-cell.-disabled-:hover {
  background: transparent !important;
  color: #ccc !important;
  opacity: 0.5;
}

.air-datepicker .air-datepicker-cell.-disabled-.-other-month- {
  opacity: 0.3;
}

/* Fallback стилі для кастомних disabled днів */
.air-datepicker .air-datepicker-cell.custom-disabled-day {
  color: #ccc !important;
  background: transparent !important;
  cursor: not-allowed !important;
  opacity: 0.5;
  pointer-events: none;
}

.air-datepicker .air-datepicker-cell.custom-disabled-day:hover {
  background: transparent !important;
  color: #ccc !important;
  opacity: 0.5;
}

/* Основний контейнер датпікера */
.air-datepicker {
  --adp-color: #333333;
  --adp-background-color: #ffffff;
  --adp-background-color-hover: rgba(0, 0, 0, 0.05);
  --adp-background-color-active: rgba(0, 0, 0, 0.1);
  --adp-background-color-in-range: rgba(0, 0, 0, 0.08);
  --adp-background-color-selected: var(--current-primary);
  --adp-background-color-selected-hover: rgba(var(--current-primary-rgb), 0.9);
  --adp-color-secondary: rgba(0, 0, 0, 0.5);
  --adp-color-current-date: var(--current-primary);
  --adp-border-color: rgba(0, 0, 0, 0.1);
  --adp-border-color-inner: rgba(0, 0, 0, 0.05);

  background: #ffffff;
  border: 1px solid var(--adp-border-color);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  z-index: 1000;
}

/* Заголовок датпікера */
.air-datepicker-nav {
  background: transparent;
  border-bottom: 1px solid var(--adp-border-color-inner);
  padding: 12px 16px;
}

.air-datepicker-nav--title {
  color: #333333;
  font-weight: 600;
  font-size: 16px;
}

.air-datepicker-nav--action {
  color: #666666;
  border-radius: 4px;
  transition: all 0.2s ease;
  width: 32px;
  height: 32px;
}

.air-datepicker-nav--action:hover {
  background: var(--adp-background-color-hover);
  color: var(--current-primary);
}

/* Дні тижня */
.air-datepicker-body--day-names {
  background: transparent;
  border-bottom: 1px solid var(--adp-border-color-inner);
}

.air-datepicker-body--day-name {
  color: #666666;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  padding: 8px 4px;
}

/* Клітинки з датами */
.air-datepicker-cell {
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 500;
  color: #333333;
}

.air-datepicker-cell.-day- {
  color: #333333;
}

.air-datepicker-cell.-day-:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #333333;
}

.air-datepicker-cell.-selected- {
  background: var(--current-primary) !important;
  color: #ffffff !important;
  font-weight: 600;
}

.air-datepicker-cell.-selected-:hover {
  background: rgba(var(--current-primary-rgb), 0.9) !important;
  color: #ffffff !important;
}

.air-datepicker-cell.-current- {
  color: var(--current-primary);
  font-weight: 600;
  position: relative;
}

.air-datepicker-cell.-current-:not(.-selected-)::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--current-primary);
  border-radius: 50%;
}

.air-datepicker-cell.-other-month- {
  color: rgba(0, 0, 0, 0.3);
}

.air-datepicker-cell.-disabled- {
  color: rgba(0, 0, 0, 0.2) !important;
  cursor: not-allowed;
}

.air-datepicker-cell.-disabled-:hover {
  background: transparent !important;
}

/* Кнопки */
.air-datepicker-buttons {
  border-top: 1px solid var(--adp-border-color-inner);
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.air-datepicker-button {
  background: transparent;
  border: 1px solid #dddddd;
  color: #666666;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.air-datepicker-button:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: #cccccc;
  color: #333333;
}

/* Кнопка очистити на всю ширину */
.air-datepicker-button-clear {
  width: 100% !important;
  margin: 0 !important;
  text-align: center;
  font-weight: 500;
}

.air-datepicker-button-clear:hover {
  background: rgba(0, 0, 0, 0.08) !important;
}



/* Кнопка "Сьогодні" видалена */

/* Адаптивність */
@media (max-width: 768px) {
  .air-datepicker {
    font-size: 16px;
    /* Збільшуємо розмір для мобільних */
    border-radius: 12px;
  }

  .air-datepicker-cell {
    height: 44px;
    /* Збільшуємо висоту для зручності на тачскрінах */
    border-radius: 8px;
  }

  .air-datepicker-nav {
    padding: 16px;
  }

  .air-datepicker-nav--title {
    font-size: 18px;
  }

  .air-datepicker-nav--action {
    width: 40px;
    height: 40px;
  }

  .air-datepicker-buttons {
    padding: 16px;
    gap: 12px;
  }

  .air-datepicker-button {
    padding: 12px 20px;
    font-size: 16px;
  }
}

/* Темізація для різних сезонів - тільки акцентні кольори */
.theme-spring .air-datepicker {
  --adp-background-color-selected: #006500;
  --adp-color-current-date: #006500;
}



.theme-summer .air-datepicker {
  --adp-background-color-selected: #005B5B;
  --adp-color-current-date: #005B5B;
}



.theme-autumn .air-datepicker {
  --adp-background-color-selected: #9C1A2C;
  --adp-color-current-date: #9C1A2C;
}



.theme-winter .air-datepicker {
  --adp-background-color-selected: #005081;
  --adp-color-current-date: #005081;
}