* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #fffaf7;
  color: #1f2937;
  overflow-x: hidden;
  line-height: 1.6;
}

/* NAV */

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 28px;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 24px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #111827;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #ec4899;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #374151;
  font-weight: 600;
  transition: 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ec4899;
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: #ec4899;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  padding: 120px 10%;

  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(255,250,247,0.1) 0%,
      rgba(255,250,247,0.5) 45%,
      rgba(255,250,247,0.95) 100%
    ),
    url("images/bg 1.png") left center / cover fixed no-repeat;

  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;

  top: -200px;
  right: -100px;

  background: radial-gradient(
    circle,
    rgba(236,72,153,0.18),
    transparent 70%
  );

  filter: blur(50px);

  z-index: -1;
}

.hero-content {
  max-width: 620px;

  animation: heroReveal 1s ease;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label,
.section-label {
  display: inline-block;

  padding: 10px 18px;

  border-radius: 999px;

  background: #fde7f3;

  color: #be185d;

  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -3px;

  color: #111827;

  margin-bottom: 24px;
}

.hero-text {
  max-width: 540px;

  color: #4b5563;
  font-size: 1.08rem;

  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* BUTTONS */

.btn {
  border: none;
  padding: 15px 24px;

  border-radius: 999px;

  background: linear-gradient(
    135deg,
    #ec4899,
    #db2777
  );

  color: white;

  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;

  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 15px 30px rgba(236,72,153,0.25);
}

.btn-secondary {
  background: rgba(255,255,255,0.7);
  color: #111827;
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: white;
}

/* SECTIONS */

.services,
.experience,
.why-us,
.how-it-works,
.contact {
  max-width: 1200px;

  margin: 110px auto;

  padding: 0 20px;

  text-align: center;
}

.services h2,
.experience h2,
.why-us h2,
.how-it-works h2,
.contact h2,
.booking h2 {
  font-size: clamp(2rem, 4vw, 3rem);

  line-height: 1.1;

  margin-bottom: 18px;

  color: #111827;
}

/* SERVICES */

.services-grid {
  margin-top: 50px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 24px;
}

.service-card {
  position: relative;

  background: rgba(255,255,255,0.75);

  backdrop-filter: blur(18px);

  border-radius: 28px;

  padding: 30px;

  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.6);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.05);

  text-align: left;

  transition: 0.35s ease;

  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 30px 50px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 18px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 18px;
}

.service-card strong {
  color: #ec4899;
  font-size: 1rem;
}

/* EXPERIENCE */

.experience-card {
  background: linear-gradient(
    135deg,
    #ffffff,
    #fff1f7
  );

  border-radius: 36px;

  padding: 70px 40px;

  box-shadow:
    0 25px 50px rgba(0,0,0,0.05);
}

.experience-card p {
  max-width: 700px;
  margin: auto;
  color: #6b7280;
}

.stats {
  margin-top: 45px;

  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stats div {
  display: flex;
  flex-direction: column;
}

.stats strong {
  font-size: 2.2rem;
  color: #ec4899;
}

.stats span {
  color: #6b7280;
}

/* STEPS */

.steps {
  margin-top: 50px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 24px;
}

.step {
  background: white;

  border-radius: 28px;

  padding: 35px;

  text-align: left;

  box-shadow:
    0 15px 35px rgba(0,0,0,0.05);
}

.step span {
  display: inline-block;

  margin-bottom: 20px;

  color: #ec4899;

  font-size: 2rem;
  font-weight: 800;
}

.step h3 {
  margin-bottom: 12px;
}

/* BOOKING */

.booking {
  max-width: 780px;

  margin: 120px auto;

  padding: 50px 30px;

  background: rgba(255,255,255,0.75);

  backdrop-filter: blur(20px);

  border-radius: 36px;

  border: 1px solid rgba(255,255,255,0.5);

  box-shadow:
    0 25px 50px rgba(0,0,0,0.06);
}

.booking-header {
  text-align: center;
  margin-bottom: 35px;
}

.booking-header p {
  color: #6b7280;
}

.booking-form {
  display: grid;
  gap: 20px;
}

.booking-form label {
  display: grid;
  gap: 10px;

  font-weight: 600;
  color: #374151;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;

  padding: 16px 18px;

  border-radius: 18px;

  border: 1px solid #e5e7eb;

  background: rgba(255,255,255,0.8);

  font-size: 1rem;
  font-family: inherit;

  transition: 0.25s ease;
}

.booking-form textarea {
  min-height: 130px;
  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 {
  color: #6b7280;
  font-size: 0.9rem;
}

.day-display {
  color: #ec4899;
  font-weight: 600;
  font-size: 0.9rem;
}

#success-message {
  margin-top: 20px;

  background: #dcfce7;
  color: #166534;

  padding: 16px;

  border-radius: 16px;

  font-weight: 700;
}

/* WHATSAPP */

.whatsapp-btn {
  display: inline-block;

  margin-top: 24px;

  padding: 15px 22px;

  border-radius: 999px;

  background: #dcfce7;
  color: #166534;

  text-decoration: none;
  font-weight: 700;

  transition: 0.25s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);

  background: #bbf7d0;
}

/* CONTACT */

.contact-grid {
  margin-top: 50px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 24px;
}

.contact-grid div {
  background: white;

  border-radius: 24px;

  padding: 30px;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.04);
}

.contact-grid h3 {
  margin-bottom: 12px;
}

/* FOOTER */

.footer {
  text-align: center;

  padding: 40px 20px;

  color: #6b7280;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(40px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */

@media (max-width: 768px) {

  .nav {
    width: calc(100% - 20px);

    padding: 14px 18px;

    flex-direction: column;
    gap: 14px;

    top: 10px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .hero {
    justify-content: center;

    text-align: center;

    padding: 140px 20px 80px;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(255,250,247,0.5),
        rgba(255,250,247,0.95)
      ),
      url("images/bg 1.png") center / cover no-repeat;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .stats {
    gap: 30px;
  }

  .booking {
    width: calc(100% - 24px);

    padding: 35px 20px;
  }

  .services,
  .experience,
  .why-us,
  .how-it-works,
  .contact {
    margin: 80px auto;
  }
}
