*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI',sans-serif;
}

body{
  background:#0b0b1e;
  color:#fff;
}

/* ================= NAVBAR ================= */
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:linear-gradient(90deg,#7b2cbf,#ff4d6d);
  padding:15px 5%;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:20px;
  font-weight:bold;
  color:#fff;
}

.nav-links{
  display:flex;
  gap:20px;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  padding:8px 14px;
  border-radius:20px;
  transition:.3s;
}

.nav-links a:hover{
  background:#ffd166;
  color:#000;
}

/* ACTIVE PAGE */
.nav-links a.active{
  background:#ffd166;
  color:#000;
}

/* MOBILE MENU */
.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* ================= HERO ================= */
.hero{
  height:100vh;
  background:url("k57.jpeg") center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
  color:white;
}

/* Dark Overlay */
.hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
}

.hero div{
  position:relative;
  z-index:2;
}

.hero h1{
  font-size:50px;
  margin-bottom:20px;
}

.hero p{
  font-size:20px;
  margin-bottom:25px;
}

.btn{
  padding:12px 25px;
  background:#ffd166;
  color:black;
  text-decoration:none;
  border-radius:30px;
  font-weight:bold;
  transition:0.3s;
}

.btn:hover{
  background:white;
}

/* ================= SECTION ================= */
.section{
  padding:70px 8%;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:25px;
}

.card{
  background:#1c1c3a;
  padding:25px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 0 20px rgba(255,77,109,.4);
  transition:.3s;
}
.card:hover{
  transform:translateY(-8px);
}

/* ================= PACKAGES ================= */
.packages{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.box{
  background:#1c1c3a;
  padding:30px;
  border-radius:22px;
  box-shadow:0 0 18px rgba(123,44,191,.5);
  transition:.3s;
}
.box:hover{
  transform:scale(1.05);
}

.price{
  margin:10px 0;
  font-size:20px;
  color:#00ffcc;
}

/* ================= FORMS ================= */
input,select,button{
  width:100%;
  padding:12px;
  margin:10px 0;
  border:none;
  border-radius:12px;
}

input,select{
  background:#fff;
}

button{
  background:#ffd166;
  font-weight:bold;
  cursor:pointer;
}

button:hover{
  opacity:.9;
}

/* ================= GALLERY ================= */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.gallery img{
  width:100%;
  border-radius:20px;
  box-shadow:0 0 20px rgba(255,209,102,.5);
}

/* ================= FOOTER ================= */
footer{
  text-align:center;
  padding:20px;
  background:#000;
  margin-top:40px;
}

/* ================= FORM CONTAINER ================= */

.form-container{
  width:100%;
  max-width:550px;
  margin:70px auto;
  background:#1c1c3a;
  padding:45px;
  border-radius:24px;
  box-shadow:0 0 25px rgba(123,44,191,.4);
  text-align:center;
}

.form-container h2{
  margin-bottom:20px;
  font-size:26px;
}

.form-container input,
.form-container select,
.form-container button{
  width:100%;
  padding:14px;
  margin:12px 0;
  border:none;
  border-radius:14px;
  font-size:15px;
}

.form-container input,
.form-container select{
  background:#fff;
}

.form-container button{
  background:#ffd166;
  font-weight:bold;
  cursor:pointer;
  transition:.3s;
}

.form-container button:hover{
  transform:scale(1.03);
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .nav-links{
    position:absolute;
    top:70px;
    right:0;
    background:#1c1c3a;
    flex-direction:column;
    width:200px;
    padding:20px;
    display:none;
  }

  .nav-links.show{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .form-container{
    max-width:90%;
    padding:30px;
  }

  .hero h1{
    font-size:32px;
  }

  .hero p{
    font-size:16px;
  }
}

/* ================= GLOBAL BACKGROUND (Except Admin) ================= */
body:not(.admin-page){
  background:url("k57.jpeg") center/cover no-repeat fixed;
  position:relative;
}

body:not(.admin-page)::before{
  content:"";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  z-index:-1;
}

/* ================= ADMIN PAGE BACKGROUND REMOVE ================= */
body.admin-page{
  background:#0b0b1e;
}
