* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #000;
  color: white;
}

.hero {
  position: relative;
  min-height: 420px;
  background-image:
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e");

  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 20px;
}

.overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.3),
      rgba(0,0,0,0.7)
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 800px;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.hero p {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 16px 32px;
  border: none;
  border-radius: 50px;

  font-size: 18px;
  cursor: pointer;

  transition: 0.3s;
}

.primary-btn {
  background: #00aaff;
  color: white;
}

.secondary-btn {
  background: #ffb300;
  color: white;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .primary-btn,
.secondary-btn {
  width: 100%;
  white-space: nowrap;
  font-size: clamp(13px, 4vw, 16px);
}

}
.discover-section {

  padding: 50px 20px;

  background: #f5f7fa;

  color: black;

}

.discover-section h2 {

  text-align: center;

  font-size: 42px;

  margin-bottom: 12px;

}
.swipe-text {

  text-align: center;

  color: #555;

  margin-bottom: 30px;

  font-size: 16px;

}
.cards-wrapper {

  position: relative;

  display: flex;

  align-items: center;

}

.cards-container {

  display: flex;

  gap: 24px;

  overflow-x: auto;

  scroll-behavior: smooth;

  scrollbar-width: none;

  padding: 10px 50px;

  scroll-snap-type: x mandatory;

  -webkit-overflow-scrolling: touch;

}

.cards-container::-webkit-scrollbar {

  display: none;

}

@media (max-width: 768px) {

  .cards-container {

    grid-template-columns: 1fr;

    gap: 18px;

  }

  .discover-section {

    padding: 14px;

  }

}




.stay-card {
  min-width: 320px;
  max-width: 320px;

  background: white;
  border-radius: 25px;

  overflow: hidden;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.15);

  scroll-snap-align: start;

  transition: 0.3s;
}

.stay-card:hover {
  transform: translateY(-10px);
}

.stay-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.card-content p {
  margin-bottom: 10px;
  font-size: 17px;
}

.card-content button {
  margin-top: 20px;

  width: 100%;
  padding: 14px;

  border: none;
  border-radius: 15px;

  background: #00aaff;
  color: white;

  font-size: 16px;
  cursor: pointer;
}
.flyer-card {

  flex: 0 0 340px;

  scroll-snap-align: center;

  border-radius: 28px;

  overflow: hidden;

  background: white;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.15);

  cursor: pointer;

  transition: 0.3s;

}

.flyer-card:hover {

  transform: translateY(-6px);

}

.flyer-card img {

  width: 100%;

  height: auto;

  display: block;

  object-fit: contain;

}
.nav-arrow {

  position: absolute;

  z-index: 20;

  width: 54px;

  height: 54px;

  border: none;

  border-radius: 50%;

  background: rgba(255,255,255,0.95);

  box-shadow:
    0 5px 20px rgba(0,0,0,0.2);

  font-size: 34px;

  cursor: pointer;

}

.left-arrow {

  left: 0;

}

.right-arrow {

  right: 0;

}
.categories {
  display: flex;
  gap: 15px;

  overflow-x: auto;

  padding:
    0 0 30px 0;

  margin-bottom: 30px;

  scrollbar-width: none;
}

.categories::-webkit-scrollbar {
  display: none;
}

.categories button {
  border: none;

  background: white;

  padding:
    14px 24px;

  border-radius: 50px;

  font-size: 16px;

  white-space: nowrap;

  box-shadow:
    0 5px 20px rgba(0,0,0,0.1);

  cursor: pointer;

  transition: 0.3s;
}

.categories button:hover {
  transform: scale(1.05);
}
.discover-section {
  position: relative;

  z-index: 5;

  width: 100%;

  max-width: 1400px;

  margin: 0 auto;

  padding: 40px;

  margin-top: 80px;
}



.flyer-card {

  border-radius: 24px;

  overflow: hidden;

  background: white;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.15);

  transition: 0.3s;

  cursor: pointer;
}

.flyer-card:hover {
  transform:
    translateY(-6px);
}

.flyer-card img {
  width: 100%;

  object-fit: cover;

  display: block;
}
.accommodation-page {
  max-width: 1400px;

  margin: 0 auto;

  padding: 30px;
}

.top-header {
  display: flex;

  justify-content: space-between;

    align-items: flex-start;

  gap: 20px;

  margin-bottom: 30px;
}

.top-header h1 {
  font-size: 42px;

  margin-bottom: 10px;

  color: rgb(8, 0, 0);
}
.title-area {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.back-btn {

  width: fit-content;

  border: none;

  background:
    rgba(255,255,255,0.9);

  color: #111;

  padding: 12px 18px;

  border-radius: 999px;

  font-size: 15px;
  font-weight: 800;

  cursor: pointer;

  box-shadow:
    0 6px 18px rgba(0,0,0,0.08);

  transition: 0.25s;

}

.back-btn:hover {

  transform:
    translateY(-2px);

}
#category {
  font-size: 18px;

  color: #070606;

  text-transform: capitalize;
}

.rating-box {
  background: #00aaff;

  color: white;

  padding: 16px 24px;

  border-radius: 20px;

  font-size: 24px;

  font-weight: bold;
}

.gallery {
  display: flex;

  gap: 20px;

  overflow-x: auto;

  scroll-snap-type: x mandatory;

  scrollbar-width: none;

  margin-bottom: 10px;

  scroll-behavior: smooth;

-webkit-overflow-scrolling: touch;
}

.gallery::-webkit-scrollbar {
  display: none;
}

.gallery img {
  width: 100%;

  max-width: 900px;

  height: 550px;

  object-fit: cover;

  border-radius: 30px;

  flex-shrink: 0;

  scroll-snap-align: center;
}

.beach-row {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  margin-bottom: 40px;
}

#location {
  font-size: 22px;

  color: rgb(0, 0, 0);
}

.maps-btn {
  border: none;

  background: #026ffd;

  color: white;

  padding: 16px 28px;

  border-radius: 50px;

  font-size: 18px;

  cursor: pointer;
}
.facts-bar {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  margin-top: 30px;

  margin-bottom: 50px;

  flex-wrap: wrap;
}

.fact-item {
  flex: 1;

  min-width: 180px;

  background:
    rgba(255,255,255,0.06);

  border:
    1px solid rgba(255,255,255,0.08);

  border-radius: 28px;

  padding: 24px;

  backdrop-filter: blur(12px);

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 16px;
}

