

html,
body{

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

    font-family:'Poppins',sans-serif;
    background:#f8f9fb;
    color:#333;
}

/* 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;
}


/* ===================================
   GLOBAL
=================================== */
.custom-nav{
    z-index:99999 !important;
}

.destination-hero::before{
    z-index:1;
}

.hero-content{
    z-index:2;
}


.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#c19a6b;
    color:#fff;
    border-radius:30px;
    font-size:14px;
    font-weight:500;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:48px;
    font-weight:700;
    color:#0f172a;
}

/* ===================================
   HERO SECTION
=================================== */

.destination-hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.destination-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0, 0, 0, 0.227),
        rgba(0,0,0,.55)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
}

.destination-tag{
    display:inline-block;
    background:#c19a6b;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    margin-bottom:20px;
    font-size:14px;
}

.hero-content h1{
    font-size:90px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;
    padding:15px 35px;
    background:#c19a6b;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
}

.hero-btn:hover{
    background:#d4a76f;
    color:#fff;
}

/* ===================================
   ABOUT
=================================== */

.destination-about{
    padding:100px 0;
}

.destination-about img{
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.destination-about h2{
    font-size:50px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:20px;
}

.destination-about p{
    line-height:1.9;
    color:#555;
}

/* ===================================
   ATTRACTIONS
=================================== */

.attractions-section{
    background:#fff;
    padding:100px 0;
}

.attraction-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.attraction-card:hover{
    transform:translateY(-10px);
}

.attraction-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.attraction-card h4{
    padding:20px;
    margin:0;
    text-align:center;
    font-weight:600;
}

/* ===================================
   EXPERIENCES
=================================== */

.experiences-section{
    padding:100px 0;
}

.experience-card{
    background:#fff;
    padding:40px 25px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.experience-card:hover{
    transform:translateY(-10px);
}

.experience-card i{
    font-size:50px;
    color:#c19a6b;
    margin-bottom:20px;
}

.experience-card h4{
    font-size:22px;
    font-weight:600;
}

/* ===================================
   TOUR PACKAGES
=================================== */

.packages-section{
    background:#fff;
    padding:100px 0;
}

.tour-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.tour-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.tour-content{
    padding:25px;
}

.tour-content h4{
    font-size:28px;
    font-weight:700;
}

.tour-meta{
    display:flex;
    justify-content:space-between;
    margin:20px 0;
}

.tour-btn{
    display:inline-block;
    background:#c19a6b;
    color:#fff;
    text-decoration:none;
    padding:12px 25px;
    border-radius:10px;
    transition:.3s;
}

.tour-btn:hover{
    color:#fff;
    background:#d4a76f;
}




/* ===================================
   GALLERY
=================================== */

.gallery-section{
    padding:100px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ===================================
   CTA
=================================== */

.destination-cta{
    padding:100px 0;
}

.cta-box{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    border-radius:30px;
    text-align:center;
    padding:80px 40px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.cta-box span{
    display:inline-block;
    background:#c19a6b;
    padding:10px 20px;
    border-radius:30px;
    margin-bottom:20px;
}

.cta-box h2{
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-box p{
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
    color:#d1d5db;
}

.cta-btn{
    display:inline-block;
    background:#c19a6b;
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:12px;
    font-weight:600;
}

.cta-btn:hover{
    background:#d4a76f;
    color:#fff;
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:991px){

    .hero-content h1{
        font-size:55px;
    }

    .hero-content p{
        font-size:18px;
    }

    .destination-about h2{
        font-size:38px;
    }

    .section-heading h2{
        font-size:38px;
    }

    .cta-box h2{
        font-size:38px;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .destination-hero{
        min-height:100vh;
        text-align: left;
        padding:0 20px;}


        
    .hero-content h1{
        font-size:42px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:32px;
    }

    .cta-box{
        padding:50px 25px;
    }

}




/* ==========================
   LUXURY TOUR POPUP
========================== */
.luxury-popup{
    border:none;
    border-radius:24px;
    overflow:hidden;
    background:#fff;
    max-width:520px;
    margin:auto;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.popup-close{
    position:absolute;
    top:18px;
    right:18px;
    z-index:10;
    filter: brightness(0) invert(1);
    opacity:1;
}

.popup-close:hover{
    opacity:.8;
}

.popup-header{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    text-align:center;
    padding:35px 25px;
    color:#fff;
}

.popup-badge{
    display:inline-block;
    background:#c19a6b;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
}

.popup-header h3{
    font-size:32px;
    margin-bottom:10px;
    font-weight:700;
}

.popup-header p{
    color:#d1d5db;
    margin:0;
}

.popup-body{
    padding:25px;
}

.popup-body .form-control,
.popup-body .form-select{
    height:52px;
    border-radius:12px;
    border:1px solid #ddd;
}

.popup-body textarea{
    height:100px !important;
}

.popup-btn{
    width:100%;
    border:none;
    background:#c19a6b;
    color:#fff;
    padding:14px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.popup-btn:hover{
    background:#d4a76f;
}

@media(max-width:576px){

    .popup-header{
        padding:30px 20px;
    }

    .popup-header h3{
        font-size:26px;
    }

    .popup-body{
        padding:20px;
    }

}   