*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#111;
  overflow-x:hidden;
}

/* HEADER */
.header{
  position:fixed;
  top:20px;
  left:50%;
  transform:translateX(-50%);
  width:95%;
  padding:12px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-radius:5px;
  border:1px solid rgba(255,215,0,0.2);
  z-index:999;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:gold;
  font-weight:600;
}

.logo img{
  height:60px;
}

.nav ul{
  display:flex;
  gap:35px;
  list-style:none;
}

.nav a{
  color:white;
  text-decoration:none;
  font-size:15px;
  position:relative;
  transition:.3s;
}

.nav a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-6px;
  width:0;
  height:2px;
  background:gold;
  transition:.3s;
  transform:translateX(-50%);
}

.nav a:hover::after{
  width:100%;
}

.right{
  display:flex;
  align-items:center;
  gap:15px;
}

.menu-toggle{
  display:none;
  font-size:30px;
  color:white;
  cursor:pointer;
  z-index:1001;
}

/* BUTTON */
.book-btn{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  margin-top: 10px;
  align-items:center;
  justify-content:center;
  padding:10px 30px;
  border:none;
  border-radius:4px;
  background:linear-gradient(120deg,#d1c499,#f8e7b5,#c59b3b,#f8e7b5,#d1c499);
  background-size:300% 300%;
  color:#000;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  letter-spacing:.5px;
  cursor:pointer;
  animation:luxuryShine 5s linear infinite;
  transition:.35s;
}

.book-btn::before{
  content:"";
  position:absolute;
  top:-120%;
  left:-40%;
  width:40px;
  height:300%;
  background:rgba(255,255,255,.45);
  transform:rotate(25deg);
  animation:glassMove 3s linear infinite;
}

.book-btn:hover{
  transform:translateY(-4px) scale(1.04);
  box-shadow:0 10px 25px rgba(197,155,59,.35),0 0 20px rgba(255,215,120,.18);
}

@keyframes luxuryShine{
  0%{background-position:0% 50%;}
  100%{background-position:100% 50%;}
}

@keyframes glassMove{
  0%{left:-40%;}
  100%{left:140%;}
}

/* HERO */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:1s ease;
}

.slide.active{
  opacity:1;
}

.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.8));
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;
  padding:20px;
}

.overlay h1{
  font-size:52px;
  margin-bottom:15px;
  font-family:'Cormorant Garamond',serif;
  height: 80px;
}

.overlay p{
  max-width:600px;
  font-size:18px;
  color:#ddd;
}

.buttons{
  margin-top:25px;
  display:flex;
  gap:15px;
}