.fact-label {
  color: rgba(255,255,255,0.7);

  font-size: 16px;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.fact-value {
  width: 90px;

  height: 90px;

  border-radius: 24px;

  background:
    rgba(255,255,255,0.12);

  display: flex;

  align-items: center;

  justify-content: center;

  color: rgb(0, 0, 0);

  font-size: 42px;

  font-weight: bold;
}
.premium-bar {
  width: 100%;

  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding: 18px 28px;

  margin-top: 30px;

  margin-bottom: 40px;

  background:
    rgba(255,255,255,0.06);

  border:
    1px solid rgba(255,255,255,0.1);

  border-radius: 40px;

  backdrop-filter: blur(18px);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.25);

  flex-wrap: wrap;
}

.premium-item {
  flex: 1;

  min-width: 220px;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 18px;
}

.premium-icon {
  width: 42px;

  height: 42px;

  object-fit: contain;
}

.premium-label {
  color: rgba(8, 1, 1, 0.8);

  font-size: 18px;

  letter-spacing: 1px;
}

.premium-value {
  width: 64px;

  height: 64px;

  border-radius: 18px;

  background:
    rgba(255,255,255,0.12);

  border:
    1px solid rgba(255,255,255,0.12);

  display: flex;

  align-items: center;

  justify-content: center;

  color: rgb(0, 0, 0);

  font-size: 32px;

  font-weight: bold;
}
.features-row {
  display: flex;

  gap: 18px;

  margin-top: 30px;

  flex-wrap: wrap;
}

.feature-card {
  position: relative;

  overflow: hidden;

  border-radius: 28px;

  min-height: 180px;

  flex: 1;

  min-width: 220px;
}

.feature-bg {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;
}

.feature-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.15)
    );

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 22px;
}

.feature-title {
  color: rgba(255, 253, 253, 0.7);

  font-size: 15px;

  margin-bottom: 6px;
}

.feature-big {
  color: rgb(252, 249, 249);

  font-size: 42px;

  font-weight: bold;
}

.feature-text {
  color: rgb(253, 252, 252);

  font-size: 24px;

  font-weight: 600;
}

.small-feature {
  max-width: 180px;
}
.amenities-row {

  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 18px;

}

.amenity-card {

  width: 172px;
  height: 172px;

  border-radius: 22px;

  overflow: hidden;

  background: rgba(255,255,255,0.06);

  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

}

.amenity-icon {

  width: 100%;
  height: 100%;

  object-fit: cover;

}
#loader {

  position: fixed;

  inset: 0;

  background: #07111f;

  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

}

.loader-spinner {

  width: 70px;
  height: 70px;

  border-radius: 50%;

  border: 5px solid rgba(255,255,255,0.15);

  border-top-color: #00aaff;

  animation: spin 1s linear infinite;

}

@keyframes spin {

  to {

    transform: rotate(360deg);

  }

}


.booking-form {

  display: none;

  flex-direction: column;

  gap: 24px;

  margin-top: 24px;
  margin-bottom: 40px;

  padding: 32px;

  border-radius: 32px;

  background: rgba(7, 0, 0, 0.06);

  backdrop-filter: blur(18px);

}

.booking-form input,
.booking-form textarea {

  width: 100%;

  box-sizing: border-box;

  padding: 18px;

  border-radius: 18px;

  border: none;

  outline: none;

  background: rgb(248, 248, 248);

  color: #111;

  font-size: 16px;

}

.booking-form input::placeholder,
.booking-form textarea::placeholder {

  color: #666;

}

.dates-row {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;

}

.date-field {

  display: flex;

  flex-direction: column;

  gap: 10px;

}

.guests-row {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;

}

.counter-box {

  padding: 18px;

  border-radius: 22px;

  background: rgba(255,255,255,0.05);

}

.counter-controls button {

  width: 44px;
  height: 44px;

  font-size: 22px;

}

.whatsapp-btn {

  padding: 18px;

  border: none;

  border-radius: 22px;

  background: #1fa855;

  color: white;

  font-size: 17px;
  font-weight: 700;

  cursor: pointer;

}
.request-offer-btn {

  width: 100%;

  margin-top: 30px;

  padding: 18px;

  border: none;

  border-radius: 22px;

  background: linear-gradient(
    135deg,
    #009dff,
    #005eff
  );

  color: white;

  font-size: 18px;
  font-weight: 700;

  cursor: pointer;

}
.description-box {

  margin-top: 28px;

  padding: 30px;

  border-radius: 30px;

  background: rgba(255,255,255,0.05);

  backdrop-filter: blur(14px);

  color: rgb(5, 5, 5);

  font-size: 16px;

  line-height: 1.9;

  white-space: normal;

}

.description-box br {

  display: block;

  margin-bottom: 10px;

  content: "";

}
body {

  margin: 0;

  background:

    linear-gradient(
      rgba(255,255,255,0.78),
      rgba(255,255,255,0.82)
    ),

    url("images/beach_background.webp");

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  background-attachment: fixed;

}
.booking-form label,
.booking-form span,
.booking-form #adultsCount,
.booking-form #childrenCount {

  color: #111 !important;

}
@media (max-width: 768px) {

  .accommodation-page {

    padding: 12px;

  }

  .top-header {

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;

  }
  .header-actions {

  width: 100%;

  justify-content: flex-end;

}

  .top-header h1 {

    font-size: 22px;

    line-height: 1.15;

  }

  #category {

    font-size: 13px;

  }

  .rating-box {

    padding: 8px 12px;

    font-size: 15px;

  }
  .share-icon-btn {

  width: 34px;
  height: 34px;

}

  .gallery {

    gap: 10px;

  }

  .gallery img {

    height: 300px;

    object-fit: cover;

    border-radius: 21px;

  }

.premium-bar {

  flex-wrap: nowrap;

  gap: 8px;

  padding: 12px;

  border-radius: 24px;

}

.premium-item {

  min-width: 0;

  gap: 8px;

}

.premium-icon {

  width: 28px;

  height: 28px;

}

.premium-label {

  font-size: 11px;

}

.premium-value {

  width: 42px;

  height: 42px;

  font-size: 18px;

  border-radius: 12px;

}

 .features-row {

  flex-wrap: nowrap;

  gap: 8px;

  overflow-x: auto;

  scrollbar-width: none;

}

