
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#fff;
  overflow-x:hidden;
}

/* NAVBAR */

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:18px 6%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(12px);
  z-index:1000;
}

.logo{
  color:white;
  font-weight:700;
}

/* MENU BUTTON */

.menu-btn{
  background:linear-gradient(135deg,#c6417f,#b02775);
  color:white;
  border:none;
  padding:10px 18px;
  border-radius:30px;
  cursor:pointer;
  transition:0.3s ease;
}

.menu-btn:hover{
  transform:scale(1.05);
}

/* NAV OVERLAY */

.nav-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,0.88);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2000;
}

.nav-overlay.active{
  display:flex;
}

.nav-center{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.nav-center a{
  color:white;
  text-decoration:none;
  font-size:1.7rem;
  transition:0.3s ease;
}

.nav-center a:hover{
  color:#ff3f7f;
  transform:scale(1.1);
}

.close-btn{
  padding:10px 18px;
  border:none;
  border-radius:30px;
}

/* HERO */

.booking-hero{
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:140px 20px 60px;

  background:
    linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
    url('WhatsApp%20Image%202026-05-08%20at%2021.52.47.jpeg');

  background-size:cover;
  background-position:center;

  color:white;
}

/* SERVICES */

.services-section{
  padding:80px 6%;
}

.services-section h2{
  text-align:center;
  margin-bottom:50px;
  font-size:2.5rem;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.service-card{
  position:relative;
  height:420px;
  border-radius:25px;
  overflow:hidden;
}

.service-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.service-overlay{
  position:absolute;
  bottom:-100%;
  width:100%;
  height:60%;
  background:rgba(0,0,0,0.82);
  color:white;
  padding:25px;
  transition:0.4s ease;
}

.service-card:hover .service-overlay{
  bottom:0;
}

/* BUTTON */

.book-btn{
  margin-top:15px;
  padding:12px 22px;
  border:none;
  border-radius:30px;
  background:#25D366;
  color:white;
  cursor:pointer;
  transition:0.3s ease;
}

.book-btn:hover{
  background:#ff3f7f;
  transform:scale(1.05);
}

/* POPUP */

.booking-popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,0.8);
  display:none;
  align-items:center;
  justify-content:center;
}

.booking-popup.active{
  display:flex;
}

.booking-box{
  background:white;
  padding:35px;
  border-radius:25px;
  width:90%;
  max-width:450px;
}

#bookingForm{
  display:flex;
  flex-direction:column;
  gap:18px;
}

#bookingForm input,
#bookingForm select{
  padding:14px;
  border:1px solid #ddd;
  border-radius:12px;
}

.submit-btn{
  padding:14px;
  border:none;
  border-radius:30px;
  background:#25D366;
  color:white;
  cursor:pointer;
}

.submit-btn:hover{
  background:#ff3f7f;
}

.cancel-btn{
  padding:14px;
  border:none;
  border-radius:30px;
}