

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


h1, h2, h3, h4, h5, h6, p {
  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, p {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;

   margin: 0;
  padding: 0;
}


*{
    box-sizing:border-box;
}






.tour-hero .container{
    max-width:100%;
    padding-left:15px;
    padding-right:15px;
}

.hero-content{
    width:100%;
    max-width:900px;
    margin:0 auto;
}

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



@media(max-width:768px){

    .tour-hero h1{
        font-size:32px !important;
        line-height:1.3;
    }

    .tour-hero p{
        font-size:16px;
    }

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

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

/* HERO */

.tour-hero{
    min-height:100vh;
    width:100%;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    padding:0 15px;
}
/* .tour-hero{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
} */

.tour-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        135deg,
        rgba(0,0,0,.75),
        rgba(0,0,0,.45)
    );
}

.tour-hero .content{
    position: relative;
    z-index: 2;
    max-width: 950px;
    text-align: center;
    padding: 40px;
}

.hero-subtitle{
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    color: #f4c542;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.tour-hero h1{
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.tour-hero p{
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,.92);
    max-width: 750px;
    margin: auto;
}

.hero-buttons{
    margin-top: 35px;
}

.btn-gold{
    background: linear-gradient(
        135deg,
        #d4af37,
        #f4c542
    );
    color: #000;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration:none;
    transition: .4s ease;
    box-shadow: 0 15px 35px rgba(212,175,55,.35);
}

.btn-gold:hover{
    transform: translateY(-5px);
    color: #000;
}

/* Responsive */

@media(max-width:1200px){

    .tour-hero h1{
        font-size: 48px;
    }
}

@media(max-width:992px){

    .tour-hero h1{
        font-size: 40px;
    }

    .tour-hero p{
        font-size: 17px;
    }
}

@media(max-width:768px){

    .tour-hero{
        min-height: 100vh;
    }

    .tour-hero .content{
        padding: 20px;
    }

    .tour-hero h1{
        font-size: 32px;
    }

    .tour-hero p{
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-subtitle{
        font-size: 11px;
        letter-spacing: 2px;
    }

    .btn-gold{
        width: 100%;
        max-width: 260px;
    }
}


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

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

.section-heading{
    margin-bottom:60px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(193,154,107,.15);
    color:#c19a6b;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:48px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#64748b;
}

/* Tour Card */

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

.tour-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

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

.tour-content{
    padding:25px;
}

.tour-content h4{
    font-size:28px;
    margin-bottom:10px;
    color:#111827;
    font-weight:700;
}

.tour-content p{
    color:#64748b;
    margin-bottom:15px;
}

.tour-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
    font-size:15px;
    color:#475569;
}

.tour-btn{
    display:inline-block;
    padding:12px 28px;
    background:#c19a6b;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

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

/* CTA */
