/* GLOBAL */
/* body {
   font-family: 'Poppins', sans-serif;
}

/* HEADINGS (LUXURY LOOK) */
/* h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;

   margin: 0;
  padding: 0;
}
 */ */





html,
body{

   font-family: 'Poppins', sans-serif;
    overflow-x:hidden;
    width:100%;
}

/* HEADINGS (LUXURY LOOK) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;

   margin: 0;
  padding: 0;
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.container,
.container-fluid{
    max-width:100%;
}


.row{
    margin-left:0 !important;
    margin-right:0 !important;
}



.swiper{
    width:100%;
    overflow:hidden;
}

.swiper-slide{
    width:100%;
}


.hero-slider,
.hero-img,
.hero-content{
    width:100%;
    overflow:hidden;
}


@media(max-width:768px){

    .container{
        padding-left:15px !important;
        padding-right:15px !important;
    }

    .hero-content{
        padding:20px;
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.3;
    }
}



.luxury-modal{
    background: linear-gradient(135deg,#0f172a,#1e293b);
    border:none;
    border-radius:25px;
    overflow:hidden;
    color:#fff;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.modal-header{
    padding:30px 30px 10px;
}

.modal-subtitle{
    color:#fbbf24;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
    display:block;
    margin-bottom:8px;
}

.modal-title{
    font-size:28px;
    font-weight:700;
    color:#fff;
}

.modal-body{
    padding:25px 30px 35px;
}

.custom-input{
    height:55px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.08);
    color:#fff;
    padding:15px 20px;
}

.custom-input:focus{
    background:rgba(255,255,255,.12);
    border-color:#fbbf24;
    box-shadow:none;
    color:#fff;
}

.custom-input::placeholder{
    color:#cbd5e1;
}

textarea.custom-input{
    height:auto;
}

.btn-submit{
    width:100%;
    border:none;
    border-radius:14px;
    padding:15px;
    font-size:16px;
    font-weight:600;
    color:#fff;
    background:linear-gradient(135deg,#f59e0b,#ea580c);
    transition:.3s;
}

.btn-submit:hover{
    transform:translateY(-3px);
}

.modal.fade .modal-dialog{
    transform:scale(.9);
    transition:.3s ease;
}

.modal.show .modal-dialog{
    transform:scale(1);
}



/* HERO */

.hero-slider {
  height: 100vh;
}


.hero-content h1 {
  color: #fff;
}

.hero-content h1 span {
  color: gold;
}

.hero-content p {
  color: #f1c40f;
  font-weight: 500;
}

.hero-slider,
.swiper,
.swiper-wrapper,
.swiper-slide {
  width: 100%;
  height: 100vh;
}



.hero-img {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

/* .hero-img {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
} */

/* overlay */
.hero-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

/* content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: bold;
}

.hero-content p {
  color: gold;
}

/* smooth animation */
.swiper-slide {
  transition: transform 1s ease-in-out;
}

/* responsive */
@media(max-width:768px){
  .hero-content h1 {
    font-size: 28px;
  }
}


/* ABOUT US */
/* ===============================
ABOUT + BOOKING SECTION
================================= */

.about-booking{
padding:120px 0;
background:linear-gradient(135deg,#f8f5ef 0%,#ffffff 100%);
}

/* LEFT CONTENT */

.small-title{
display:inline-block;
color:#c19a6b;
font-size:14px;
font-weight:600;
letter-spacing:3px;
text-transform:uppercase;
margin-bottom:15px;
}

.main-title{
font-family:'Playfair Display',serif;
font-size:52px;
font-weight:700;
line-height:1.2;
color:#1f2937;
margin-bottom:20px;
}

.about-text{
color:#6b7280;
font-size:16px;
line-height:1.9;
margin-bottom:30px;
}

.about-list{
list-style:none;
padding:0;
margin:0 0 35px;
}

.about-list li{
background:#fff;
padding:16px 20px;
margin-bottom:15px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.06);
transition:.3s;
font-weight:500;
color:#374151;
}

.about-list li:hover{
transform:translateX(8px);
}

.btn-luxury{
background:#c19a6b;
color:#fff;
text-decoration:none;
padding:15px 35px;
border-radius:50px;
font-weight:600;
transition:.4s;
display:inline-block;
}

.btn-luxury:hover{
background:#a67c52;
color:#fff;
transform:translateY(-3px);
}

/* BOOKING CARD */

.booking-card{
background:#fff;
padding:45px;
border-radius:30px;
box-shadow:0 25px 60px rgba(0,0,0,.12);
position:relative;
overflow:hidden;
}

.booking-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg,#c19a6b,#e3be85);
}

