@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Greek:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a, a:link, a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
aside, nav, footer, header, section, main {
  display: block;
}
h1, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}
ul, ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
img, svg {
  max-width: 100%;
  height: auto;
}
address {
  font-style: normal;
}
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}
input::-ms-clear {
  display: none;
}
button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}
input:focus, input:active,
button:focus, button:active {
  outline: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
label {
  cursor: pointer;
}
legend {
  display: block;
}
html {
  scroll-behavior: smooth;
}
/*------------base-styles---------------*/
:root {
  --white: #fff;
  --bright: #DDF4E7;
  --green: #67C090;
  --green-hover: rgba(103, 192, 144, 0.8);
  --aqua: #26667F;
  --aqua-hover: rgba(38, 102, 127, 0.8);
  --blue: #124170;

  --font-body: 'Open Sans', sans-serif;
  --font-head: 'Noto Serif Greek', serif;
}
/**/

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--blue);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--aqua);
  margin-top: 0;
}
h1 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 1.1286rem + 1.8571vw, 2.8rem);
}
h3 {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.7143rem + 1.4286vw, 2rem);
}
p {
  font-size: clamp(0.8rem, 0.7429rem + 0.2857vw, 1rem);
}
a {
  color: var(--aqua);
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-family: var(--font-body);
  cursor: pointer;
}

.btn--green {
  background-color: var(--green);
  color: var(--white);
}

.btn--green:hover {
  background-color: var(--green-hover);
}

.btn--aqua {
  background-color: var(--aqua);
  color: var(--white);
}

.btn--aqua:hover {
  background-color: var(--aqua-hover);
}
.section {
  padding: 80px 0;
}

.section--light {
  background-color: var(--bright);
}

.section__title {
  font-size: clamp(1.3rem, 1.1rem + 1vw, 2rem);
  margin-bottom: 20px;
  font-family: var(--font-head);
}

.section__subtitle {
  font-size: 1.2rem;
  color: var(--aqua);
}
.grid {
  display: grid;
  gap: 32px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
}

.card__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}
/**/
.header {
  background-color: var(--white);
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 70px;
}

.header__nav {
  display: flex;
  gap: 32px;
}

.header__nav a {
  font-family: var(--font-body);
  color: var(--aqua);
  font-weight: 600;
  transition: color 0.3s ease;
}

.header__nav a:hover {
  color: var(--aqua-hover);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 19px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 3px;
  background-color: var(--aqua);
  border-radius: 2px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  z-index: 999;
  padding: 0 20px;
  border-bottom: 1px solid #eee;
}

.mobile-menu a {
  padding: 14px 0;
  color: var(--aqua);
  font-weight: 600;
  font-family: var(--font-body);
  border-bottom: 1px solid #eee;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu.active {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  padding: 20px;
}


@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }
}

/**/
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(18 26 112 / 60%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero__icon {
  width: clamp(3.125rem, 2.7679rem + 1.7857vw, 4.375rem);
  margin: 0 auto 16px;
}

.hero__subtitle {
  color: var(--bright);
  margin-bottom: 12px;
}

.hero__title {
  margin-bottom: 16px;
  line-height: 1.3;
  color: var(--white);
}

.hero__text {
  max-width: 700px;
  margin: 0 auto;
  color: var(--bright);
}
/**/
.cards-info .card {
  border: 2px solid var(--bright);
  padding: 0 20px 32px;
  text-align: center;
  background-color: var(--white);
}

.cards-info .card__icon-bg {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background-color: var(--aqua);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.cards-info .card__title {
  margin-bottom: 12px;
  color: var(--aqua);
  font-weight: 600;
}

.cards-info .card__text {
  color: var(--blue);
  font-size: 0.95rem;
  line-height: 1.6;
}
/**/
.about-block__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.about-block__text {
  flex: 0.5 1 400px;
}

.about-block__images {
  position: relative;
  flex: 1 1 400px;
  max-width: 420px;
}

.about-block__image {
  aspect-ratio: 9 / 12;
  overflow: hidden;
}

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

.about-block__image--main {
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.about-block__text p {
  margin-bottom: 20px;
}
.about-block__image--secondary {
  position: absolute;
  right: -34%;
  bottom: -40px;
  width: 75%;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .about-block__inner {
    flex-direction: column;
    gap: 40px;
  }

  .about-block__images {
    max-width: 100%;
  }

  .about-block__image--secondary {
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 60%;
  }
}
/**/
.hotel-overview__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.hotel-benefits .card {
  border: 1px solid #eee;
  padding: 24px 20px;
  text-align: center;
  background-color: var(--white);
}

.hotel-benefits .card__icon-bg {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background-color: var(--aqua);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.hotel-details {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 80px;
  flex-wrap: wrap;
}

.hotel-details__image {
  flex: 1 1 40%;
  aspect-ratio: 9 / 9;
  overflow: hidden;
}

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

.hotel-details__content {
  flex: 1 1 55%;
}
.card--benefit {
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
}
.card--benefit i {
  padding: 15px 15px 0;
}
.card__icon--top {
  font-size: 36px;
  color: var(--aqua);
  margin-bottom: 12px;
  display: inline-block;
}

.hotel-details__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.hotel-details__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--blue);
}

.hotel-details__list i {
  color: var(--green);
  font-size: 20px;
}

.hotel-details__list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 20px;
  color: var(--blue);
}

@media (max-width: 768px) {
  .hotel-overview__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hotel-details {
    flex-direction: column;
  }

  .hotel-details__image,
  .hotel-details__content {
    flex: 1 1 100%;
  }
}
/**/
.reviews {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.85);
  background-blend-mode: lighten;
}

