@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
  scroll-behavior:smooth;
}

body{
  background:#060712;
  color:#fff;
  overflow-x:hidden;
}

a{ color:inherit; }

.container{
  width:min(1200px, 92%);
  margin:0 auto;
}

.btn{
  padding:10px 16px;
  border-radius:12px;
  background:#111;
  color:#fff;
  text-decoration:none;
  border:1px solid rgba(255,255,255,0.15);
  transition:0.25s;
  font-weight:600;
  display:inline-block;
}

.btn:hover{ transform:translateY(-2px); }

.btn.small{
  padding:8px 12px;
  font-size:13px;
}

.btn.outline{ background:transparent; }

.btn.glow{
  border:none;
  background: linear-gradient(90deg,#ffcc00,#ff2bd6);
  color:#000;
  box-shadow: 0 0 18px rgba(255,43,214,0.25);
}

.section{
  padding:70px 0;
}

.section-title{
  text-align:center;
  margin-bottom:28px;
}

.section-title h2{
  font-size:34px;
  font-weight:800;
}

.section-title p{
  opacity:0.75;
  margin-top:8px;
}

/* NAVBAR */
.navbar{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(0,0,0,0.65);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.nav-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
}

.nav-left{
  display:flex;
  gap:12px;
  align-items:center;
}

.logo{
  width:52px;
  height:52px;
  object-fit:contain;
}

.brand h2{
  font-size:18px;
  font-weight:800;
}

.brand p{
  font-size:12px;
  opacity:0.7;
}

.nav-links{
  display:flex;
  gap:18px;
}

.nav-links a{
  text-decoration:none;
  opacity:0.8;
  font-size:14px;
}

.nav-links a:hover{ opacity:1; }

.nav-btns{
  display:flex;
  gap:10px;
}

.menu-btn{
  display:none;
  font-size:22px;
  background:transparent;
  border:none;
  color:#fff;
  cursor:pointer;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  background:#0b0c1a;
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,0.08);
}

.mobile-menu a{
  text-decoration:none;
  padding:10px 0;
  opacity:0.85;
}

.mobile-menu a:hover{ opacity:1; }

/* HERO */
.hero{
  padding:60px 0 40px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:40px;
  align-items:center;
}

.tag{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  font-size:13px;
  margin-bottom:16px;
}

.hero h1{
  font-size:52px;
  line-height:1.1;
  font-weight:800;
}

.hero h1 span{
  background: linear-gradient(90deg,#ffcc00,#ff2bd6);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero p{
  margin-top:16px;
  opacity:0.8;
  max-width:520px;
  font-size:15px;
}

.hero-buttons{
  margin-top:22px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero-stats{
  margin-top:26px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.stat{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  padding:14px 16px;
  border-radius:16px;
  min-width:150px;
}

.stat h3{ font-size:22px; }
.stat p{ opacity:0.75; font-size:13px; }

/* CEO CARD */
.profile-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:22px;
  padding:18px;
  text-align:center;
  box-shadow: 0 0 40px rgba(255, 43, 214, 0.08);
}

.profile-img{
  width:140px;
  height:140px;
  margin:0 auto 12px;
  border-radius:50%;
  overflow:hidden;
  border:3px solid rgba(255,255,255,0.12);
}

.profile-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.ceo-name{ font-size:22px; font-weight:800; }
.ceo-role{ opacity:0.8; margin-top:4px; }
.ceo-loc{ margin-top:8px; opacity:0.75; font-size:14px; }

.profile-actions{
  margin-top:16px;
  display:flex;
  justify-content:center;
  gap:10px;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap:16px;
}

.card{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  transition:0.25s;
}

.card:hover{
  transform:translateY(-6px);
  border:1px solid rgba(255,43,214,0.25);
}

.card h3{ margin-bottom:8px; }
.card p{ opacity:0.75; font-size:14px; }

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:16px;
}

.gallery-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.1);
  transition:0.25s;
}

.gallery-grid img:hover{
  transform:scale(1.03);
  border:1px solid rgba(255,43,214,0.25);
}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap:16px;
  margin-bottom:22px;
}

.contact-box{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
}

.contact-box a{
  color:#ffcc00;
  text-decoration:none;
}

.form-box{
  max-width:750px;
  margin:0 auto;
  padding:22px;
  border-radius:20px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
}

.form-box h3{
  text-align:center;
  margin-bottom:12px;
}

form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

input, textarea{
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background:#0c0d1c;
  color:#fff;
  outline:none;
}

textarea{
  min-height:110px;
  resize:none;
}

/* MAP */
.map{
  margin-top:18px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.1);
}

/* FOOTER */
.footer{
  text-align:center;
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,0.08);
  opacity:0.7;
}

/* PAGE HEADER */
.page-head{
  padding:45px 0 20px;
  text-align:center;
}

.page-head h1{
  font-size:42px;
  font-weight:800;
}

.page-head p{
  margin-top:10px;
  opacity:0.75;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .nav-links, .nav-btns{
    display:none;
  }
  .menu-btn{
    display:block;
  }
  .hero-grid{
    grid-template-columns:1fr;
  }
  .hero h1{
    font-size:40px;
  }
}

/* FLOATING WHATSAPP */
.float-wa{
  position:fixed;
  bottom:18px;
  right:18px;
  z-index:9999;
  background: linear-gradient(90deg,#25D366,#00ff99);
  color:#000;
  padding:12px 16px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  box-shadow: 0 0 25px rgba(37,211,102,0.25);
}

/* BOOKING FORM */
.booking-box{
  max-width:850px;
  margin:0 auto;
  padding:22px;
  border-radius:20px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

select{
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background:#0c0d1c;
  color:#fff;
  outline:none;
}

@media(max-width: 700px){
  .grid-2{
    grid-template-columns:1fr;
  }
}

/* ADMIN TABLE */
.table-wrap{
  overflow:auto;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.08);
}

table{
  width:100%;
  border-collapse:collapse;
  min-width:700px;
  background:rgba(255,255,255,0.03);
}

th, td{
  padding:12px;
  text-align:left;
  border-bottom:1px solid rgba(255,255,255,0.06);
  font-size:14px;
}

th{
  background:rgba(255,255,255,0.06);
  font-weight:800;
}

