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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  color: #111111;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-weight: 500;
  color: #111111;
  line-height: 1.25;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 18px;
}

p {
  color: #555555;
}

.section-label {
  font-size: 12px;
  color: var(--accent, #e24b4a);
  letter-spacing: 1.5px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.text-muted {
  color: #888888;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eeeeee;
}
.site-header__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (max-width: 480px) {
  .site-header__inner {
    width: 100%;
  }
}
.site-header__logo {
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0.3px;
}
@media (max-width: 480px) {
  .site-header__logo {
    width: 115px;
  }
}
.site-header__logo span {
  color: var(--accent, #e24b4a);
}
.site-header__logo img {
  max-height: 40px;
}
@media (max-width: 1024px) {
  .site-header__nav {
    display: none;
  }
}
.site-header__menu {
  display: flex;
  gap: 26px;
  font-size: 13.5px;
  color: #555555;
  font-weight: 500;
}
.site-header__menu li {
  position: relative;
}
.site-header__menu a:hover {
  color: var(--accent, #e24b4a);
}
.site-header__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 600px) {
  .site-header__cta {
    display: none;
  }
}

.site-header__menu .menu-item-has-children {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-header__menu .menu-item-has-children::after {
  content: "\ea5f";
  font-family: "tabler-icons" !important;
  font-size: 13px;
  color: #888888;
  transition: transform 0.18s ease;
}
.site-header__menu .menu-item-has-children:hover::after {
  transform: rotate(180deg);
}
.site-header__menu .sub-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  margin-top: 14px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.1);
  padding: 8px;
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
  z-index: 40;
}
.site-header__menu .sub-menu li {
  display: block;
}
.site-header__menu .sub-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 13.5px;
  color: #555555;
}
.site-header__menu .sub-menu a:hover {
  background: var(--accent-light, #fdf0ef);
  color: var(--accent, #e24b4a);
}
.site-header__menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher {
  position: relative;
}
@media (max-width: 1024px) {
  .lang-switcher {
    display: none;
  }
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  cursor: pointer;
  padding: 8px 10px;
  border: 1px solid #eeeeee;
  border-radius: 6px;
}
.lang-current i {
  font-size: 14px;
  color: #888888;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.1);
  padding: 6px;
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
  z-index: 40;
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
}
.lang-dropdown a:hover {
  background: var(--accent-light, #fdf0ef);
  color: var(--accent, #e24b4a);
}
.lang-dropdown a.active {
  color: var(--accent, #e24b4a);
  font-weight: 600;
}

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

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #eeeeee;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
}
.burger i {
  font-size: 20px;
}
@media (max-width: 1024px) {
  .burger {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  height: 100 dvh;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}
.mobile-menu.is-open {
  transform: translateX(0);
}
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #eeeeee;
  flex-shrink: 0;
}
.mobile-menu__close {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  cursor: pointer;
}
.mobile-menu__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  gap: 6px;
  overflow-y: auto;
}
.mobile-menu__menu > li > a {
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.mobile-menu li.current-menu-item {
  color: var(--accent, #e24b4a);
}
.mobile-menu li.menu-item-has-children .sub-menu {
  padding-left: 10px;
  font-size: 14px;
}
.mobile-menu__list a {
  display: block;
  font-size: 24px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid #eeeeee;
}
.mobile-menu__list a:active {
  color: var(--accent, #e24b4a);
}
.mobile-menu__list .menu-item-has-children {
  position: relative;
}
.mobile-menu__list .menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu__list .menu-item-has-children > a::after {
  content: "\ea5f";
  font-family: "tabler-icons" !important;
  font-size: 18px;
  color: #888888;
  transition: transform 0.2s ease;
}
.mobile-menu__list .menu-item-has-children.is-open > a::after {
  transform: rotate(180deg);
}
.mobile-menu__list .menu-item-has-children .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.mobile-menu__list .menu-item-has-children .sub-menu a {
  font-size: 15px;
  font-weight: 500;
  color: #555555;
  padding: 12px 0 12px 4px;
  border-bottom: none;
}
.mobile-menu__list .menu-item-has-children.is-open .sub-menu {
  max-height: 260px;
}
.mobile-menu__cta {
  padding: 24px 32px 40px;
  flex-shrink: 0;
}

.mobile-lang-row {
  display: flex;
  gap: 8px;
  padding-top: 16px;
}
.mobile-lang-row a {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 10px;
  border: 1px solid #eeeeee;
  border-radius: 6px;
  color: #555555;
}
.mobile-lang-row a.active {
  border-color: var(--accent, #e24b4a);
  color: var(--accent, #e24b4a);
  background: var(--accent-light, #fdf0ef);
}

.site-footer {
  background: #111111;
  color: #ffffff;
}
.site-footer__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 48px;
  padding-bottom: 16px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
.site-footer__grid {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__col-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #ffffff;
}
.site-footer__link {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}
.site-footer__link:hover {
  color: #ffffff;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 480px) {
  .site-footer__bottom {
    flex-direction: column;
    gap: 12px;
  }
}
.site-footer__social {
  display: flex;
  gap: 14px;
}
.site-footer__social a {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__social a:hover {
  color: var(--accent, #e24b4a);
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.section {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.btn {
  display: inline-block;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn--filled {
  background: var(--accent, #e24b4a);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.btn--filled:hover {
  opacity: 0.9;
}
.btn--outline {
  background: #ffffff;
  color: var(--accent, #e24b4a);
  border: 1.5px solid var(--accent, #e24b4a);
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn--outline:hover {
  background: var(--accent-light, #fdf0ef);
}
.btn--dark {
  background: #111111;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
}
.btn--dark:hover {
  opacity: 0.85;
}

.card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(var(--accent-rgb, 226, 75, 74), 0.14);
}
.card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}
.card p {
  font-size: 13.5px;
}
.card--icon i {
  font-size: 20px;
  color: var(--accent, #e24b4a);
  margin-bottom: 8px;
}
.card__title {
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 4px;
}
.card__subtitle {
  font-size: 11px;
  color: #888888;
}
.card__image {
  height: 70px;
  background: linear-gradient(135deg, var(--accent-light, #fdf0ef) 0%, #ffffff 100%);
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -16px -16px 12px;
}
.card__image i {
  font-size: 28px;
  color: var(--accent, #e24b4a);
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-light, #fdf0ef);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.icon-badge i {
  font-size: 20px;
  color: var(--accent, #e24b4a);
}

.media-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(17, 17, 17, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(var(--accent-rgb, 226, 75, 74), 0.14);
}
.media-card__visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-light, #fdf0ef) 0%, #ffffff 100%);
}
.media-card__visual i {
  font-size: 36px;
  color: var(--accent, #e24b4a);
}
.media-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-card__body {
  padding: 16px 18px 20px;
}
.media-card__title {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 4px;
}
.media-card__meta {
  font-size: 12.5px;
  color: #888888;
}
.media-card__price {
  font-size: 13px;
  color: var(--accent, #e24b4a);
  font-weight: 700;
  margin-top: 6px;
}

html body .reservation .reservation-form-wrap {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(var(--accent-rgb, 226, 75, 74), 0.08);
}
html body .reservation .gform_wrapper.gravity-theme,
html body .reservation .gform_wrapper {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
html body .reservation .gform_fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
html body .reservation .gfield {
  grid-column: span 2;
}
html body .reservation .gfield--width-half,
html body .reservation .gf_left_half,
html body .reservation .gf_right_half,
html body .reservation .gfield.gfield_html_half {
  grid-column: span 1;
}
@media (max-width: 480px) {
  html body .reservation .gform_fields {
    grid-template-columns: 1fr;
  }
  html body .reservation .gfield,
  html body .reservation .gfield--width-half,
  html body .reservation .gf_left_half,
  html body .reservation .gf_right_half {
    grid-column: span 1;
  }
}
html body .reservation .gfield_label,
html body .reservation legend.gfield_label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 6px;
}
html body .reservation .gfield_required {
  color: var(--accent, #e24b4a);
  margin-left: 3px;
}
html body .reservation .gfield_description,
html body .reservation .gfield_consent_description,
html body .reservation .instruction {
  font-size: 12px;
  color: #888888;
  margin-top: 4px;
}
html body .reservation .gform-field-label--type-sub,
html body .reservation .ginput_full label,
html body .reservation .name_first label,
html body .reservation .name_last label,
html body .reservation .ginput_container_time label {
  font-size: 11px;
  font-weight: 400;
  color: #888888;
  margin-top: 4px;
  margin-bottom: 0;
}
html body .reservation input[type=text],
html body .reservation input[type=email],
html body .reservation input[type=tel],
html body .reservation input[type=url],
html body .reservation input[type=number],
html body .reservation input[type=password],
html body .reservation input[type=date],
html body .reservation input[type=time],
html body .reservation select,
html body .reservation textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111111;
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}
html body .reservation input[type=text]:focus,
html body .reservation input[type=email]:focus,
html body .reservation input[type=tel]:focus,
html body .reservation input[type=url]:focus,
html body .reservation input[type=number]:focus,
html body .reservation input[type=password]:focus,
html body .reservation input[type=date]:focus,
html body .reservation input[type=time]:focus,
html body .reservation select:focus,
html body .reservation textarea:focus {
  outline: none;
  border-color: var(--accent, #e24b4a);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb, 226, 75, 74), 0.1);
}
html body .reservation textarea {
  min-height: 90px;
  resize: vertical;
}
html body .reservation select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238c8c8c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
html body .reservation.gfield--flight-number,
html body .reservation .gfield--flight-number input {
  border-color: var(--accent, #e24b4a);
}
html body .reservation .gfield--child-seat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #555555;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 9px 12px;
}
html body .reservation .gfield--child-seat i {
  color: var(--accent, #e24b4a);
  font-size: 15px;
}
html body .reservation .ginput_complex,
html body .reservation .ginput_container_time {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
html body .reservation .ginput_complex > span,
html body .reservation .name_first,
html body .reservation .name_last {
  flex: 1;
  display: flex;
  flex-direction: column;
}
html body .reservation .ginput_container_time input {
  width: 60px;
  text-align: center;
}
html body .reservation .gfield_time_hour_minute_separator {
  align-self: center;
  margin-top: 10px;
  color: #888888;
}
html body .reservation .ginput_container_time select {
  width: auto;
}
html body .reservation .gfield_checkbox,
html body .reservation .gfield_radio {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
html body .reservation .gfield_checkbox li,
html body .reservation .gfield_radio li {
  display: flex;
  align-items: center;
  gap: 8px;
}
html body .reservation .gfield_checkbox label,
html body .reservation .gfield_radio label {
  font-size: 13px;
  color: #555555;
  cursor: pointer;
  margin: 0;
}
html body .reservation input[type=checkbox],
html body .reservation input[type=radio] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent, #e24b4a);
  cursor: pointer;
  flex-shrink: 0;
}
html body .reservation .ginput_container_fileupload input[type=file] {
  width: 100%;
  padding: 10px;
  border: 1.5px dashed #eeeeee;
  border-radius: 8px;
  background: #fafafa;
  font-size: 13px;
}
html body .reservation .gform_footer,
html body .reservation .gform_page_footer {
  margin-top: 16px;
  padding-top: 0;
  border-top: none;
}
html body .reservation .gform_footer input[type=submit],
html body .reservation .gform_footer button.gform_button,
html body .reservation .gform_page_footer input[type=submit] {
  background: #ffffff;
  color: var(--accent, #e24b4a);
  border: 1.5px solid var(--accent, #e24b4a);
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}
html body .reservation .gform_footer input[type=submit]:hover,
html body .reservation .gform_footer button.gform_button:hover,
html body .reservation .gform_page_footer input[type=submit]:hover {
  background: var(--accent-light, #fdf0ef);
}
html body .reservation .gform_validation_errors,
html body .reservation div.validation_error {
  background: var(--accent-light, #fdf0ef);
  border: 1px solid var(--accent, #e24b4a);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--accent, #e24b4a);
  font-size: 13px;
  margin-bottom: 16px;
  grid-column: span 2;
}
html body .reservation .gfield_error input,
html body .reservation .gfield_error select,
html body .reservation .gfield_error textarea {
  border-color: var(--accent, #e24b4a);
}
html body .reservation .validation_message {
  font-size: 12px;
  color: var(--accent, #e24b4a);
  margin-top: 4px;
}
html body .reservation .gf_progressbar {
  background: #fafafa;
  border-radius: 20px;
  overflow: hidden;
  height: 8px;
  margin-bottom: 16px;
}
html body .reservation .gf_progressbar_percentage {
  background: var(--accent, #e24b4a);
  height: 100%;
}
html body .gform_confirmation_wrapper .gform_confirmation_message {
  background: var(--accent-light, #fdf0ef);
  border: 1px solid var(--accent, #e24b4a);
  border-radius: 12px;
  padding: 20px 24px;
  color: #111111;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
}

.fixed-contact {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fixed-contact__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}
.fixed-contact__btn:hover {
  transform: scale(1.08);
}
.fixed-contact__btn i {
  font-size: 22px;
  color: #ffffff;
}
.fixed-contact__btn--whatsapp {
  background: #25d366;
}
.fixed-contact__btn--phone {
  background: var(--accent, #e24b4a);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 64px;
  background: linear-gradient(180deg, #ffffff 0%, var(--accent-light, #fdf0ef) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}
.hero__blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb, 226, 75, 74), 0.1) 0%, transparent 70%);
  top: -120px;
  right: -140px;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 768px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
  }
}
.hero__content {
  flex: 1;
}
.hero__title {
  margin-bottom: 12px;
}
.hero__subtitle {
  margin-bottom: 24px;
  max-width: 440px;
}
@media (max-width: 768px) {
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}
.hero__actions {
  display: flex;
  gap: 12px;
}
@media (max-width: 768px) {
  .hero__actions {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }
}
.hero__image {
  flex-shrink: 0;
  width: 380px;
  max-width: 100%;
  height: 280px;
  border-radius: 12px;
  background: linear-gradient(145deg, #1a1a1a 0%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  position: relative;
}
.hero__image i {
  font-size: 64px;
  color: var(--accent, #e24b4a);
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.trust-bar-section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  transform: translateY(-38px);
  position: relative;
  z-index: 2;
}

.trust-bar {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 10px;
}
@media (max-width: 480px) {
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
}
.trust-bar__item {
  text-align: center;
  border-left: 1px solid #eeeeee;
}
.trust-bar__item:first-child {
  border-left: none;
}
@media (max-width: 480px) {
  .trust-bar__item:nth-child(3) {
    border-left: none;
  }
}
.trust-bar__number {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
}
.trust-bar__number--accent {
  color: var(--accent, #e24b4a);
}
.trust-bar__label {
  font-size: 12px;
  color: #888888;
  margin-top: 2px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__grid {
  margin-top: 24px;
}

.airport-transfer {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 28px;
}
@media (max-width: 480px) {
  .airport-transfer {
    flex-direction: column;
    text-align: center;
  }
}
.airport-transfer__visual {
  flex-shrink: 0;
  width: 350px;
  max-width: 100%;
  height: 250px;
  border-radius: 8px;
  background: repeating-linear-gradient(135deg, var(--accent-light, #fdf0ef) 0 14px, #ffffff 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.airport-transfer__visual i {
  font-size: 32px;
  color: var(--accent, #e24b4a);
}
.airport-transfer__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.why-choose-us {
  background: #fafafa;
}
.why-choose-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .why-choose-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .why-choose-us__grid {
    grid-template-columns: 1fr;
  }
}
.why-choose-us__item {
  text-align: center;
}
.why-choose-us__item p {
  font-size: 13.5px;
  color: #111111;
  font-weight: 500;
  margin-top: 8px;
}
.why-choose-us__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-light, #fdf0ef);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.why-choose-us__icon i {
  font-size: 22px;
  color: var(--accent, #e24b4a);
}

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .fleet__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .fleet__grid {
    grid-template-columns: 1fr;
  }
}
.fleet__grid {
  margin-top: 24px;
}
.fleet__grid .media-card__visual img {
  object-fit: contain;
}

.how-it-works__row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-it-works__row::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #eeeeee 0 8px, transparent 8px 16px);
  z-index: 0;
}
@media (max-width: 768px) {
  .how-it-works__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .how-it-works__row::before {
    display: none;
  }
}
.how-it-works__step {
  position: relative;
  z-index: 1;
  text-align: center;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 28px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.how-it-works__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(var(--accent-rgb, 226, 75, 74), 0.14);
}
.how-it-works__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-light, #fdf0ef);
  color: var(--accent, #e24b4a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 26px;
}
.how-it-works__num {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-it-works__title {
  font-size: 15.5px;
  margin-bottom: 4px;
}
.how-it-works__text {
  font-size: 13px;
}

.tours__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .tours__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .tours__grid {
    grid-template-columns: 1fr;
  }
}
.tours__grid {
  margin-top: 24px;
}

.prices-table {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 24px;
}
.prices-table__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 16px;
  border-top: 1px solid #eeeeee;
  font-size: 14.5px;
  transition: background 0.15s ease;
}
@media (min-width: 600px) {
  .prices-table__row {
    width: 50%;
    float: left;
  }
}
.prices-table__row:hover {
  background: #fafafa;
}
.prices-table__row:first-child {
  border-top: none;
  background: #fafafa;
  color: #888888;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 600;
  width: 100%;
}
.prices-table__row:first-child:hover {
  background: #fafafa;
}
.prices-table__amount {
  color: var(--accent, #e24b4a);
  font-weight: 700;
}

.reservation__intro {
  margin-bottom: 16px;
}

.testimonials {
  background: #fafafa;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
.testimonials__stars {
  color: var(--accent, #e24b4a);
  font-size: 13px;
  margin-bottom: 10px;
}
.testimonials__quote {
  font-size: 14px;
  color: #111111;
  margin-bottom: 12px;
  font-style: italic;
}
.testimonials__author {
  font-size: 12.5px;
  color: #888888;
  font-weight: 600;
}

.gallery-swiper {
  padding: 6px 6px 44px;
}
.gallery-swiper .swiper-slide {
  width: auto;
}
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  color: #111111;
  background: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
  font-size: 15px;
  font-weight: 700;
}
.gallery-swiper .swiper-pagination-bullet-active {
  background: var(--accent, #e24b4a);
}

.gallery-slide {
  width: 280px;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(17, 17, 17, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.gallery-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(var(--accent-rgb, 226, 75, 74), 0.14);
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-slide__zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, #e24b4a);
  font-size: 15px;
}
@media (max-width: 480px) {
  .gallery-slide {
    width: 220px;
  }
}

.riviera-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.riviera-lightbox.is-open {
  display: flex;
}
.riviera-lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}
.riviera-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.riviera-lightbox__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
.riviera-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 480px) {
  .riviera-lightbox__nav {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}
.riviera-lightbox__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 90vw;
}
@media (max-width: 480px) {
  .riviera-lightbox__inner {
    gap: 10px;
  }
}
.riviera-lightbox__image {
  width: min(720px, 82vw);
  max-height: 78vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  object-fit: contain;
  background: #000;
}
.riviera-lightbox__counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.faq {
  background: #fafafa;
}
.faq__list {
  max-width: 680px;
  margin: 0 auto;
}
.faq__item {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 8px;
}
.faq__item span {
  font-size: 14.5px;
  font-weight: 500;
}
.faq__item i {
  color: var(--accent, #e24b4a);
  font-size: 15px;
  transition: transform 0.2s ease;
}
.faq__item.is-open i {
  transform: rotate(180deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq__answer p {
  font-size: 13.5px;
  padding: 0 16px 12px;
}
.faq__answer.is-open {
  max-height: 120px;
}

.contact-card {
  display: flex;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
}
@media (max-width: 700px) {
  .contact-card {
    flex-direction: column;
  }
}
.contact-card__info {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-card__info h3 {
  margin-bottom: 16px;
  font-size: 19px;
}
.contact-card__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555555;
}
.contact-card__row i {
  color: var(--accent, #e24b4a);
  font-size: 16px;
  flex-shrink: 0;
  width: 18px;
}
.contact-card__map {
  flex: 1;
  min-height: 220px;
  background: linear-gradient(135deg, #fafafa 25%, transparent 25%) -10px 0, linear-gradient(225deg, #fafafa 25%, transparent 25%) -10px 0, linear-gradient(315deg, #fafafa 25%, transparent 25%), linear-gradient(45deg, #fafafa 25%, #ffffff 25%);
  background-size: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card__map i {
  font-size: 30px;
  color: var(--accent, #e24b4a);
  background: #ffffff;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.contact-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.cta-banner {
  background: linear-gradient(135deg, #111 0%, #000 100%);
  border-radius: 10px;
  padding: 52px 24px;
  text-align: center;
}
.cta-banner__title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 22px;
}

.text-image {
  display: flex;
  align-items: center;
  gap: 48px;
}
.text-image--reverse {
  flex-direction: row-reverse;
}
.text-image__visual {
  flex: 1;
  min-height: 280px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-light, #fdf0ef) 0%, #ffffff 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(17, 17, 17, 0.05);
}
.text-image__visual i {
  font-size: 48px;
  color: var(--accent, #e24b4a);
}
.text-image__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text-image__content {
  flex: 1;
}
.text-image__list {
  margin-top: 12px;
}
.text-image__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555555;
  margin-bottom: 10px;
}
.text-image__list li i {
  color: var(--accent, #e24b4a);
  font-size: 16px;
}
@media (max-width: 768px) {
  .text-image {
    flex-direction: column;
    text-align: left;
  }
  .text-image--reverse {
    flex-direction: column;
  }
  .text-image__visual {
    width: 100%;
    min-height: 200px;
  }
}

.simple-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.simple-content p {
  font-size: 15px;
  margin-top: 14px;
}
.simple-content p + p {
  margin-top: 12px;
}