.features-row::-webkit-scrollbar {

  display: none;

}

.feature-card {

  min-width: 120px;

  min-height: 90px;

  border-radius: 18px;

}

.small-feature {

  min-width: 90px;

  max-width: 90px;

}

.feature-overlay {

  padding: 12px;

}

.feature-title {

  font-size: 10px;

}

.feature-big {

  font-size: 22px;

}

.feature-text {

  font-size: 14px;

}

  .amenity-card {

    width: 74px;
    height: 74px;

    border-radius: 18px;

  }

  .request-offer-btn,
  .whatsapp-btn {

    padding: 15px;

    font-size: 16px;

  }

  .booking-form {

    padding: 18px;

    gap: 18px;

  }

  .description-box {

    padding: 20px;

    font-size: 15px;

    line-height: 1.7;

  }

}
@media (max-width: 768px) {

  .flyer-card {

    min-width: 92vw;

  }

  .discover-section {

    padding: 16px;

  }

  .swipe-hint {

    font-size: 13px;

    margin-bottom: 14px;

  }

}@media (max-width: 768px) {

  .hero {

    min-height: 500px;

  }

  .hero h1 {

    font-size: 38px;

  }

  .hero p {

    font-size: 17px;

  }

  .discover-section {

    padding: 30px 12px;

  }

  .cards-container {

    padding: 10px 0;

    gap: 16px;

  }

  .flyer-card {

    flex: 0 0 82vw;

  }

  .nav-arrow {

    display: none;

  }

}
.filters-bar {

  display: flex;

  overflow-x: auto;

  gap: 14px;

  padding-bottom: 16px;

  margin-bottom: 26px;

  scrollbar-width: none;

}

.filters-bar::-webkit-scrollbar {

  display: none;

}

.filter-group {

  display: flex;

  gap: 12px;

}

.filter-pill {

  border: none;

  padding: 14px 22px;

  border-radius: 999px;

  background: white;

  color: #111;

  font-size: 15px;

  font-weight: 600;

  white-space: nowrap;

  cursor: pointer;

  transition: 0.25s;

  box-shadow:
    0 5px 18px rgba(0,0,0,0.08);

}

.filter-pill.active {

  background: #009dff;

  color: white;

}
.toggle-pill.active {

  background: linear-gradient(
    135deg,
    #00aaff,
    #0066ff
  );

  color: white;

}
.zone-dropdown-wrapper {

  display: flex;

  align-items: center;

}

.zone-dropdown {

  border: none;

  padding: 14px 20px;

  border-radius: 18px;

  background: white;

  color: #111;

  font-size: 15px;

  font-weight: 700;

  cursor: pointer;

  box-shadow:
    0 5px 18px rgba(0,0,0,0.08);

  outline: none;

  min-width: 220px;

  transition: 0.25s;

}

.zone-dropdown:hover {

  transform: translateY(-1px);

}

.zone-dropdown:focus {

  outline: 3px solid #00aaff55;

}
.gallery-wrapper {

  position: relative;

  display: flex;

  align-items: center;

}

.gallery-arrow {

  position: absolute;

  z-index: 20;

  width: 58px;

  height: 58px;

  border: none;

  border-radius: 50%;

  background: rgba(255,255,255,0.96);

  box-shadow:
    0 5px 20px rgba(0,0,0,0.18);

  font-size: 38px;

  cursor: pointer;

  transition: 0.25s;

}

.gallery-arrow:hover {

  transform: scale(1.08);

}

.gallery-left {

  left: 18px;

}

.gallery-right {

  right: 18px;

}
@media (max-width: 768px) {

 .gallery-arrow {

  width: 38px;

  height: 38px;

  font-size: 22px;

  background: rgba(255,255,255,0.82);

}

}
.header-actions {

  display: flex;

  align-items: center;

  gap: 12px;

}

.share-icon-btn {

  width: 34px;
  height: 34px;

  border: none;

  border-radius: 50%;

  background: white;

  color: #111;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  box-shadow:
    0 6px 20px rgba(0,0,0,0.12);

  transition: 0.25s;

}

.share-icon-btn:hover {

  transform: scale(1.08);

}
.favorite-icon-btn {

  width: 34px;
  height: 34px;

  border: none;

  border-radius: 50%;

  background: white;

  color: #999;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  font-size: 20px;

  box-shadow:
    0 6px 20px rgba(0,0,0,0.12);

  transition: 0.25s;

}

.favorite-icon-btn.active {

  color: #ff3366;

  transform: scale(1.08);

}
body {

  margin: 0;

  font-family: Arial, sans-serif;

  background: #ffffff;

  color: #111111;

}

#place-page {

  width: 100%;

  max-width: 1400px;

  margin: 0 auto;

}

.place-hero {

  position: relative;

  overflow: hidden;

}
.place-carousel {

  display: flex;

  overflow-x: auto;

  scroll-snap-type: x mandatory;

  scrollbar-width: none;

}

.place-carousel::-webkit-scrollbar {

  display: none;

}

.place-slide {

  min-width: 100%;

  aspect-ratio: 16 / 10.3;

  scroll-snap-align: start;

}
.place-slide img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

}

.carousel-dots {

  position: absolute;

  bottom: 14px;

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  gap: 8px;

}
.carousel-dot {

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: rgba(255,255,255,0.5);

}

.carousel-dot.active {

  background: white;

}

.place-header {

  padding: 20px;

}
.title-row {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

}

.title-row h1 {

  margin: 0;

  font-size: 32px;

}

.favorite-btn {

  border: none;

  background:
    rgba(255,255,255,0.72);

  backdrop-filter: blur(14px);

  width: 58px;

  height: 58px;

  border-radius: 50%;

  font-size: 28px;

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow:
    0 6px 20px rgba(0,0,0,0.08);

  transition: 0.25s;

}

.favorite-btn:hover {

  transform:
    scale(1.05);

}

.favorite-btn.active {

  background:
    rgba(255,0,70,0.12);

}
.location-row {

  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 10px;

  flex-wrap: wrap;

  color: #666666;

}

.beach-link {

  color: #0077ff;

  text-decoration: none;

  font-weight: bold;

}
.action-buttons {

  display: flex;

  justify-content: center;

  gap: 54px;

  padding: 10px 20px 0;

  margin-top: 6px;

}

.action-item {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 10px;

  text-decoration: none;

  color: #111;

}