.btn{
  padding:12px 28px;
  border-radius:3px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.btn.gold{
  background:linear-gradient(45deg,#d1c499,#c59b3b);
  color:black;
}

.btn.outline{
  border:1px solid #d1c499;
  color:#d1c499;
}

/* SERVICE */
.service-section{
  background:#080808;
  padding:90px 8%;
  color:#fff;
}

.service-head{
  text-align:center;
  margin-bottom:60px;
}

.service-head span,
.mini-title{
  color:#c89b3c;
  letter-spacing:5px;
  font-size:14px;
  font-weight:800;
}

.service-head h2{
  font-family:'Playfair Display',serif;
  font-size:56px;
  margin:22px 0 18px;
  color:#f5f1e8;
}

.service-head p{
  color:#cfc7ba;
  font-size:19px;
  max-width:720px;
  margin:auto;
  line-height:1.7;
}

.filter-tabs{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:55px;
}

.tab-btn{
  background:linear-gradient(120deg,#d1c499,#f8e7b5,#c59b3b,#f8e7b5,#d1c499);
  color:#0d0d0d;
  border:1px solid rgba(255,255,255,.13);
  padding:13px 32px;
  border-radius:4px;
  font-size:16px;
  cursor:pointer;
  transition:.3s;
}

.tab-btn:hover,
.tab-btn.active{
  background:linear-gradient(135deg,#c99a2e,#e3b64d,#b88422);
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.service-card{
  background:#171717;
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:32px;
  min-height:330px;
  transition:.35s;
}

.service-card:hover{
  transform:translateY(-8px);
  border-color:rgba(201,154,46,.5);
  box-shadow:0 20px 45px rgba(0,0,0,.55);
}

.service-card h3{
  font-family:'Playfair Display',serif;
  font-size:25px;
  color:#fff8ee;
  margin-bottom:20px;
}

.service-card p{
  color:#c8c1b7;
  line-height:1.8;
  font-size:16px;
  min-height:92px;
}

.card-line{
  height:1px;
  background:rgba(255,255,255,.08);
  margin:24px 0;
}

.time-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
}

.time-row select{
  width:130px;
  background:#0b0b0b;
  color:#d8c28b;
  border:1px solid rgba(201,154,46,.45);
  padding:11px 13px;
  border-radius:3px;
  outline:none;
}

.price{
  color:#d8c28b;
  font-size:16px;
  font-weight:800;
}

.addon{
  color:#8f8981;
  margin-top:18px;
  font-size:15px;
}

/* PACKAGE */
.package-section{
  padding:100px 7%;
  background:#090909;
  font-family:'Manrope',sans-serif;
}

.package-toggle{
  display:none;
}

.package-tabs{
  width:520px;
  max-width:100%;
  margin:0 auto 70px;
  background:#151515;
  border:1px solid rgba(255,255,255,.08);
  border-radius:6px;
  padding:7px;
  display:flex;
  position:relative;
}

.package-tabs::before{
  content:"";
  position:absolute;
  width:calc(50% - 7px);
  height:calc(100% - 14px);
  background:linear-gradient(135deg,#c79734,#e6c15f,#b88422);
  border-radius:4px;
  top:7px;
  left:7px;
  transition:.4s;
}

#couple:checked ~ .package-tabs::before{
  transform:translateX(100%);
}

.package-tabs label{
  width:50%;
  text-align:center;
  padding:10px;
  cursor:pointer;
  position:relative;
  z-index:2;
  color:#d9cfbf;
  font-size:14px;
  font-weight:800;
}

#solo:checked ~ .package-tabs label[for="solo"],
#couple:checked ~ .package-tabs label[for="couple"]{
  color:#000;
}

.package-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.package-card{
  background:#141414;
  border:1px solid rgba(255,255,255,.07);
  border-radius:18px;
  padding:24px 30px;
  min-height:145px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  transition:.35s;
}

.package-card:hover{
  transform:translateY(-7px);
  border-color:rgba(199,151,52,.55);
  box-shadow:0 18px 40px rgba(0,0,0,.45);
}

.package-card h3{
  color:#ede5da;
  font-size:15px;
  line-height:1.4;
  font-weight:700;
  max-width:75%;
}

.package-info{
  text-align:right;
  min-width:120px;
}

.package-info span{
  color:#b8aea2;
  font-size:15px;
  display:block;
  margin-bottom:10px;
  font-weight:600;
}

.package-info h4{
  color:#c79734;
  font-size:22px;
  font-family:'Cormorant Garamond',serif;
}

.couple-grid{
  display:none;
}

#solo:checked ~ .solo-grid{
  display:grid;
}

#solo:checked ~ .couple-grid{
  display:none;
}

#couple:checked ~ .solo-grid{
  display:none;
}

#couple:checked ~ .couple-grid{
  display:grid;
}

/* GALLERY */
.lux-gallery{
  padding:110px 7%;
  background:#070707;
  overflow:hidden;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:260px;
  gap:24px;
}

/* ITEM */
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  background:#111;
  cursor:pointer;
}

/* BIG CARD */
.gallery-item.big{
  grid-column:span 2;
  grid-row:span 2;
}

/* WIDE CARD */
.gallery-item.wide{
  grid-column:span 2;
}

/* IMAGE */
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:1s ease;
}

/* OVERLAY */
.gallery-overlay{
  position:absolute;
  inset:0;

  background:linear-gradient(
    to top,
    rgba(0,0,0,.88),
    rgba(0,0,0,.15)
  );

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  padding:30px;

  transition:.5s ease;
}

/* TITLE */
.gallery-overlay h3{
  color:#fff;
  font-size:30px;
  margin-bottom:8px;

  font-family:'Cormorant Garamond',serif;

  transform:translateY(25px);
  opacity:0;

  transition:.6s ease;
}

/* SUBTITLE */
.gallery-overlay span{
  color:#d6b15a;
  font-size:15px;
  letter-spacing:1px;

  transform:translateY(25px);
  opacity:0;

  transition:.8s ease;
}

/* IMAGE ZOOM */
.gallery-item:hover img{
  transform:scale(1.12);
}

/* OVERLAY DARK */
.gallery-item:hover .gallery-overlay{
  background:linear-gradient(
    to top,
    rgba(0,0,0,.95),
    rgba(0,0,0,.35)
  );
}

/* TEXT ANIMATION */
.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay span{
  transform:translateY(0);
  opacity:1;
}

