* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

#services,
#experience,
#booking,
#contact {
  scroll-margin-top: 120px;
}

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.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.portal-link {
  padding: 10px 18px;
  border-radius: 999px;
  background: #fde7f3;
  color: #be185d !important;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.portal-link:hover {
  transform: translateY(-2px);
}

.portal-link::after {
  display: none;
}

.portal-icon-btn {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.6);

  background-image: url("images/people-right-svgrepo-com.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;

  transition: 0.25s ease;
  cursor: pointer;
}

.portal-icon-btn:hover {
  transform: translateY(-2px) scale(1.04);
  background-color: #fde7f3;
  border-color: #f9a8d4;
  box-shadow: 0 12px 25px rgba(236, 72, 153, 0.16);
}

.portal-icon-btn:active {
  transform: scale(0.96);
}

.nav-links .portal-icon-btn::after {
  display: none !important;
  content: none !important;
}

.portal-icon-btn:hover::after {
  display: none !important;
  width: 0 !important;
}

.burger-icon,
.scissor-icon {
  display: none;
}

.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;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
  text-decoration: none;
  color: #111827;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;

  width: 0%;
  height: 2px;

  background: #ec4899;
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: #ec4899;
}

.nav-links a:hover::after {
  width: 100%;
}


/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 250, 247, 0.08) 0%,
      rgba(255, 250, 247, 0.45) 45%,
      rgba(255, 250, 247, 0.96) 100%
    ),
    url("images/bg 1.png") left center / cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -180px;
  right: -120px;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.18),
    transparent 70%
  );
  filter: blur(50px);
  z-index: -1;
}

.hero-inner {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  align-items: start;

  padding: 145px 7% 80px;

  gap: 0;
}

.hero-content {
  width: 100%;
  max-width: 760px;

  justify-self: end;

  animation: heroReveal 1s ease;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #3b2f2f;
  cursor: pointer;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  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, 5.5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -3px;
  color: #111827;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 680px;

  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;
  display: inline-block;
  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.75);
  color: #111827;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-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);
  -webkit-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;
}

.service-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* 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);
  -webkit-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: flex;
  justify-content: center;
  align-items: center;

  width: fit-content;

  margin: 24px auto 0;
  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: 30px 20px;

  background: #111827;
  color: #d1d5db;

  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;
}

.footer-portal-link {
  text-decoration: none;

  color: #f9a8d4;
  font-weight: 700;

  transition: 0.25s ease;
}

.footer-portal-link:hover {
  color: white;
}

.footer-copy {
  line-height: 1.7;
}

.footer-copy span {
  color: #9ca3af;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: none;
  transition: opacity 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

/* LAPTOP */

@media (min-width: 769px) and (max-width: 1500px) {

  .hero-inner {
    grid-template-columns: 0.7fr 1.3fr;

    padding-top: 180px;
    padding-right: 2%;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5vw, 4.8rem);
  }

}

/* MOBILE */

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .nav {
  position: fixed;
  top: 0;
  left: 0;
  transform: none;

  width: 100%;
  max-width: 100%;

  padding: 14px 18px;

  flex-direction: row;
  justify-content: flex-start;
  gap: 16px;
  display: flex;
  align-items: center;

  background: rgba(255, 248, 245, 0.96);
  backdrop-filter: blur(14px);

  border-radius: 0;
}

  .menu-toggle {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    position: relative;

    background: transparent;
    border: none;

    cursor: pointer;
  }

  .menu-toggle:hover {
    transform: scale(1.08);
  }

  .menu-toggle.active {
  transform: rotate(90deg);
}

  .burger-icon,
  .scissor-icon {
    display: block;

    position: absolute;

    font-size: 1.8rem;

    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .burger-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    font-size: 1.8rem;
  }

  .scissor-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;

  transform: scale(0.6) rotate(-45deg);

  color: #ec4899;
}

.scissor-icon svg {
  width: 25px;
  height: 25px;
}

  .menu-toggle.active .burger-icon {
    opacity: 0;
    transform: scale(0.6) rotate(45deg);
  }

  .menu-toggle.active .scissor-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }

  .logo {
    font-size: 0.95rem;
    line-height: 1.1;
    flex-shrink: 0;
    order: 2;
  }

  .logo span {
    font-size: 0.58rem;
    letter-spacing: 0.6px;
  }

   .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: auto;
    width: 230px;

    background: #fff8f5;
    border: 1px solid rgba(120, 80, 70, 0.15);
    border-radius: 18px;
    padding: 18px;

    display: flex;
    flex-direction: column;
    gap: 14px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.96);
    transform-origin: top left;

    pointer-events: none;

    box-shadow: 0 18px 40px rgba(60, 40, 35, 0.15);

    transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-links a {
    color: #3b2f2f;
    font-weight: 600;
  }

  .hero {
    min-height: 100svh;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 250, 247, 0.25) 0%,
        rgba(255, 250, 247, 0.76) 46%,
        rgba(255, 250, 247, 0.98) 100%
      ),
      url("images/bg 1.png") center / cover no-repeat;
  }

  .hero::after {
    width: 320px;
    height: 320px;
    top: 80px;
    right: -120px;
    filter: blur(40px);
  }

  .hero-inner {
    min-height: 100svh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 135px 20px 70px;
    text-align: center;
  }

  .hero-spacer {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
    line-height: 0.95;
    letter-spacing: -2px;
  }

  .hero-text {
    font-size: 1rem;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    gap: 10px;
  }

  .btn {
    padding: 14px 18px;
    font-size: 0.9rem;
  }

  .services,
  .experience,
  .why-us,
  .how-it-works,
  .contact {
    margin: 80px auto;
  }

  .experience-card {
    padding: 45px 22px;
  }

  .stats {
    gap: 30px;
  }

  .booking {
    width: calc(100% - 24px);
    padding: 35px 20px;
  }
}
.footer-content {
    flex-direction: inherit;
    text-align: center;
  }

.footer-copy span {
    display: block;
    margin-top: 2px;
  }

@media (max-width: 480px) {
  .nav-links a {
    display: block;
  }

  .hero-inner {
    padding-top: 125px;
  }

  .hero-label,
  .section-label {
    font-size: 0.72rem;
    padding: 9px 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

}
