﻿/* VIP tours page */

.vip-hero,
.vip-benefits,
.vip-formats,
.vip-comfort,
.vip-directions,
.vip-request-section {
  font-family: var(--font-main);
}

.vip-hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  padding: 100px 0;
  background: url("../images/vip-hero.webp") center / cover no-repeat;
  color: #fff;
}

.vip-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 38%, rgba(246, 178, 77, 0.22), transparent 26%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(3, 22, 20, 0.68) 52%, rgba(0, 0, 0, 0.78) 100%);
  z-index: 1;
}

.vip-hero .container,
.vip-benefits .container,
.vip-formats .container,
.vip-comfort .container,
.vip-directions .container,
.vip-request-section .container {
  width: min(1280px, calc(100vw - 80px));
  max-width: 1280px;
  margin: 0 auto;
}

.vip-hero .container {
  position: relative;
  z-index: 2;
}

.vip-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 76px;
}

.vip-hero__content {
  max-width: 760px;
}

.vip-hero__label {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  color: #f6b24d;
}

.vip-hero__title {
  margin: 0 0 26px;
  font-size: 60px;
  line-height: 1.02;
  font-weight: 700;
  color: #fff;
}

.vip-hero__text {
  max-width: 720px;
  margin: 0 0 34px;
  font-size: 21px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.84);
}

.vip-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vip-hero__btn {
  min-height: 56px;
  padding: 0 30px;
  border-radius: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 700;
  text-decoration: none;

  transition: 0.2s ease;
}

.vip-hero__btn--primary {
  background: #f6b24d;
  color: #111;
}

.vip-hero__btn--light {
  background: rgba(255, 255, 255, 0.88);
  color: #111;
}

.vip-hero__btn:hover {
  transform: translateY(-1px);
}

.vip-hero__card {
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(5, 32, 29, 0.86);
  border: 1px solid rgba(246, 178, 77, 0.34);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.vip-hero__card-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.vip-hero__card strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  color: #f6b24d;
}

.vip-hero__line {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.18);
}

.vip-hero__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vip-hero__list li {
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.84);
}

.vip-hero__list li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 9px;
  display: inline-block;
  vertical-align: -2px;
  background: #f6b24d;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Shared headings */

.vip-section-head {
  margin-bottom: 26px;
}

.vip-section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.vip-section-head p,
.vip-section-label {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #d49b38;
}

.vip-section-head h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.1;
  color: #141414;
}

.vip-section-link {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid #d9cfc1;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #171717;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

/* Benefits */

.vip-benefits {
  padding: 56px 0 30px;
  background: #faf8f4;
}

.vip-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.vip-benefit {
  padding: 26px 22px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.vip-benefit span {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #082f2b;
  color: #f6b24d;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  font-weight: 700;
}

.vip-benefit h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.15;
  color: #151515;
}

.vip-benefit p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #4c453d;
}

/* Formats */

.vip-formats {
  padding: 38px 0 56px;
  background: #faf8f4;
}

.vip-formats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vip-format {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.vip-format--dark {
  background:
    radial-gradient(circle at 78% 20%, rgba(246, 178, 77, 0.16), transparent 30%),
    #082f2b;
  color: #fff;
}

.vip-format__image {
  height: 220px;
  overflow: hidden;
  background: #ddd;
}

.vip-format__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s ease;
}

.vip-format:hover .vip-format__image img {
  transform: scale(1.05);
}

.vip-format__body {
  padding: 24px 22px 26px;
}

.vip-format__body > span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f1ebdf;
  color: #695f55;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.vip-format--dark .vip-format__body > span {
  background: rgba(246, 178, 77, 0.18);
  color: #f6b24d;
}

.vip-format h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.12;
  color: #141414;
}

.vip-format--dark h3 {
  color: #fff;
}

.vip-format p {
  min-height: 88px;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.45;
  color: #4d453e;
}

.vip-format--dark p {
  color: rgba(255, 255, 255, 0.78);
}

.vip-format__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.vip-format__bottom strong {
  font-size: 18px;
  color: #111;
}

.vip-format--dark .vip-format__bottom strong {
  color: #fff;
}

.vip-format__bottom a {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 12px;
  background: #082f2b;
  color: #fff;
  text-decoration: none;

  display: inline-flex;
  align-items: center;

  font-size: 13px;
  font-weight: 700;
}

.vip-format--dark .vip-format__bottom a {
  background: #f6b24d;
  color: #111;
}

/* Comfort */

.vip-comfort {
  padding: 60px 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(246, 178, 77, 0.12), transparent 24%),
    linear-gradient(135deg, #061f1d 0%, #082f2b 100%);
  color: #fff;
}

