/* reset.css or global.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a, a:link, a:visited, a:hover, a:active {
  text-decoration: none !important;
}


/* ===== CTA Section ===== */
.cta-booking-section {
  background: linear-gradient(90deg, #f43f5e, #ec4899);
  padding: 100px 20px;
  text-align: center;
}
.achievements-about-section {
  background: linear-gradient(90deg, #f43f5e, #ec4899);
  padding: 100px 20px;
  text-align: center;
}


/* ===== Text ===== */
.title-cta-heading {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.description-cta-text {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 40px;
}

/* ===== Buttons ===== */
.buttons-cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* Book Now button */
.btn-cta-primary {
  background: #fff;
  color: #be185d;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.btn-cta-primary:hover {
  background: #f9f9f9;
}

/* View Offers button */
.btn-cta-secondary {
  border: 2px solid #fff;
  color: #fff;
}
.btn-cta-secondary:hover {
  background: #fff;
  color: #be185d;
}

/* ===== Hero defult Banner ===== */
.hero-defult-banner {
  background: linear-gradient(to bottom right, #ffe4e6, #fbcfe8);
  text-align: center;
}