/* GOLD SHINE */
.gallery-item::before{
  content:"";

  position:absolute;

  top:-120%;
  left:-40%;

  width:80px;
  height:300%;

  background:rgba(255,255,255,.18);

  transform:rotate(25deg);

  z-index:2;

  transition:1s ease;

  pointer-events:none;
}

.gallery-item:hover::before{
  left:140%;
}

/* ABOUT */
.about-spa{
  padding:110px 7%;
  background:#070707;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
  overflow:hidden;
}

.about-image{
  position:relative;
}

.about-image img{
  width:100%;
  height:720px;
  object-fit:cover;
  border-radius:24px;
  display:block;
}

.image-badge{
  position:absolute;
  bottom:35px;
  left:35px;
  background:rgba(15,15,15,.88);
  backdrop-filter:blur(12px);
  border:1px solid rgba(201,155,60,.35);
  padding:22px 28px;
  border-radius:18px;
}

.image-badge h3{
  color:#c89b3c;
  font-size:48px;
  font-family:'Cormorant Garamond',serif;
}

.image-badge span{
  color:#ddd;
  font-size:15px;
}

.about-content{
  color:#fff;
}

.about-content h2{
  font-size:68px;
  line-height:1.1;
  margin:24px 0;
  color:#f4ede2;
  font-family:'Cormorant Garamond',serif;
}

.about-content p{
  color:#b8aea2;
  line-height:2;
  font-size:18px;
  margin-bottom:45px;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  margin-bottom:45px;
}

.feature-card{
  background:#131313;
  border:1px solid rgba(255,255,255,.07);
  border-radius:18px;
  padding:24px;
  display:flex;
  gap:18px;
  transition:.35s;
}