.vip-comfort__inner {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 58px;
  align-items: center;
}

.vip-comfort__media {
  height: 420px;
  overflow: hidden;
  border-radius: 28px;
  background: #ddd;
}

.vip-comfort__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vip-comfort__content h2 {
  margin: 0 0 28px;
  font-size: 38px;
  line-height: 1.12;
  color: #fff;
}

.vip-comfort__list {
  display: grid;
  gap: 18px;
}

.vip-comfort__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
}

.vip-comfort__item > span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f6b24d;
  color: #111;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 700;
}

.vip-comfort__item h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #fff;
}

.vip-comfort__item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

/* Directions */

.vip-directions {
  padding: 58px 0;
  background: #faf8f4;
}

.vip-directions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.vip-direction {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 22px;
  padding: 22px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  color: #fff;
  text-decoration: none;
  background: #111;
}

.vip-direction::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.vip-direction img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  transition: 0.35s ease;
}

.vip-direction:hover img {
  transform: scale(1.06);
}

.vip-direction span,
.vip-direction h3 {
  position: relative;
  z-index: 2;
}

.vip-direction span {
  width: max-content;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f6b24d;
  color: #111;
  font-size: 12px;
  font-weight: 700;
}

.vip-direction h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.12;
}

/* Request */

.vip-request-section {
  padding: 60px 0 66px;
  background: #faf8f4;
}

.vip-request-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 58px;
  align-items: start;

  padding: 36px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 18%, rgba(246, 178, 77, 0.13), transparent 28%),
    #082f2b;
  color: #fff;
}

.vip-request-section__content h2 {
  max-width: 650px;
  margin: 0 0 18px;
  font-size: 38px;
  line-height: 1.12;
  color: #fff;
}

.vip-request-section__content p {
  max-width: 620px;
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.vip-request-section__contacts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vip-request-section__contacts a {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;

  display: inline-flex;
  align-items: center;

  font-size: 14px;
  font-weight: 700;
}

.vip-request {
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  color: #111;
}

.vip-request h3 {
  margin: 0 0 20px;
  font-size: 28px;
  line-height: 1.1;
}

.vip-request label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.vip-request label span {
  font-size: 14px;
  font-weight: 700;
  color: #4b453e;
}

.vip-request input,
.vip-request select,
.vip-request textarea {
  width: 100%;
  border: 1px solid #e2d9cc;
  border-radius: 12px;
  background: #faf8f4;
  outline: none;
  padding: 0 14px;
  font-family: var(--font-main);
  font-size: 15px;
  color: #111;
}

.vip-request input,
.vip-request select {
  height: 48px;
}

.vip-request textarea {
  height: 92px;
  padding-top: 13px;
  resize: vertical;
}

.vip-request button {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  border: 0;
  border-radius: 12px;
  background: #f6b24d;
  color: #111;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

/* Adaptive */

@media (max-width: 1100px) {
  .vip-hero__inner,
  .vip-comfort__inner,
  .vip-request-section__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .vip-hero__card,
  .vip-request {
    max-width: 480px;
  }

  .vip-benefits__grid,
  .vip-directions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vip-formats__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .vip-hero .container,
  .vip-benefits .container,
  .vip-formats .container,
  .vip-comfort .container,
  .vip-directions .container,
  .vip-request-section .container {
    width: min(100% - 32px, 1280px);
  }

  .vip-hero {
    min-height: 520px;
    padding: 72px 0;
  }

  .vip-hero__title {
    font-size: 38px;
  }

  .vip-hero__text {
    font-size: 17px;
  }

  .vip-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vip-hero__btn {
    width: 100%;
  }

  .vip-section-head--row {
    align-items: flex-start;
    flex-direction: column;
  }

  .vip-section-head h2,
  .vip-comfort__content h2,
  .vip-request-section__content h2 {
    font-size: 30px;
  }

  .vip-benefits__grid,
  .vip-directions__grid {
    grid-template-columns: 1fr;
  }

  .vip-comfort,
  .vip-directions,
  .vip-request-section {
    padding: 44px 0;
  }

  .vip-comfort__media {
    height: 290px;
  }

  .vip-comfort__item {
    grid-template-columns: 42px 1fr;
  }

  .vip-comfort__item > span {
    width: 42px;
    height: 42px;
  }

  .vip-direction {
    min-height: 220px;
  }

  .vip-request-section__inner {
    padding: 24px;
    border-radius: 22px;
  }

  .vip-request {
    padding: 22px;
  }
}