.reviews__icon {
  text-align: center;
  margin-bottom: 40px;
}

.reviews__icon img {
  width: 60px;
  margin: 0 auto;
}

.reviews__slider {
  position: relative;
  height: auto;
  min-height: 100px;
}

.reviews__slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reviews__slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  position: relative;
}

.card--review {
  flex: 1 1 300px;
  max-width: 360px;
  background-color: var(--white);
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border-radius: 20px;
}

.card__quote {
  font-size: 36px;
  color: var(--aqua);
  margin-bottom: 12px;
  line-height: 1;
}

.card__text {
  font-size: 1rem;
  color: var(--blue);
  margin-bottom: 16px;
}

.card__author {
  font-weight: 600;
  color: var(--aqua);
}

.reviews__dots {
  margin-top: 32px;
  text-align: center;
}

.reviews__dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.reviews__dots .dot.active {
  background-color: var(--green);
}
/**/
.gastronomy__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.gastronomy__content {
  flex: 1 1 500px;
}

.gastronomy__image {
  flex: 1 1 400px;
}

.gastronomy__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 9 / 9;
  border-radius: 12px;
}

.gastronomy__benefits {
  margin: 32px 0;
  gap: 32px;
}

.card--benefit {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
}

.card--benefit .card__icon--top {
  font-size: 36px;
  color: var(--aqua);
  margin-bottom: 12px;
  display: inline-block;
}
.gastronomy__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  margin: 32px 0;
  list-style: none;
  padding: 0;
}

.gastronomy__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--blue);
  font-size: 1rem;
}

.gastronomy__list i {
  color: var(--aqua);
  font-size: 20px;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .gastronomy__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gastronomy__inner {
    flex-direction: column;
  }

  .gastronomy__image img {
    aspect-ratio: auto;
  }

  .grid--2 {
    grid-template-columns: 1fr !important;
  }
}
/**/
.faq-cards {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.faq-card {
  background-color: var(--bright);
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-card.open {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  position: relative;
}

.faq-card__header i {
  font-size: 28px;
  color: var(--aqua);
  flex-shrink: 0;
}

.faq-card__title {
  flex-grow: 1;
  font-size: 1.2rem;
  margin: 0;
  color: var(--blue);
}

.faq-toggle {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--green);
  cursor: pointer;
  transition: transform 0.3s;
}

.faq-card.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-card__body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-card.open .faq-card__body {
  padding: 16px 24px 24px;
  max-height: 300px;
  opacity: 1;
}

.faq-card__body p {
  margin: 0;
  color: var(--blue);
  font-size: 1rem;
}
/**/
.footer {
  background-color: var(--blue);
  color: var(--bright);
  padding: 60px 0 30px;
  font-size: 0.95rem;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo img {
  max-width: 140px;
  margin-bottom: 12px;
}

.footer__partner {
  font-size: 0.85rem;
  color: var(--bright);
  opacity: 0.7;
}

.footer__links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: var(--bright);
  text-decoration: none;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--green-hover);
}

.footer__info {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.5;
  margin-bottom: 40px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.footer__copy {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer__age img {
  width: 65px;
  height: auto;
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
/**/
.hotel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hotel-tag {
  background-color: var(--green);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.hotel-facts {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  background-image: url('/assets/img/bg-pattern.webp');
  background-size: cover;
  padding: 40px 20px;
  border-radius: 12px;
}

.hotel-fact {
  backdrop-filter: blur(2px);
  background-color: rgba(255, 255, 255, 0.88);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform .3s ease;
}
.hotel-fact:hover {
  transform: scale(1.1);
}
.hotel-fact__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background-color: var(--aqua);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.hotel-fact__title {
  color: var(--aqua);
  margin-bottom: 10px;
}

.hotel-fact__text {
  font-size: 0.95rem;
  color: var(--blue);
}
/**/
.room-types__grid {
  align-items: stretch;
}

.room-card {
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
}

.room-card__image {
  position: relative;
  height: 270px;
  overflow: hidden;
}

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

.room-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
}

.room-card__content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.room-card__title {
  color: var(--aqua);
  min-height: 3em;
  display: flex;
  align-items: center;
}

.room-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--blue);
}

.room-card__features li {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

@media (max-width: 640px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }

  .room-card__features {
    flex-direction: column;
  }
}
/**/
.conditions-wrapper {
  margin-top: 40px;
  overflow-x: auto;
}

.conditions-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background-color: var(--white);
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
}

