/* Table styling (pricing) */
thead {
  background-color: var(--color-table-header);
}
tbody {
  background-color: #ff4aa46e;
}

/* Section backgrounds */
.section-bg {
  background-color: var(--color-accent-blue);
}

/* About section */
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li + li {
  margin-top: 10px;
}
.about .content ul li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 2px;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: var(--radius-circle);
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .btn-learn-more {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: var(--color-primary);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid var(--color-primary);
}
.about .content .btn-learn-more:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

/* Presentation slider */
.presentation {
  overflow: hidden;
}
.presentation .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.presentation .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--color-primary);
}
.presentation .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
.presentation .gallery-carousel .center {
  border: 6px solid var(--color-primary);
  margin: -10px;
  box-sizing: content-box;
  padding: 4px;
  background: #fff;
  z-index: 1;
}

/* Apartment cards */
.event-list .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-heading-accent);
}
.event-list .card {
  border: 0;
  position: relative;
}
.event-list .card-img {
  width: calc(100%);
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .event-list .card {
    border: 0;
    padding: 0 30px;
    margin-bottom: 60px;
    position: relative;
  }
  .event-list .card-img {
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden;
    z-index: 9;
    border-radius: 0;
  }
  .event-list .card-img img {
    max-width: 100%;
    transition: all 0.3s ease-in-out;
  }
  .event-list .card-body {
    z-index: 10;
    background: #fff;
    border-top: 4px solid #fff;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: -40px;
    transition: 0.3s;
  }
  .event-list .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-heading-accent);
  }
  .event-list .card:hover img {
    transform: scale(1.1);
  }
  .event-list .card:hover .card-body {
    border-color: var(--color-primary);
  }
  .event-list .card:hover .card-body .card-title a {
    color: var(--color-primary);
  }
}

/* Contact section */
.contact-us .info {
  width: 100%;
  background: #fff;
}
.contact-us .info svg {
  width: 20px;
  height: 20px;
}
.image-icon-holder {
  padding: 12px;
  color: var(--color-primary);
  float: left;
  background: var(--color-accent-blue-light);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-circle);
  transition: all 0.3s ease-in-out;
}
.contact-us .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-heading-accent);
}
.contact-us .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #405aa7;
}
.contact-us .info .email,
.contact-us .info .phone {
  margin-top: 40px;
}
.contact-us .info .address:hover .image-icon-holder,
.contact-us .info .email:hover .image-icon-holder,
.contact-us .info .phone:hover .image-icon-holder {
  background: var(--color-primary);
  color: #fff;
}
.contact-us .php-email-form {
  width: 100%;
  background: #fff;
}
.contact-us .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact-us .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact-us .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact-us .php-email-form input,
.contact-us .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: var(--radius-btn);
}
.contact-us .php-email-form input:focus,
.contact-us .php-email-form textarea:focus {
  border-color: var(--color-primary);
}
.contact-us .php-email-form input {
  height: var(--input-height);
}
.contact-us .php-email-form textarea {
  padding: 10px 12px;
}
.contact-us .php-email-form button[type="submit"] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: var(--radius-btn);
}
.contact-us .php-email-form button[type="submit"]:hover {
  background: var(--color-primary-hover);
}

/* Pricing list bullets */
#price ul {
  list-style: none;
  padding: 0;
}
#price ul li {
  padding-left: 28px;
  position: relative;
}
#price ul li + li {
  margin-top: 10px;
}
#price ul li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 2px;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: var(--radius-circle);
}

/* Booking link */
.booking {
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
.hero-section {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-section h1 {
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 55px;
  font-weight: 700;
  font-family: var(--font-hero);
}
.hero-cta {
  background-color: var(--color-primary);
  color: white;
  padding: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 10px;
  transition: background-color 0.3s;
}
.hero-cta:hover {
  background-color: var(--color-primary-hover);
  color: white;
}
.hero-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: rgba(151, 82, 82, 0);
}

/* Reviews section */
.reviews-section {
  background: linear-gradient(180deg, #e7f5ff 0%, #d6ecfa 100%);
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: var(--radius-circle);
  background: rgba(179, 56, 118, 0.04);
  pointer-events: none;
}
.reviews-section::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-circle);
  background: rgba(180, 224, 255, 0.5);
  pointer-events: none;
}
.review-card {
  background: #fff;
  border-radius: 0;
  padding: 36px 32px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--color-primary);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(179, 56, 118, 0.12);
}
.review-quote {
  position: absolute;
  top: -8px;
  left: 20px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 64px;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.review-meta {
  display: flex;
  flex-direction: column;
}
.review-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-heading-accent);
  line-height: 1.2;
}
.review-source {
  font-size: 12px;
  color: #888;
  font-weight: 400;
}
.review-date {
  font-size: 12px;
  color: #999;
  margin-top: 1px;
}
.review-stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2px;
}
.review-star {
  line-height: 1;
}
.review-text {
  font-size: 15px;
  color: var(--color-body-text);
  flex: 1;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.reviews-swiper .swiper-pagination {
  margin-top: 24px;
  position: relative;
}
.reviews-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  opacity: 0.25;
  transition: opacity 0.3s;
}
.reviews-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.google-reviews-link:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary-hover);
}