.action-icon {

  width: 68px;

  height: 68px;

  border-radius: 50%;

  background:
    rgba(255,255,255,0.72);

  backdrop-filter: blur(18px);

  border:
    1px solid rgba(255,255,255,0.7);

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.08);

  transition: 0.25s;

}

.action-item:hover .action-icon {

  transform:
    translateY(-3px)
    scale(1.04);

}

.action-item span {

  font-size: 14px;

  font-weight: 600;

  color: #666;

}

.icon-btn:hover {

  transform:
    translateY(-3px)
    scale(1.04);

}
.cta-section {

  display: flex;

  flex-direction: column;

  gap: 14px;

  padding: 20px;

}

.cta-btn {

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #ffb300,
      #ff8800
    );

  color: white;

  border: none;

  border-radius: 999px;

  padding: 20px;

  font-size: 18px;

  font-weight: 800;

  letter-spacing: 0.4px;

  cursor: pointer;

  box-shadow:
    0 10px 30px rgba(255,136,0,0.28);

  transition: 0.25s;

}

.cta-btn:hover {

  transform:
    translateY(-2px)
    scale(1.01);

}

.cta-btn::before {

  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.3),
      transparent
    );

  transform: translateX(-100%);

}

.cta-btn:hover::before {

  animation:
    shine 0.9s forwards;

}

@keyframes shine {

  to {

    transform: translateX(100%);

  }

}
.menu-btn {

  background:
    rgba(255,255,255,0.72);

  backdrop-filter: blur(18px);

  border:
    1px solid rgba(255,255,255,0.7);

  border-radius: 999px;

  padding: 18px;

  font-size: 17px;

  font-weight: 700;

  cursor: pointer;

  color: #111;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.06);

  transition: 0.25s;

}

.menu-btn:hover {

  transform:
    translateY(-2px);

}

.features-scroll {

  display: flex;

  gap: 14px;

  overflow-x: auto;

  padding: 0 20px 20px;

  scrollbar-width: none;

}

.features-scroll::-webkit-scrollbar {

  display: none;

}

.feature-tag {

  flex-shrink: 0;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 14px 18px;

  border-radius: 999px;

  background:
    rgba(255,255,255,0.72);

  backdrop-filter: blur(18px);

  border:
    1px solid rgba(255,255,255,0.7);

  box-shadow:
    0 6px 18px rgba(0,0,0,0.06);

}

.feature-emoji {

  font-size: 22px;

}

.feature-text {

  font-size: 15px;

  font-weight: 700;

  color: #111;

}

.description-section {

  padding: 0 20px 40px;

}

.place-description {

  font-size: 17px;

  line-height: 1.7;

  color: #333333;

}
.place-description.collapsed {

  display: -webkit-box;

  -webkit-line-clamp: 3;

  -webkit-box-orient: vertical;

  overflow: hidden;

}

.see-more-btn {

  margin-top: 10px;

  background: none;

  border: none;

  color: #0077ff;

  font-weight: bold;

  cursor: pointer;

  padding: 0;

}
@media (max-width: 768px) {

  .title-row h1 {

    font-size: 28px;

  }

  .features-grid {

    grid-template-columns: repeat(4, 1fr);

    gap: 8px;

  }

 .action-buttons {

  justify-content: space-evenly;

  gap: 0;

}

.action-icon {

  width: 58px;

  height: 58px;

}

.action-item span {

  font-size: 13px;

}

}
.place-meta {

  display: flex;

  align-items: center;

  gap: 12px;

  flex-wrap: wrap;

  margin-top: 14px;

}

.beach-pill {

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 10px 18px;

  border-radius: 999px;

  background:
    rgba(0,119,255,0.08);

  color: #0077ff;

  text-decoration: none;

  font-weight: 700;

  font-size: 15px;

}

.vibe-pill {

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 10px 18px;

  border-radius: 999px;

  background:
    rgba(255,255,255,0.72);

  backdrop-filter: blur(12px);

  border:
    1px solid rgba(255,255,255,0.65);

  box-shadow:
    0 4px 16px rgba(0,0,0,0.06);

  font-size: 15px;

  font-weight: 700;

  color: #111;

}

.today-hours {

  margin-top: 14px;

  color: #666;

  font-size: 15px;

  font-weight: 600;

}
.reservation-form {

  display: none;

  flex-direction: column;

  gap: 16px;

  padding: 20px;

  margin: 0 20px 30px;

  border-radius: 30px;

  background:
    rgba(255,255,255,0.72);

  backdrop-filter: blur(18px);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);

}

.reservation-form.active {

  display: flex;

}

.reservation-form input {

  width: 100%;

  padding: 18px;

  border-radius: 20px;

  border:
    2px solid rgba(0,0,0,0.06);

  background: white;

  font-size: 16px;

  outline: none;

  transition: 0.2s;

  box-shadow:
    inset 0 1px 3px rgba(0,0,0,0.04);

}

.reservation-form input:focus {

  border-color: #009dff;

  box-shadow:
    0 0 0 4px rgba(0,157,255,0.12);

}

.send-reservation-btn {

  border: none;

  padding: 18px;

  border-radius: 22px;

  background:
    #1fa855;

  color: white;

  font-size: 17px;

  font-weight: 700;

  cursor: pointer;

}
.reservation-form select {

  width: 100%;

  padding: 18px;

  border-radius: 20px;

  border:
    2px solid rgba(0,0,0,0.06);

  background: white;

  font-size: 16px;

  outline: none;

}
.guests-selector {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 14px;

  padding: 14px 18px;

  border-radius: 22px;

  background: white;

  border:
    2px solid rgba(0,0,0,0.06);

}

.guests-selector button {

  width: 48px;

  height: 48px;

  border: none;

  border-radius: 16px;

  background:
    rgba(0,157,255,0.1);

  font-size: 28px;

  cursor: pointer;

  color: #009dff;

  font-weight: bold;

}

#guestsCount {

  font-size: 22px;

  font-weight: 700;

  color: #111;

}
.menu-modal {

  position: fixed;

  inset: 0;

  background:
    rgba(0,0,0,0.92);

  z-index: 99999;

  display: none;

  flex-direction: column;

  justify-content: center;

  align-items: center;

}

.menu-modal.active {

  display: flex;

}