.conditions-table th,
.conditions-table td {
  text-align: left;
  padding: 16px 20px;
  vertical-align: middle;
}

.conditions-table th {
  background-color: var(--aqua);
  color: var(--white);
  white-space: nowrap;
  font-weight: 600;
  font-size: 1rem;
}

.conditions-table td {
  background-color: #fdfdfd;
  color: var(--blue);
  font-size: 0.95rem;
}

.conditions-table tr:nth-child(even) td {
  background-color: #f7fafa;
}

.conditions-table i {
  margin-right: 8px;
  font-size: 18px;
  vertical-align: middle;
}

@media (max-width: 640px) {
  .conditions-table th,
  .conditions-table td {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .conditions-table {
    font-size: 0.9rem;
  }
}
/**/
.cta__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta__content {
  flex: 1 1 50%;
}

.cta__title {
  color: var(--blue);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta__text {
  margin-bottom: 24px;
  color: var(--blue);
  max-width: 500px;
}

.cta__image {
  flex: 1 1 45%;
  max-width: 500px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 12px;
}

.cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .cta__wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta__image {
    max-width: 100%;
  }

  .cta__content {
    flex: 1 1 100%;
  }
}
/**/
.emerald-block {
  background-color: var(--blue);
  color: var(--white);
}
.game-card {
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: var(--white);
}

.game-card:hover {
  border-color: var(--aqua);
  box-shadow: 0 0 12px rgba(38, 102, 127, 0.15);
}

.game-card.active {
  border-color: var(--aqua);
  background-color: var(--bright);
  box-shadow: 0 0 15px rgba(38, 102, 127, 0.25);
}

.card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
}

.game-card .card__icon {
  width: 60px;
  height: auto;
  margin: 20px auto;
}
.casino-games__info {
  margin: 2rem auto;
  max-width: 900px;
}
.emerald-block .section__title {
  color: var(--green);
}

.emerald-block .section__subtitle {
  color: var(--bright);
}

.emerald-block .about-block__note {
  font-size: 0.85rem;
  color: var(--bright);
  margin-top: 12px;
  font-style: italic;
}

.emerald-block .about-block__image--main img,
.emerald-block .about-block__image--secondary img {
  border-radius: 8px;
  object-fit: cover;
}
.casino-games__info {
  margin-top: 40px;
  padding: 30px;
  background-color: var(--bright);
  border-radius: 8px;
  border: 1px solid #d0e9dd;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.casino-games__info h3 {
  font-family: var(--font-head);
  color: var(--aqua);
  font-size: clamp(1.4rem, 1.2rem + 0.8vw, 2rem);
  margin-bottom: 16px;
}

.casino-games__info p {
  font-size: clamp(0.9rem, 0.85rem + 0.3vw, 1.1rem);
  margin-bottom: 14px;
  color: var(--blue);
  line-height: 1.7;
}
/**/
.restaurant-info .hotel-details__image img {
  border-radius: 6px;
  object-fit: cover;
  height: auto;
}


.restaurant-info .hotel-details__list li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
}
/**/
.facilities-section .facilities-card {
  background-color: var(--bright);
  border-radius: 8px;
  padding: 24px;
  text-align: left;
  transition: box-shadow 0.3s ease;
}

.facilities-section .facilities-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.facilities-card__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--aqua);
}

.facilities-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.facilities-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--blue);
}

.facilities-card__list i {
  font-size: 1.2rem;
  color: var(--green);
}

.facilities-card__desc {
  font-size: 0.95rem;
  color: var(--blue);
  line-height: 1.5;
}
/**/
.cta-hotel__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  background-color: var(--bright);
  padding: 40px;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .cta-hotel__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cta-hotel__text {
    max-width: 70%;
  }
}

.cta-hotel__text p {
  font-size: 1rem;
  color: var(--blue);
  line-height: 1.7;
  margin-bottom: 1em;
}

.cta-hotel__actions .btn {
  font-size: 1rem;
  padding: 14px 28px;
}
/**/
.contact-section__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .contact-section__grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }


  .contact-section__info,
  .contact-section__form {
    width: 48%;
  }
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--blue);
  gap: 10px;
}

.contact-info i {
  font-size: 1.2rem;
  color: var(--aqua);
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form input:hover,
.form textarea:hover {
  border-color: var(--aqua);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(103, 192, 144, 0.2);
}

.form textarea {
  resize: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.contact-modal__content {
  background: var(--white);
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  max-width: 400px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.contact-modal__icon {
  width: 60px;
  margin: 0 auto 16px;
}

.contact-modal h3 {
  font-family: var(--font-head);
  color: var(--aqua);
  margin-bottom: 10px;
}

.contact-modal p {
  color: var(--blue);
  font-size: 0.95rem;
}