/* Why to visit */
.why-to-visit {
  padding: 50px;
  background: #fff;
  border-radius: 1rem;
}

.why-to-visit__wrapper {
  display: flex;
  gap: 160px;
}

.why-to-visit-text-title h2 {
  /* Dynamic color set inline or via CSS variable */
}

.why-to-visit-text-desc p {
  /* Dynamic color set inline or via CSS variable */
}

.why-to-visit-feature-list {
  max-width: 450px;
}

.why-to-visit-feature {
  margin-top: 28px;
}

.why-to-visit-feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-to-visit-feature-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.why-to-visit-feature-title {
  font-weight: 600;
  margin: 12px 0;
}

.why-to-visit-feature-desc {
  font-size: 95%;
  margin-bottom: 0;
}

.why-to-visit-media {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1rem;
}

.why-to-visit-media-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}

.why-to-visit-media-image > img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.why-to-visit-media-image-btn {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-secondary);
  font-size: 50px;
  cursor: pointer;
}

/* When to go section */
.when-to-go {
  margin-top: 50px;
  padding-top: 80px;
  border-top: 1px solid rgba(237, 237, 237, 1);
}

.when-to-go__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.when-to-go__legend {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #444;
}

.when-to-go__dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 6px;
}

.when-to-go__dot.excellent { background: #007499; }
.when-to-go__dot.good { background: #c79c19; }
.when-to-go__dot.poor { background: #d9edf5; border: 1px solid #7aa4b2; }

.when-to-go__content {
  justify-content: space-between;
  background: #e9f4f9;
  border-radius: 10px;
  padding: 20px;
  gap: 2rem;
  flex-wrap: nowrap;
}

.when-to-go__info p {
  padding-top: 20px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 350;
}

.when-to-go__months {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.when-to-go__month {
  width: 50px;
  height: 50px;
  border-radius: 20px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.when-to-go__month.poor {
  background: #d9edf5;
  color: #7aa4b2;
}

.when-to-go__month.good {
  background: #c79c19;
  color: #fff;
}

.when-to-go__month.excellent {
  background: #007499;
  color: #fff;
}

.enquiry-button {
  display: block;
  margin: 40px auto 0 auto;
  background: #c1a24f;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(193, 162, 79, .5);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 48px;
  transition: background-color .3s ease;
}

.enquiry-button:hover {
  background-color: #a98530;
}

/* Responsive */
@media (max-width: 1024px) {
  .when-to-go__content {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .when-to-go__months {
    flex-wrap: wrap;
  }
  .why-to-visit__wrapper {
    gap: 80px;
  }
}

@media (max-width: 767px) {
  .why-to-visit {
    padding: 30px;
    gap: 50px;
  }
  .why-to-visit__wrapper {
    flex-direction: column;
  }