.close-menu {

  position: absolute;

  top: 24px;

  right: 24px;

  width: 54px;

  height: 54px;

  border: none;

  border-radius: 50%;

  background:
    rgba(255,255,255,0.12);

  color: white;

  font-size: 28px;

  cursor: pointer;

  backdrop-filter: blur(12px);

}

.menu-carousel {

  width: 100%;

  display: flex;

  overflow-x: auto;

  scroll-snap-type: x mandatory;

  scrollbar-width: none;

}

.menu-carousel::-webkit-scrollbar {

  display: none;

}

.menu-slide {

  min-width: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

  scroll-snap-align: center;

  padding: 20px;

}

.menu-slide img {

  width: 100%;

  max-width: 700px;

  max-height: 90vh;

  object-fit: contain;

  border-radius: 24px;

}
.business-info-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;

  margin-top: 20px;

}

.business-info-card {

  position: relative;

  overflow: hidden;

  border-radius: 32px;

  height: 240px;

  background-size: cover;

  background-position: center;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.18);

  transition: 0.3s;

}

.business-info-overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      transparent,
      rgba(0,0,0,0.82)
    );

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 18px;

}

.business-info-title {

  font-size: 18px;

  font-weight: 900;

  margin-bottom: 6px;

  color: white;

}

.business-info-text {

  font-size: 14px;

  line-height: 1.45;

  color: rgba(255,255,255,0.88);

  font-weight: 600;

}

@media (max-width: 768px) {

  .business-info-grid {

  display: flex;

  overflow-x: auto;

  gap: 14px;

  padding-bottom: 6px;

  scrollbar-width: none;

}
.business-info-grid::-webkit-scrollbar {

  display: none;

}

  .business-info-card {

    height: 135px;

    border-radius: 22px;

  }

  .business-info-overlay {

    padding: 14px;

  }

  .business-info-title {

    font-size: 13px;

  }

  .business-info-text {

    font-size: 11px;

  }
.place-content {

  padding: 16px;

}

.place-title {

  font-size: 30px;

  line-height: 1.15;

}

.place-description {

  font-size: 15px;

  line-height: 1.7;

}

.section-title {

  font-size: 24px;

  margin-top: 34px;

}

.business-info-grid {

  grid-template-columns:
    repeat(2, 1fr);

  gap: 12px;

}

.business-info-card {

  flex: 0 0 78vw;

  height: 115px;

  border-radius: 24px;

}

.business-info-overlay {

  padding: 14px;

}

.business-info-title {

  font-size: 13px;

  margin-bottom: 4px;

}

.business-info-text {

  font-size: 11px;

  line-height: 1.35;

}

.booking-form {

  gap: 12px;

}

.booking-form input,
.booking-form textarea {

  padding: 16px;

  border-radius: 18px;

  font-size: 15px;

}

.booking-form button {

  padding: 16px;

  border-radius: 18px;

  font-size: 15px;

}

}

.place-page {

  max-width: 1200px;

  margin: 0 auto;

  padding-bottom: 50px;

}

.place-content {

  padding: 20px;

}

.place-category {

  display: inline-flex;

  padding: 10px 18px;

  border-radius: 999px;

  background: #eef4ff;

  color: #0b63f6;

  font-size: 14px;

  font-weight: 800;

  margin-bottom: 18px;

}

.place-title {

  font-size: 42px;

  margin-bottom: 18px;

  color: #111;

}

.place-description {

  font-size: 17px;

  line-height: 1.8;

  color: #444;

}

.section-title {

  font-size: 30px;

  font-weight: 800;

  margin-top: 42px;

  margin-bottom: 18px;

  color: #111;

}

.business-info-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;

}

.business-info-card {

  position: relative;

  overflow: hidden;

  border-radius: 28px;

  height: 180px;

  background-size: cover;

  background-position: center;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.10);

}

.business-info-overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(255,255,255,0.92),
      rgba(255,255,255,0.18)
    );

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 18px;

}

.business-info-title {

  font-size: 16px;

  font-weight: 800;

  margin-bottom: 6px;

  color: #111;

}

.business-info-text {

  font-size: 14px;

  line-height: 1.45;

  color: #333;

  font-weight: 700;

}

.booking-form {

display: none;

  flex-direction: column;

  gap: 14px;

  margin-top: 20px;

}

.booking-form input,
.booking-form textarea {

  border: none;

  background: white;

  border-radius: 20px;

  padding: 18px;

  font-size: 16px;

  box-shadow:
    0 4px 14px rgba(0,0,0,0.08);

}

.booking-form textarea {

  min-height: 140px;

  resize: vertical;

}

.booking-form button {

  border: none;

  background:
    linear-gradient(
      135deg,
      #16c45b,
      #0fa34b
    );

  color: white;

  border-radius: 22px;

  padding: 18px;

  font-size: 17px;

  font-weight: 800;

  cursor: pointer;

  transition: 0.25s;

}

.booking-form button:hover {

  transform:
    translateY(-2px);

}
.footer-links {

  display: flex;

  justify-content: center;

  gap: 18px;

  flex-wrap: wrap;

  margin-top: 25px;

}

.footer-links a {

  color: white;

  opacity: 0.85;

  font-size: 14px;

  text-decoration: none;

}

.footer-links a:hover {

  opacity: 1;

}
/* ===== FOOTER ===== */

.site-footer {

  background: #000;
  color: white;

  padding: 30px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  flex-wrap: wrap;

  gap: 15px;

  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-left {

  font-size: 14px;
  opacity: 0.8;

}

.footer-right {

  display: flex;
  gap: 18px;
  align-items: center;

}

.footer-right a {

  color: white;
  text-decoration: none;

  font-size: 14px;

  transition: 0.3s;

}

.footer-right a:hover {

  opacity: 0.7;

}
.stay-experience {

  position: relative;

  margin-top: 34px;

  padding: 34px;

  border-radius: 38px;

  overflow: hidden;

  color: white;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.28);

}
.stay-experience::before {

  content: "";

  position: absolute;

  inset: 0;

  backdrop-filter: blur(10px);

  background:
    linear-gradient(
      to bottom,
      rgba(7,17,31,0.58),
      rgba(7,17,31,0.88)
    );

}
.stay-experience > * {

  position: relative;

  z-index: 2;

}

.experience-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.experience-kicker {
  color: #5bdcff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.experience-header h2 {
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 12px;
}

.experience-header p {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.6;
  max-width: 720px;
}