.icon-box{
  min-width:60px;
  height:60px;
  background:linear-gradient(135deg,#c89b3c,#e8c86b,#b88422);
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon-box i{
  color:#000;
  font-size:24px;
}

.feature-text h3{
  color:#f5eee4;
  font-size:20px;
  margin-bottom:8px;
}

.feature-text p{
  margin:0;
  color:#aaa095;
  font-size:15px;
  line-height:1.7;
}

.about-btn{
  display:inline-block;
  padding:15px 34px;
  background:linear-gradient(135deg,#c89b3c,#e7bf5d,#b88422);
  color:#000;
  text-decoration:none;
  font-weight:700;
  border-radius:6px;
}

/* CONTACT */
.lux-contact{
  padding:50px 7%;
  background:#070707;
}

.contact-top{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
  margin-bottom:40px;
}

.contact-details,
.contact-form-box{
  background:#111;
  border:1px solid rgba(255,255,255,.07);
  border-radius:24px;
  padding:45px;
}

.contact-details h2{
  font-size:60px;
  line-height:1.1;
  margin:20px 0;
  color:#f4ede2;
  font-family:'Cormorant Garamond',serif;
}

.contact-details p{
  color:#aaa095;
  font-size:17px;
  line-height:1.9;
  margin-bottom:40px;
}

.detail-box{
  display:flex;
  align-items:center;
  gap:18px;
  padding:20px;
  border-radius:18px;
  background:#161616;
  margin-bottom:18px;
}

.detail-icon{
  min-width:65px;
  height:65px;
  border-radius:16px;
  background:linear-gradient(135deg,#c89b3c,#e7bf5d,#b88422);
  display:flex;
  align-items:center;
  justify-content:center;
}

.detail-icon i{
  color:#000;
  font-size:24px;
}

.detail-text h3{
  color:#fff;
  font-size:20px;
  margin-bottom:6px;
}

.detail-text span{
  color:#aaa095;
  font-size:15px;
}

.contact-form-box h3{
  color:#f5eee4;
  font-size:42px;
  margin-bottom:30px;
  font-family:'Cormorant Garamond',serif;
}

.input-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:18px;
}

.contact-form-box input,
.contact-form-box textarea{
  width:100%;
  background:#0c0c0c;
  border:1px solid rgba(255,255,255,.06);
  border-radius:12px;
  padding:16px 18px;
  color:#fff;
  outline:none;
  font-size:15px;
}

.contact-form-box textarea{
  height:170px;
  resize:none;
  margin-bottom:22px;
}

.contact-form-box button{
  width:100%;
  border:none;
  padding:17px;
  border-radius:8px;
  background:linear-gradient(135deg,#c89b3c,#e7bf5d,#b88422);
  color:#000;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
}

.map-area{
  height:420px;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.07);
}

.map-area iframe{
  width:100%;
  height:100%;
  border:none;
  filter:grayscale(100%) invert(92%);
}

/* FOOTER */
.lux-footer{
  background:#050505;
  padding-top:100px;
  position:relative;
  overflow:hidden;
}

.footer-top{
  padding:0 7% 70px;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.2fr;
  gap:50px;
  border-bottom:1px solid rgba(255,255,255,.07);
}

.footer-box h2{
  color:#f4ede2;
  font-size:48px;
  margin-bottom:18px;
  font-family:'Cormorant Garamond',serif;
}

.footer-box h3{
  color:#fff;
  font-size:24px;
  margin-bottom:28px;
}

.footer-about p,
.footer-box ul li a,
.footer-contact span{
  color:#aaa095;
  line-height:2;
  font-size:16px;
  text-decoration:none;
}

.footer-box ul{
  list-style:none;
}

.footer-box ul li{
  margin-bottom:16px;
}

.footer-social{
  display:flex;
  gap:14px;
}

.footer-social a{
  width:48px;
  height:48px;
  border-radius:14px;
  background:#111;
  border:1px solid rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#c89b3c;
  font-size:18px;
  text-decoration:none;
}

.footer-contact{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.footer-contact i{
  color:#c89b3c;
}

.footer-bottom{
  padding:28px 7%;
  text-align:center;
}

.footer-bottom p{
  color:#7d756c;
  font-size:15px;
}

/* TABLET */
@media(max-width:1024px){
  .service-grid,
  .package-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .about-spa,
  .contact-top{
    grid-template-columns:1fr;
  }

  .footer-top{
    grid-template-columns:repeat(2,1fr);
  }

  .about-content h2,
  .contact-details h2{
    font-size:50px;
  }
}

/* MOBILE */
@media(max-width:768px){
  .header{
    top:10px;
    width:92%;
    padding:10px 14px;
  }

  .logo img{
    height:45px;
  }

  .menu-toggle{
    display:block;
  }

  .nav{
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    width:100%;
    background:#080808;
    border:1px solid rgba(255,215,0,.25);
    border-radius:8px;
    padding:20px 0;
    display:none;
    z-index:1000;
  }

  .nav.active{
    display:block;
  }

  .nav ul{
    flex-direction:column;
    gap:18px;
    text-align:center;
  }

  .right{
    display:none;
  }

  .overlay h1{
    font-size:32px;
    line-height:1.2;
    margin-top: 70px;
   
  }

  .overlay p{
    font-size:15px;
  }

  .buttons{
    flex-direction:column;
    width:100%;
  }

  .btn{
    width:100%;
    text-align:center;
  }

  .service-section,
  .package-section,
  .lux-gallery,
  .about-spa,
  .lux-contact{
    padding:60px 5%;
  }

  .service-head h2{
    font-size:34px;
  }

  .service-head p{
    font-size:15px;
  }

  .service-grid,
  .package-grid,
  .gallery-grid,
  .feature-grid,
  .footer-top{
    grid-template-columns:1fr;
  }

  .service-card{
    min-height:auto;
    padding:24px;
  }

  .service-card p{
    min-height:auto;
  }

  .time-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .time-row select{
    width:100%;
  }

  .package-card{
    flex-direction:column;
  }

  .package-card h3{
    max-width:100%;
  }

  .package-info{
    text-align:left;
  }

  .gallery-grid{
    grid-auto-rows:240px;
  }

  .gallery-item.big,
  .gallery-item.wide{
    grid-column:auto;
    grid-row:auto;
  }

  .about-image img{
    height:420px;
  }

  .image-badge{
    left:18px;
    bottom:18px;
    padding:15px 18px;
  }

  .image-badge h3{
    font-size:34px;
  }

  .about-content h2,
  .contact-details h2{
    font-size:36px;
  }

  .about-content p,
  .contact-details p{
    font-size:15px;
  }

  .input-row{
    grid-template-columns:1fr;
  }

  .contact-details,
  .contact-form-box{
    padding:24px;
  }

  .contact-form-box h3{
    font-size:34px;
  }

  .map-area{
    height:300px;
  }

  .footer-box h2{
    font-size:34px;
  }
  .book-btn
  {

padding: 8px 15px;
margin-top: 5px;
  }
}

/* SMALL MOBILE */
@media(max-width:480px){
  .overlay h1{
    font-size:26px;
    margin-top: 10px;
  }

  .service-head h2{
    font-size:28px;
  }

  .tab-btn{
    padding:10px 16px;
    font-size:13px;
  }

  .about-image img{
    height:340px;
  }

  .about-content h2,
  .contact-details h2{
    font-size:30px;
  }

  .detail-box,
  .feature-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-social{
    flex-wrap:wrap;
  }
}