* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #fff7fb;
  color: #111827;
  overflow-x: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8%;
  background: rgba(255, 247, 251, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #fce7f3;
}

.nav a {
  color: #111827;
  text-decoration: none;
  font-weight: 700;
  margin-left: 18px;
}

.nav a:hover {
  color: #ec4899;
}

.logo {
  color: #ec4899 !important;
}

#booking {
  scroll-margin-top: 80px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 90px 10% 90px 20px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 247, 251, 0.15) 0%,
      rgba(255, 247, 251, 0.45) 45%,
      rgba(255, 247, 251, 0.82) 100%
    ),
    url("images/bg 1.png") left center / cover fixed no-repeat;
  z-index: -2;
}

/* .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255,255,255,0.15),
    transparent 70%
  );

  z-index: -1;
} */

.hero-content {
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fce7f3;
  color: #be185d;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  color: #111827;
  margin-bottom: 20px;
}


.hero-text {
  font-size: 1.08rem;
  color: #4b5563;
  max-width: 540px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.btn {
  border: none;
  padding: 15px 22px;
  border-radius: 999px;
  background: #ec4899;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.25s ease;
}

.btn:hover {
  background: #db2777;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(236, 72, 153, 0.25);
}

.services,
.how-it-works {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.services h2,
.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #111827;
}

.services-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card,
.step {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.service-card {
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ec4899, #f472b6);
  transition: left 0.3s ease;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
  border-color: #f9a8d4;
}

.service-card h3,
.step h3 {
  margin-bottom: 10px;
  color: #111827;
}

.service-card p,
.step p {
  color: #6b7280;
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-card span {
  font-weight: 700;
  color: #ec4899;
  display: inline-block;
}

.service-card:hover h3 {
  color: #ec4899;
}

.service-card:hover span {
  transform: scale(1.05);
}

.service-card:active {
  transform: scale(0.98);
}

.booking {
  max-width: 700px;
  width: calc(100% - 32px);
  margin: 80px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #111827;
}

.booking p {
  color: #6b7280;
  margin-bottom: 25px;
  line-height: 1.6;
}

.booking-form {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.booking-form label {
  display: grid;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font-weight: 600;
  color: #374151;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
}

.booking-form input[type="date"],
.booking-form input[type="time"] {
  -webkit-appearance: none;
  appearance: none;
  min-height: 52px;
  line-height: normal;
}

.booking-form textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #ec4899;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.15);
}

.note {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: -5px;
  margin-bottom: 0;
}

#success-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 12px;
  background: #dcfce7;
  color: #166534;
  font-weight: 600;
}

.whatsapp-btn {
  display: block;
  margin-top: 20px;
  padding: 14px 20px;
  border-radius: 999px;
  text-align: center;
  background: #dcfce7;
  color: #166534;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.whatsapp-btn:hover {
  background: #bbf7d0;
  transform: translateY(-2px);
  text-decoration: none;
}

.footer {
  text-align: center;
  padding: 30px 20px;
  color: #6b7280;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
  }

  .nav div {
    display: flex;
    gap: 12px;
  }

  .nav a {
    margin-left: 0;
    font-size: 0.9rem;
  }

  .hero {
  justify-content: center;
  padding: 70px 20px;
  min-height: 75vh;
}

.hero {
  justify-content: center;
  padding: 70px 20px;
  min-height: 75vh;
}

  .services,
  .how-it-works {
    margin: 60px auto;
  }

  .booking {
    width: calc(100% - 32px);
    margin: 40px auto;
    padding: 22px;
  }

  .booking h2,
  .services h2,
  .how-it-works h2 {
    font-size: 1.6rem;
  }
}

.day-display {
  font-size: 0.9rem;
  color: #ec4899;
  font-weight: 600;
}

.contact,
.why-us {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px 20px;
  text-align: center;
}

.contact h2,
.why-us h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact p,
.why-us p {
  color: #6b7280;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