.experience-score {
  min-width: 120px;
  height: 120px;
  border-radius: 30px;
  background: white;
  color: #07111f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.experience-score span {
  font-size: 40px;
  font-weight: 900;
}

.experience-score small {
  font-size: 12px;
  font-weight: 800;
  color: #666;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.experience-card {
  position: relative;

  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;

  min-height: 260px;

  padding: 22px;

  overflow: hidden;
}

.experience-card span {
  font-size: 34px;
}

.experience-card h3 {
  position: absolute;

  left: 18px;
  right: 18px;
  bottom: 45px;

  margin: 0;

  font-size: 18px;

  z-index: 2;
}

.experience-card p {

  position: absolute;

  left: 18px;
  right: 18px;
  bottom: 10px;

  color: white;

  line-height: 1.3;

  font-size: 13px;

  z-index: 2;

}

.day-flow {
  margin-top: 28px;
  padding: 26px;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
}

.day-flow h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.flow-step {
  background: rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 20px;
}

.flow-step strong {
  display: block;
  margin-bottom: 8px;
  color: #5bdcff;
}

.flow-step span {
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

@media (max-width: 768px) {

  .stay-experience {
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

  .experience-header,
  .day-flow {
    background: #07111f;
    border-radius: 26px;
    padding: 22px;
  }
.experience-card {
  border-radius: 26px;
  min-height: 240px;
  padding: 18px;
}


  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-score {
    width: 100%;
    height: auto;
    padding: 18px;
  }

}
.stay-hero-panel {
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.connected-beach-card {
  position: relative;
  min-height: 260px;
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(0,220,255,0.45), transparent 35%),
    linear-gradient(135deg, #0077ff, #00c6ff);
  box-shadow: 0 18px 55px rgba(0,119,255,0.28);
  color: white;
}

.connected-beach-card::after {
  content: "🌊";
  position: absolute;
  right: 35px;
  bottom: -20px;
  font-size: 150px;
  opacity: 0.18;
}

.beach-card-content {
  position: relative;
  z-index: 2;
  padding: 34px;
  max-width: 760px;
}

.beach-card-label {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.connected-beach-card h2 {
  font-size: 54px;
  line-height: 1;
  margin-bottom: 16px;
}

.connected-beach-card p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 24px;
}

.connected-beach-card button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  color: #07111f;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.stay-core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.core-stat-card {
  background: white;
  border-radius: 32px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.core-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.core-value {
  font-size: 48px;
  font-weight: 900;
  color: #07111f;
}

.core-label {
  font-size: 15px;
  font-weight: 800;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stay-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.smart-detail-card,
.magnetic-map-btn {
  min-height: 130px;
  border-radius: 30px;
  padding: 22px;
  border: none;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.smart-detail-card span {
  font-size: 30px;
  display: block;
  margin-bottom: 12px;
}

.smart-detail-card strong {
  display: block;
  font-size: 22px;
  color: #111;
  margin-bottom: 6px;
}

.smart-detail-card small {
  color: #666;
  font-weight: 700;
}

.magnetic-map-btn {
  background:
    linear-gradient(135deg, #07111f, #12345c);
  color: white;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s;
}

.magnetic-map-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.22);
}

@media (max-width: 768px) {

  .connected-beach-card {
    min-height: 180px;
    border-radius: 24px;
  }

  .beach-card-content {
    padding: 18px;
  }

  .connected-beach-card h2 {
    font-size: 28px;
  }

  .connected-beach-card p {
    font-size: 13px;
    line-height: 1.4;
  }

  .stay-core-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .core-stat-card {
    padding: 16px 8px;
    border-radius: 22px;
  }

  .core-icon {
    font-size: 24px;
  }

  .core-value {
    font-size: 30px;
  }

  .core-label {
    font-size: 10px;
  }

  .stay-details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .smart-detail-card,
  .magnetic-map-btn {
    min-height: 110px;
    border-radius: 22px;
    padding: 16px;
  }

}
.description-see-more {
  display: none;
}

@media (max-width: 768px) {

  .description-box.collapsed-description {
    max-height: 17em;
    overflow: hidden;
    position: relative;
  }

  .description-box.collapsed-description::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background:
      linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,1)
      );
  }

  .description-see-more {
    display: block;
    width: calc(100% - 24px);
    margin: 12px auto 0;
    border: none;
    background: white;
    color: #0077ff;
    padding: 14px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  }

}
.amenities-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.amenity-card {
  width: 100%;
  height: 190px;
  border-radius: 26px;
}

.amenity-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {

  .amenities-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .amenity-card {
    width: 100%;
    height: 115px;
    border-radius: 18px;
  }

}
.stay-linked-section {
  margin-top: 26px;
}

.stay-linked-section h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: white;
}

.linked-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.linked-mini-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  padding: 18px;
  color: white;
}

.linked-mini-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}

.linked-mini-card span {
  font-size: 13px;
  opacity: 0.75;
}

