/* =========================
   PREMIUM FOOTER
========================= */
.footer{
  background:#0b1815;
  color:#fff;
  padding:70px 0 30px;
}

/* LOGO */
.footer-logo{
  font-family:'Playfair Display', serif;
  color:#c6a45c;
  margin-bottom:15px;
}

/* TEXT */
.footer-text{
  opacity:0.8;
  font-size:14px;
}

/* HEADINGS */
.footer-heading{
  color:#c6a45c;
  margin-bottom:15px;
}

/* LINKS */
.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:8px;
}

.footer-links a{
  color:#ccc;
  text-decoration:none;
  transition:0.3s;
}

.footer-links a:hover{
  color:#c6a45c;
  padding-left:5px;
}

/* SOCIAL ICONS */
.footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  margin-right:10px;
  background:#162b27;
  border-radius:50%;
  color:#fff;
  transition:0.3s;
}

.footer-social a:hover{
  background:#c6a45c;
  color:#000;
  transform:translateY(-3px);
}

/* BOTTOM */
.footer-bottom{
  margin-top:20px;
}

.footer-bottom p{
  margin:5px 0;
  font-size:14px;
  opacity:0.8;
}

/* DEV CREDIT */
.dev-credit a{
  color:#c6a45c;
  text-decoration:none;
}

.dev-credit a:hover{
  text-decoration:underline;
}

/* LINE */
.footer hr{
  border-color:rgba(255,255,255,0.1);
}

















/* =========================
   PACKAGE IMAGE FIX (PRO)
========================= */

.package-card{
  background:#162b27;
  border-radius:12px;
  overflow:hidden;
  transition:0.3s;
  height:100%;
  display:flex;
  flex-direction:column;
}

/* IMAGE CONTAINER */
.package-card img{
  width:100%;
  height:220px;          /* 🔥 FIXED HEIGHT */
  object-fit:cover;      /* 🔥 CROPS CLEAN */
  border-radius:12px 12px 0 0;
}

/* CONTENT ALIGN */
.package-card h5{
  margin-top:15px;
}

.package-card p{
  margin:5px 0;
}

.package-card h6{
  color:#c6a45c;
  margin-bottom:15px;
}

/* HOVER EFFECT */
.package-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.5);
}




@media(max-width:768px){
  .package-card img{
    height:180px;
  }
}




/* =========================
   GLOBAL STYLES
========================= */
body{
  font-family:'Inter', sans-serif;
  background:#0f1f1c;
  color:#fff;
  margin:0;
  overflow-x:hidden;
}

h1,h2,h3,h4,h5{
  font-family:'Playfair Display', serif;
  letter-spacing:1px;
}

/* =========================
   NAVBAR
========================= */
/* =========================
   PREMIUM NAVBAR
========================= */
.navbar{
  background:transparent; /* 🔥 initially transparent */
  padding:15px 0;
  transition:all 0.4s ease;
}

/* GLASS EFFECT */
.navbar.scrolled{
  background:rgba(15,31,28,0.9); /* dark green glass */
  backdrop-filter:blur(10px);
  box-shadow:0 5px 20px rgba(0,0,0,0.3);
}

/* NAV LINKS */
.nav-link{
  color:#fff !important;
  font-weight:500;
  margin:0 10px;
  position:relative;
}

/* HOVER UNDERLINE EFFECT */
.nav-link::after{
  content:'';
  position:absolute;
  width:0;
  height:2px;
  bottom:-5px;
  left:0;
  background:#c6a45c;
  transition:0.3s;
}

.nav-link:hover::after{
  width:100%;
}

/* LOGO */
.logo{
  height:45px;
}

/* DEFAULT */
.logo{
  filter:brightness(0) invert(1); /* white */
}

/* ON SCROLL */
.navbar.scrolled .logo{
  filter:none; /* original color */
}





/* BUTTON */
/* DEFAULT BUTTON */
.btn-gold{
  background:linear-gradient(135deg,#c6a45c,#e0c27a);
  color:#000;
  font-weight:600;
  border:none;
  padding:10px 22px;
  border-radius:6px;
  transition:0.3s;
}

/* HOVER */
.btn-gold:hover{
  background:#c6a45c;
  color:#000;
}

/* MOBILE FIX */
@media(max-width:768px){

  .btn-gold{
    width:100%;
    display:block;
    margin-top:10px;
    text-align:center;
    background:#c6a45c; /* solid for visibility */
    color:#000;
  }

}


@media(max-width:768px){
  .navbar{
    background:#0f1f1c;
  }

  .navbar-collapse{
    background:#0f1f1c;
    margin-top:10px;
    border-radius:10px;
  }
}


@media(max-width:768px){
  .logo{
    height:35px;
  }
}

/* =========================
   HERO
========================= */





/* HERO CENTER */
.hero .container{
  position:relative;
  z-index:2;
}

/* TEXT CENTER */
.hero-left{
  margin-top:80px;
}

/* BOOKING FULL WIDTH LOOK */
.booking-box{
  max-width:500px;
  margin:0 auto;
}

/* MOBILE PERFECT */
@media(max-width:768px){

  .hero{
    height:auto;
    padding:80px 0;
  }

  .hero-left{
    margin-top:40px;
  }

  .booking-box{
    width:100%;
    max-width:100%;
  }

}










.booking-box{
  margin-top:10px;
  border:4px solid rgba(0,0,0,0.05);
}





.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden; 
}




