.booking-header span{
display:block;
color:#c19a6b;
font-size:13px;
font-weight:600;
letter-spacing:3px;
text-transform:uppercase;
margin-bottom:10px;
}

.booking-header h3{
font-family:'Playfair Display',serif;
font-size:38px;
color:#1f2937;
margin-bottom:15px;
}

.booking-header p{
color:#6b7280;
line-height:1.8;
margin-bottom:30px;
}

/* FORM */

.booking-card .form-control,
.booking-card .form-select{
height:58px;
border-radius:14px;
border:1px solid #e5e7eb;
background:#fafafa;
box-shadow:none;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus{
border-color:#c19a6b;
background:#fff;
box-shadow:0 0 0 4px rgba(193,154,107,.15);
}

/* BUTTON */

.btn-book{
height:60px;
border:none;
border-radius:14px;
background:linear-gradient(135deg,#c19a6b,#d6b07a);
color:#fff;
font-size:16px;
font-weight:600;
letter-spacing:.5px;
transition:.4s;
}

.btn-book:hover{
background:linear-gradient(135deg,#a67c52,#c19a6b);
color:#fff;
transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:991px){

.main-title{
    font-size:42px;
}

.booking-card{
    padding:35px;
}


}


/* SECTION TITLE */
/* TITLE */
.title {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

/* FEATURES */
.feature-clean {
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eee;
  transition: 0.3s;
}

.feature-clean i {
  font-size: 28px;
  color: #d4af37; /* gold */
  margin-bottom: 10px;
}

.feature-clean:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* DESTINATION
.destination-premium {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.destination-premium img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.5s;
}

.destination-premium .info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.destination-premium:hover img {
  transform: scale(1.1);
} */



/* SECTION BACKGROUND */
.destination-grid {
  background: #f8f9fa;
}

/* GRID */
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 15px;
}

/* TEXT BOX */
.text-box {
  background: linear-gradient(135deg, #ff2e63, #ff7a00);
  color: #fff;
  padding: 30px;
  border-radius: 10px;
}

/* IMAGE BOX */
.grid-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* IMAGE */
.grid-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
  border-radius: 10px;
}

/* TEXT */
.overlay h4 {
  color: #fff;
  margin-bottom: 10px;
}

/* BUTTON */


/* .overlay button {
  background: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
}

.overlay button:hover {
  background: #ff7a00;
  color: #fff;
} */


.royal-btn{
  font-size: 14px;
    display:inline-block;
    padding:10px 20px;
    border:1px solid #c19a6b;
    color:#c19a6b;
    text-decoration:none;
    border-radius:50px;
    font-weight:500;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:.4s;
}

/* custome btn */
a.btn.btn-gold:hover{ 
    background:#c19a6b;
    color:#fff;
}

a.btn.btn-luxury:hover {
    background-color: gold;
}
a.follow-btn {
    color: yellow;
}


/* 
custome btn */


.royal-btn:hover{
    background:#c19a6b;
    color:#fff;
    text-decoration:none;
}


/* HOVER */
.grid-box:hover img {
  transform: scale(1.1);
}

.grid-box:hover .overlay {
  opacity: 1;
}

/* RESPONSIVE */
@media(max-width:992px){
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:576px){
  .grid-container {
    grid-template-columns: 1fr;
  }
}


/* VIDEO SECTION */


.video-section{
    position:relative;
    height:70vh;
    overflow:hidden;
}

.video-bg{
    position:relative;
    width:100%;
    height:100%;
}

.video-bg video{
    position:absolute;
    top:50%;
    left:50%;
    min-width:100%;
    min-height:100%;
    width:auto;
    height:auto;
    transform:translate(-50%, -50%);
    object-fit:cover;
}

.video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0, 0, 0, 0.201);
    z-index:1;
}

.video-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
}

.video-content h2{
    font-size:60px;
    font-weight:700;
}

.video-content p{
    font-size:20px;
}



/* SECTION */
.why-us {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

/* TITLE */
.section-title {
  font-size: 34px;
  font-weight: 700;
}

.section-subtitle {
  color: #777;
}



/* CARD */
.why-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* ICON */
.why-card .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #d4af37, #f1c40f);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-10px);
}

/* GOLD BORDER ANIMATION */
.why-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: #d4af37;
  bottom: 0;
  left: -100%;
  transition: 0.4s;
}

.why-card:hover::before {
  left: 0;
}


/* packages */

/* PACKAGE CARD */
.package-card {
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
}

/* IMAGE */
.package-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s;
}

/* CONTENT */
.package-content {
  padding: 20px;
}

.package-content h5 {
  font-weight: 600;
}

.package-content p {
  color: #777;
  font-size: 14px;
}