@media (max-width: 768px) {

  .stay-experience {
    padding: 20px;
    border-radius: 28px;
    background:
      linear-gradient(135deg, #07111f, #12345c) !important;
  }

  .stay-experience::before {
    display: none;
  }

  .experience-header {
    background: transparent;
    padding: 0;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .linked-cards-row {
    grid-template-columns: 1fr;
  }

}
.linked-mini-card {
  text-decoration: none;
  overflow: hidden;
  padding: 0;
  min-height: 170px;
  display: flex;
  flex-direction: column;
}

.linked-mini-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.linked-mini-card div {
  padding: 14px;
}

.linked-mini-card strong {
  color: white;
}

.linked-mini-card span {
  color: rgba(255,255,255,0.75);
}
.category-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.title-area {
  flex: 1;
}

@media (max-width: 768px) {
  .top-header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .category-actions-row {
    align-items: center;
    margin-top: -16px;

  }
  .connected-beach-banner {

  padding: 22px 20px;

  border-radius: 28px;

  min-height: auto;

}
.connected-beach-banner h2 {

  font-size: 42px;

  line-height: 1;

  margin-bottom: 10px;

}
.connected-beach-meta {

  font-size: 14px;

  line-height: 1.4;

}
.connected-beach-btn {

  margin-top: 18px;

  padding: 14px 20px;

  font-size: 15px;

}
}
.image-modal {

  position: fixed;

  inset: 0;

  background: rgba(0,0,0,0.96);

  z-index: 999999;

  display: none;

  justify-content: center;

  align-items: center;
}

.image-modal.active {

  display: flex;
}

.modal-image {

  max-width: 95vw;

  max-height: 95vh;

  object-fit: contain;
}

.image-close {

  position: absolute;

  top: 20px;

  right: 20px;

  width: 50px;

  height: 50px;

  border: none;

  border-radius: 50%;

  background: rgba(255,255,255,0.2);

  color: white;

  font-size: 24px;

  cursor: pointer;
}

.image-nav {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 60px;

  height: 60px;

  border: none;

  border-radius: 50%;

  background: rgba(255,255,255,0.2);

  color: white;

  font-size: 40px;

  cursor: pointer;
}

.image-prev {

  left: 20px;
}

.image-next {

  right: 20px;
}

@media (max-width: 768px) {

  .image-nav {

    display: none;
  }
}
.favorites-home-btn {

  position: absolute;

  top: 20px;
  right: 20px;

  padding: 14px 22px;

  border-radius: 999px;

  background: rgba(255,255,255,0.92);

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  color: #111;

  font-size: 15px;
  font-weight: 800;

  z-index: 100;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.12);

  transition: 0.25s;

}

@media (max-width: 768px) {

  .favorites-home-btn {

    position: static;

    display: block;

    width: 100%;

    margin-top: 12px;

    padding: 16px 32px;

    border-radius: 50px;

    text-align: center;

    font-size: clamp(13px, 4vw, 16px);

    background: white;
    color: black;

    box-sizing: border-box;
  }

}
.back-circle {

  width: 46px;
  height: 46px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: white;

  color: #111;

  text-decoration: none;

  font-size: 22px;
  font-weight: 900;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.08);

  margin-bottom: 18px;

}
.category-favorite-row {

  display: flex;

  align-items: center;

  gap: 10px;

}

.favorite-circle-btn {

  width: 32px;
  height: 32px;

  border: none;

  border-radius: 50%;

  background: white;

  color: #999;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  font-size: 18px;

  box-shadow:
    0 4px 12px rgba(0,0,0,0.08);

  transition: 0.25s;

}

.favorite-circle-btn.active {

  color: #ff3366;

  transform: scale(1.08);

}
.beach-bg,
.sea-bg,
.costs-bg,
.ideal-bg {

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;

  overflow: hidden;

}
.beach-bg::after,
.sea-bg::after,
.costs-bg::after,
.ideal-bg::after {

  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 75px;

  background:
    linear-gradient(
      transparent,
      rgba(0,0,0,0.88)
    );

  z-index: 1;

}

.beach-bg > *,
.sea-bg > *,
.costs-bg > *,
.ideal-bg > * {

  position: relative;

  z-index: 2;

}
.beach-bg {
  background-image:
    url("images/experience_beach.webp");
}

.sea-bg {
  background-image:
    url("images/experience_sea.webp");
}

.costs-bg {
  background-image:
    url("images/experience_costs.webp");
}

.ideal-bg {
  background-image:
    url("images/experience_bestfor.webp");
}
.zone-expandable-content {

  margin-top: 30px;

  display: none;

}

.zone-expandable-content.active {

  display: block;

}

.zone-results-title {

  font-size: 28px;

  font-weight: 800;

  margin-bottom: 20px;

}

.zone-results-row {

  display: flex;

  gap: 18px;

  overflow-x: auto;

  scrollbar-width: none;

  padding-bottom: 10px;

}

.zone-results-row::-webkit-scrollbar {

  display: none;

}
.zone-accommodation-card {

  min-width: 300px;

  max-width: 300px;

  background: white;

  border-radius: 26px;

  overflow: hidden;

  flex-shrink: 0;

  cursor: pointer;

  box-shadow:
    0 8px 26px rgba(0,0,0,0.10);

}

.zone-accommodation-card img {

  width: 100%;

  height: 190px;

  object-fit: cover;

}

.zone-accommodation-info {

  padding: 16px;

}

.zone-accommodation-title {

  font-size: 18px;

  font-weight: 800;

  color: #111;

  line-height: 1.2;

  margin-bottom: 10px;

}

.zone-accommodation-meta {

  font-size: 14px;

  font-weight: 700;

  color: #555;

  margin-bottom: 10px;

}

.zone-accommodation-category {

  display: inline-block;

  padding: 7px 12px;

  border-radius: 999px;

  background: #eef4ff;

  color: #0066ff;

  font-size: 12px;

  font-weight: 800;

  text-transform: capitalize;

}
.linked-mini-card.locked {
  cursor: default;
}

.linked-mini-card.locked:hover {
  transform: none;
}

.linked-mini-card {
  cursor: pointer;
  position: relative;
}

.zone-food-soon {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.94);
  color: #16214a;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.search-input {
  border: none;

  padding: 14px 20px;

  border-radius: 18px;

  background: white;

  color: #111;

  font-size: 15px;
  font-weight: 700;

  box-shadow:
    0 5px 18px rgba(0,0,0,0.08);

  outline: none;

  min-width: 240px;
}

.search-input::placeholder {
  color: #777;
}

@media (max-width: 768px) {

  .search-input {
    min-width: 220px;
  }

}
/* ===== PREMIUM STAY SNAPSHOT ===== */

.stay-snapshot-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(15,35,75,0.08);
  border-radius: 30px;
  padding: 24px;
  color: #07111f;
  box-shadow:
    0 18px 50px rgba(9,35,80,0.12);
}

.snapshot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.snapshot-kicker {
  color: #005eff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.snapshot-header h2 {
  font-size: 24px;
  line-height: 1.15;
  margin: 0;
}

.snapshot-map-btn {
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #005eff, #009dff);
  color: white;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow:
    0 10px 24px rgba(0,94,255,0.24);
}

.snapshot-main-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(15,35,75,0.08);
  border-radius: 24px;
  overflow: hidden;
  background: white;
}

.snapshot-stat {
  padding: 20px 14px;
  text-align: center;
  border-right: 1px solid rgba(15,35,75,0.08);
}

.snapshot-stat:last-child {
  border-right: none;
}

.snapshot-svg-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  color: #063b86;
}

.snapshot-svg-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.snapshot-stat strong {
  display: block;
  font-size: 30px;
  font-weight: 950;
  color: #07111f;
  margin-bottom: 4px;
}