.parallax-bg{
  position:absolute;
  width:100%;
  height:100%;
  background:url('../images/kashmir.jpg') center/cover no-repeat;
  z-index:-2;
}

.parallax-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  z-index:-1;
}

.hero h1{
  font-size:52px;
  margin-bottom:15px;
}

.hero p{
  font-size:18px;
  margin-bottom:20px;
}

/* =========================
   BUTTONS
========================= */
.btn-gold{
  background:linear-gradient(135deg,#c6a45c,#e0c27a);
  color:#000;
  font-weight:600;
  border:none;
  padding:12px;
  border-radius:6px;
  transition:0.3s;
}

.btn-gold:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(198,164,92,0.4);
}

/* =========================
   BOOKING FORM
========================= */
.booking-box{
  background:#fff;
  color:#000;
  border-radius:20px;
  padding:30px;
  max-width:380px;
  box-shadow:0 20px 60px rgba(0,0,0,0.4);
}

.form-control{
  border-radius:12px;
  padding:14px;
  font-size:16px;
  border:1px solid #ddd;
}

.form-control:focus{
  border-color:#c6a45c;
  box-shadow:none;
}

/* =========================
   SECTIONS
========================= */
.section{
  padding:100px 0;
}

/* =========================
   SERVICES
========================= */
.services-section{
  background:#0f1f1c;
}

.service-card{
  background:#162b27;
  padding:30px;
  border-radius:12px;
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-8px);
}

/* =========================
   âœ… FLEET (FINAL STABLE FIX)
========================= */
.fleet-section{
  position:relative;
  overflow:hidden;
  padding:110px 0;
  text-align:center;
}

/* BACKGROUND */

  .fleet-bg{
  position:absolute;
  top:-60%;   /* ðŸ”¥ KEY FIX */
  left:0;
  width:100%;
  height:140%;  /* bigger for smooth coverage */
  background:url('../images/kashmir2.jpg') center top/cover no-repeat;
  z-index:-2;
}

/* OVERLAY */
.fleet-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  z-index:-1;
}

/* CONTENT */
.fleet-section .container{
  position:relative;
  z-index:2;
}

/* HEADING */
.fleet-section h2{
  margin-bottom:40px;
}

/* ROW */
.fleet-section .row{
  justify-content:center;
}

/* CARDS */
.fleet-card{
  background:#1f2f2b;
  padding:15px;
  border-radius:7px;
  transition:0.9s;
}

.fleet-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 40px rgba(0,0,0,0.4);
}

/* IMAGE FIX */
.fleet-card img{
  height:100%;
  width:100%;
  object-fit:contain;
  background:#fff;
  padding:10px;
  border-radius:10px;
  margin-bottom:15px;
}

/* =========================
   PACKAGES
========================= */
.packages-section{
  background:#0f1f1c;
}

.package-card{
  background:#162b27;
  border-radius:12px;
  overflow:hidden;
  transition:0.3s;
}

.package-card:hover{
  transform:translateY(-8px);
}

/* =========================
   CONTACT
========================= */
.contact-section{
  padding:100px 0;
  text-align:center;
}

.contact-icons{
  display:flex;
  justify-content:center;
  gap:15px;
}

.contact-icons a{
  width:60px;
  height:60px;
  background:#162b27;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
}

.contact-icons a:hover{
  background:#c6a45c;
  color:#000;
}

/* =========================
   FOOTER
========================= */
.footer{
  background:#0d0d0d;
  padding:30px;
}

/* =========================
   MOBILE FIX
========================= */
@media(max-width:768px){

  .hero h1{
    font-size:32px;
  }

  .hero .row{
    flex-direction:column;
    text-align:center;
  }

  .booking-box{
    margin-top:20px;
  }

  .fleet-section{
    padding:70px 0;
  }


}





@media(max-width:768px){

  /* STACK HERO CONTENT */
  .hero .row{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  /* TEXT SECTION */
  .hero .col-lg-6{
    width:100%;
    padding:20px;
  }

  /* FORM SECTION */
  .hero .col-lg-5{
    width:100%;
    max-width:100%;
    margin-top:20px;
    padding:0 15px;
    display:block;
  }

  /* BOOKING BOX FULL WIDTH */
  .booking-box{
    width:100%;
    max-width:100%;
    padding:20px;
    border-radius:16px;
  }

  /* INPUTS */
  .form-control{
    width:100%;
    font-size:14px;
    padding:12px;
  }

  /* BUTTON */
  .btn-gold{
    width:100%;
    font-size:15px;
  }

}









@media(max-width:768px){

  .navbar .btn-gold{
    display:block;
    width:100%;
    padding:14px;

    background:#c6a45c;
    color:#000;

    font-weight:600;
    font-size:16px;
    text-align:center;

    border-radius:10px;
    margin-top:15px;

    box-shadow:0 6px 20px rgba(0,0,0,0.3);
  }

}








.navbar-toggler{
  border:3px solid rgba(255,255,255,0.9);
  padding:6px 10px;
  border-radius:8px;
}