/* =========================
   GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  padding-top:80px; /* Header height equal */
}

/* =========================
   MODERN HEADER
========================= */

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:80px;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
  z-index:9999;
  display:flex;
  align-items:center;
}

.container-nav{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo img{
  height:45px;
}

.nav-links{
  display:flex;
  gap:30px;
}

.nav-links a{
  text-decoration:none;
  color:#0b3d2e;
  font-weight:600;
  font-size:15px;
  transition:0.3s;
}

.nav-links a:hover{
  color:#ff6b00;
}

.menu-btn{
  display:none;
  font-size:24px;
  cursor:pointer;
  color:#0b3d2e;
}

/* =========================
   MOBILE HEADER
========================= */

@media(max-width:768px){

  body{
    padding-top:70px;
  }

  .header{
    height:70px;
  }

  .logo img{
    height:38px;
  }

  .nav-links{
    position:fixed;
    top:70px;
    right:-100%;
    width:220px;
    height:100vh;
    background:#ffffff;
    flex-direction:column;
    padding:40px 25px;
    gap:20px;
    transition:0.4s;
    box-shadow:-5px 0 20px rgba(0,0,0,0.1);
  }

  .nav-links.active{
    right:0;
  }

  .menu-btn{
    display:block;
  }
}

/* =========================
   HERO SECTION
========================= */

.hero{
  position:relative;
  height:calc(100vh - 80px);
  overflow:hidden;
}

.swiper{
  height:100%;
}

.swiper-slide{
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  position:relative;
}

.swiper-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
}

.hero-content h1{
  font-size:45px;
  font-weight:700;
}

.hero-content p{
  margin:15px 0;
  font-size:18px;
}

.hero-btn{
  display:inline-block;
  background:#ff6b00;
  padding:12px 30px;
  border-radius:30px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.hero-btn:hover{
  opacity:0.9;
}

/* MOBILE HERO */

@media(max-width:768px){

  .hero{
    height:380px;
  }

  .hero-content h1{
    font-size:26px;
  }

  .hero-content p{
    font-size:14px;
  }
}

/* =========================
   PACKAGE SECTION
========================= */

.container{
  width:90%;
  max-width:1200px;
  margin:80px auto;
}

.section-title{
  text-align:center;
  font-size:32px;
  font-weight:700;
  color:#0b3d2e;
  margin-bottom:50px;
}

.packages{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 30px rgba(0,0,0,0.08);
  transition:0.4s;
}

.card:hover{
  transform:translateY(-10px);
}

.card-img{
  position:relative;
}

.card-img img{
  width:100%;
  height:230px;
  object-fit:cover;
}

.badge{
  position:absolute;
  top:15px;
  left:15px;
  background:#ff0000;
  color:#fff;
  padding:6px 15px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
}

.location{
  position:absolute;
  bottom:15px;
  left:15px;
  background:#0b3d2e;
  color:#fff;
  padding:6px 15px;
  border-radius:20px;
  font-size:12px;
}

.card-body{
  padding:25px;
}

.card-body h3{
  margin-bottom:10px;
  color:#0b3d2e;
}

.card-body p{
  font-size:14px;
  color:#555;
  margin-bottom:15px;
}

.old-price{
  text-decoration:line-through;
  color:#888;
  font-size:14px;
}

.new-price{
  color:#ff6b00;
  font-size:20px;
  font-weight:700;
}

.btn-group{
  display:flex;
  gap:10px;
  margin-top:15px;
}

.btn{
  flex:1;
  padding:10px;
  text-align:center;
  border-radius:25px;
  font-size:14px;
  text-decoration:none;
  font-weight:600;
}

.view{
  background:#0b3d2e;
  color:#fff;
}

.book{
  background:#ff6b00;
  color:#fff;
}

.btn:hover{
  opacity:0.9;
}

/* =========================
   FOOTER
========================= */

.site-footer{
  background:#0f172a;
  color:#e2e8f0;
  padding:60px 20px 30px;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:40px;
}

.footer-brand h3{
  color:#ff8a00;
  margin-bottom:12px;
}

.footer-brand p{
  font-size:14px;
  line-height:1.6;
  color:#94a3b8;
}

.footer-links ul{
  list-style:none;
}

.footer-links li{
  margin:8px 0;
}

.footer-links a{
  text-decoration:none;
  color:#94a3b8;
  font-size:14px;
}

.footer-links a:hover{
  color:#ff8a00;
}

.footer-bottom{
  border-top:1px solid #1e293b;
  margin-top:40px;
  padding-top:20px;
  text-align:center;
}

.footer-bottom p{
  font-size:13px;
  color:#94a3b8;
}

/* =========================
   FLOATING BUTTONS
========================= */

.floating-contact{
  position:fixed;
  right:20px;
  bottom:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:9999;
}

.floating-contact a{
  text-decoration:none;
  color:#fff;
  font-size:14px;
  font-weight:600;
  padding:12px 18px;
  border-radius:50px;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
  transition:0.3s;
}

.whatsapp-btn{
  background:linear-gradient(45deg,#25D366,#128C7E);
}

.call-btn{
  background:linear-gradient(45deg,#007BFF,#0056b3);
}

.floating-contact a:hover{
  transform:translateY(-3px);
}