.snapshot-stat span {
  font-size: 13px;
  font-weight: 700;
  color: #41506a;
}

.snapshot-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.snapshot-pill {
  padding: 11px 14px;
  border-radius: 999px;
  background: #f2f7ff;
  color: #063b86;
  font-size: 13px;
  font-weight: 850;
  border: 1px solid rgba(0,94,255,0.08);
}

@media (max-width: 768px) {

  .stay-snapshot-card {
    padding: 18px;
    border-radius: 24px;
  }

  .snapshot-header {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .snapshot-header h2 {
    font-size: 21px;
  }

  .snapshot-map-btn {
    width: 100%;
    padding: 15px;
  }

  .snapshot-main-grid {
    grid-template-columns: repeat(4, 1fr);
    border-radius: 20px;
  }

  .snapshot-stat {
    padding: 15px 6px;
  }

  .snapshot-svg-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
  }

  .snapshot-stat strong {
    font-size: 24px;
  }

  .snapshot-stat span {
    font-size: 10px;
  }

  .snapshot-pills {
    gap: 8px;
  }

  .snapshot-pill {
    font-size: 12px;
    padding: 10px 12px;
  }

}
/* ===== PREMIUM AMENITIES ===== */

.amenities-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 16px 40px rgba(9,35,80,0.10);
}

.amenity-card {
  width: auto;
  height: auto;
  min-height: 96px;
  border-radius: 22px;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 8px;
  box-shadow: 0 8px 20px rgba(9,35,80,0.08);
}

.amenity-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #eef6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.amenity-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.amenity-card span {
  color: #07111f;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
}

@media (max-width: 768px) {

  .amenities-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 14px;
    border-radius: 24px;
  }

  .amenity-card {
    min-height: 88px;
    border-radius: 20px;
  }

  .amenity-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 15px;
  }

  .amenity-icon {
    width: 40px;
    height: 40px;
  }

  .amenity-card span {
    font-size: 11px;
  }

}
/* ===== PREMIUM REQUEST OFFER FORM ===== */

.booking-form {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,35,75,0.08);
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(9,35,80,0.12);
}

.booking-form input,
.booking-form textarea {
  background: #ffffff;
  border: 1px solid rgba(15,35,75,0.10);
  border-radius: 18px;
  padding: 16px;
  color: #07111f;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(9,35,80,0.06);
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: 3px solid rgba(0,157,255,0.18);
  border-color: #009dff;
}

.date-field label {
  color: #07111f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.counter-box {
  background: #f5f9ff;
  border: 1px solid rgba(15,35,75,0.08);
  border-radius: 22px;
}

.counter-box > span {
  color: #07111f;
  font-size: 13px;
  font-weight: 900;
}

.counter-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 14px;
}

.counter-controls button {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: white;
  color: #005eff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(9,35,80,0.10);
}

.counter-controls span {
  min-width: 26px;

  text-align: center;

  font-size: 28px;
  font-weight: 900;

  color: #07111f;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #16c45b, #0fa34b);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(15,163,75,0.26);
}

.booking-safe-note {
  text-align: center;
  color: #6b778c;
  font-size: 13px;
  font-weight: 800;
  margin-top: -6px;
}

@media (max-width: 768px) {

  .booking-form {
    padding: 18px;
    border-radius: 26px;
    gap: 16px;
  }

  .dates-row,
  .guests-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .booking-form input,
  .booking-form textarea {
    padding: 15px;
    font-size: 14px;
  }

  .counter-box {
    padding: 14px;
  }

  .counter-controls button {
  width: 42px;
  height: 42px;

  border-radius: 14px;

  background: white;

  color: #005eff;

  font-size: 24px;
  font-weight: 900;

  box-shadow:
    0 8px 18px rgba(9,35,80,0.10);

  transition: 0.2s;
}
.counter-controls button:active {
  transform: scale(0.95);
}
}
.home-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35));
}

.hero {
  min-height: 620px;
  padding: 70px 20px;
}

.hero-content {
  max-width: 900px;
  padding: 34px 28px;
  border-radius: 38px;
  background: rgba(0, 42, 95, 0.38);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

.hero-buttons {
  gap: 18px;
}

.primary-btn,
.secondary-btn {
  text-decoration: none;
  border-radius: 22px;
  padding: 18px 26px;
  font-weight: 900;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}

.primary-btn {
  background: linear-gradient(135deg, #005eff, #00aaff);
}

.secondary-btn {
  background: linear-gradient(135deg, #ffb300, #ff7a00);
}

.primary-btn::before {
  content: "🏡 ";
}

.secondary-btn::before {
  content: "🏖️ ";
}

.discover-section {
  margin-top: 0;
}

@media (min-width: 900px) {
  .hero {
    min-height: 680px;
  }

  .hero h1 {
    font-size: 58px;
  }
}

@media (max-width: 768px) {
  .home-logo {
    width: 115px;
    height: 115px;
  }

  .hero-content {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .hero {
    min-height: 560px;
    padding: 40px 16px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    border-radius: 22px;
  }
}
.hero {
  min-height: 650px;
  padding: 70px 20px;
}

.hero-content {
  max-width: 760px;
  padding: 38px 28px;
  border-radius: 42px;
  background:
    linear-gradient(
      135deg,
      rgba(0, 94, 255, 0.34),
      rgba(0, 170, 255, 0.14)
    );
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}

.home-logo {
  width: 210px;
  height: 210px;
  object-fit: contain;
  margin-bottom: 22px;
  filter: drop-shadow(0 16px 34px rgba(0,0,0,0.42));
}

.hero p {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 23px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}

.primary-btn,
.secondary-btn {
  border-radius: 24px;
  padding: 18px 28px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
}

.primary-btn {
  background: linear-gradient(135deg, #005eff, #00c6ff);
}

.secondary-btn {
  background: linear-gradient(135deg, #ffb300, #ff7a00);
}

.primary-btn::before {
  content: "🏡 ";
}

.secondary-btn::before {
  content: "🏖️ ";
}

.discover-section {
  margin-top: 0;
}

@media (max-width: 768px) {
  .hero {
    min-height: 560px;
    padding: 40px 16px;
  }

  .hero-content {
    padding: 26px 18px;
    border-radius: 30px;
  }

  .home-logo {
    width: 170px;
    height: 170px;
  }

  .hero p {
    font-size: 17px;
  }
}