/* PRICE */
.price {
  font-size: 18px;
  font-weight: 700;
  color: #d4af37;
  margin: 10px 0;
}

/* BUTTON */
.btn-gold {
  background: linear-gradient(45deg, #d4af37, #f1c40f);
  color: #000;
  border-radius: 25px;
  padding: 8px 18px;
  transition: 0.3s;
}

.btn-gold:hover {
  background: #000;
  color: #fff;
}

/* HOVER EFFECT */
.package-card:hover {
  transform: translateY(-10px);
}

.package-card:hover img {
  transform: scale(1.1);
}

/* BADGE (OPTIONAL) */
.package-card::before {
  content: "Popular";
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d4af37;
  color: #000;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}


/* SECTION TESTIMONIALS */
/* SECTION */
.testimonials {
  background: #f8f9fa;
}

/* TITLE */
.section-title {
  font-size: 36px;
  font-weight: 700;
}

/* CARD */
.testimonial-premium {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
}

/* IMAGE */
.client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-top: -60px;
  border: 4px solid #fff;
  object-fit: cover;
}

/* TEXT */
.testimonial-text {
  font-size: 14px;
  color: #555;
  margin: 15px 0;
}

/* STARS */
.stars {
  color: #d4af37;
  margin-bottom: 10px;
}

/* NAME */
.testimonial-premium h6 {
  font-weight: 600;
}

/* HOVER */
.testimonial-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}


/* BLOG */

/* SECTION */
.blog-section {
  background: #f8f9fa;
}

/* TITLE */
.section-title {
  font-size: 34px;
  font-weight: 700;
}

.section-subtitle {
  color: #777;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* IMAGE */
.blog-img {
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s;
}

/* CONTENT */
.blog-content {
  padding: 20px;
}

.blog-date {
  font-size: 12px;
  color: #d4af37;
  font-weight: 600;
}

.blog-content h5 {
  margin: 10px 0;
  font-weight: 600;
}

.blog-content p {
  font-size: 14px;
  color: #666;
}

/* LINK */
.read-more {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: 0.3s;
}

.read-more:hover {
  color: #d4af37;
}

/* HOVER EFFECT */
.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card:hover img {
  transform: scale(1.1);
}

/* CTA SECTION */
.cta-premium {
  position: relative;
  background: url('../images/package/cta.jpg') center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

/* OVERLAY */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

/* CONTENT */
.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  margin-bottom: 25px;
  color: #ddd;
}

/* BUTTON */
.btn-luxury {
  display: inline-block;
  background: linear-gradient(45deg, #d4af37, #f1c40f);
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* HOVER */
.btn-luxury:hover {
  background: #fff;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

 /* view package details  */

 /* SECTION */
.insta-wrapper {
  display: flex;
}

/* LEFT FIXED */
.insta-fixed {
  width: 250px;
  text-align: center;
  background: #e91e63;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 250px;
}

/* RIGHT SLIDER */
.insta-slider {
  width: calc(100% - 300px);
  overflow: hidden;
}

/* SLIDES */
.instaSwiper .swiper-slide {
  width: 250px;
  height: 250px;
}

/* IMAGE */
.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
}

.insta-card:hover .overlay {
  opacity: 1;
}

/* REMOVE GAP */
body {
  margin: 0;
  padding: 0;
}

/* SECTION FIX */
.insta-section {
  margin: 0;
  padding: 0;
}

/* WRAPPER FIX */
.insta-wrapper {
  display: flex;
  height: 250px; /* same as image height */
}

/* SLIDER FIX */
.insta-slider {
  width: calc(100% - 300px);
  height: 100%;
}

/* SWIPER HEIGHT */
.instaSwiper,
.swiper-wrapper,
.swiper-slide {
  height: 100%;
}

/* IMAGE FULL HEIGHT */
.insta-card img {
  height: 100%;
}



/* ===== DEFAULT (DESKTOP) ===== */
.insta-wrapper {
  display: flex;
  height: 250px;
}

.insta-fixed {
  width: 250px;
  height: 100%;
}

.insta-slider {
  width: calc(100% - 250px);
  height: 100%;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .insta-wrapper {
    flex-direction: column; /* STACK */
    height: auto;
  }

  /* TOP BOX */
  .insta-fixed {
    width: 100%;
    height: auto;
    padding: 30px 15px;
  }

  /* SLIDER FULL WIDTH */
  .insta-slider {
    width: 100%;
  }

  /* SLIDE SIZE SMALL */
  .instaSwiper .swiper-slide {
    width: 180px;
    height: 180px;
  }

}


a {
    color: gold;
    /* color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)); */
    text-decoration: none;
}


/* SWIPER SMOOTH SCROLL */


