/* HERO */

.herotour{
    position:relative;
    height: 450px;
}

.herotour img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlaytour{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    padding:20px;
    z-index:2;
}

.herotour h1{
    font-size:55px;
}

.herotour p{
    max-width:700px;
    margin:15px auto;
}

.btn{
    display:inline-block;
    background:#c48b2a;
    color:#fff;
    padding:12px 25px;
    border-radius:5px;
}

/* INFO */

.quick-info{
    background:#fff;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.info-box{
    background:#fafafa;
    padding:20px;
    text-align:center;
    border-radius:10px;
}

/* CONTENT */
.fs{
    padding-bottom:15px;
}
.fsd{
    line-height:1.8;
    color:#555;
    font-family:regular sans-serif;
}

.content-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:10px;
    margin-bottom:25px;
    box-shadow:0 0 15px rgba(0,0,0,.08);
}

/* GALLERY */

.gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.gallery img{
    height:220px;
    object-fit:cover;
    border-radius:10px;
}

/* HIGHLIGHTS */

.highlights ul{
    padding-left:20px;
}

.highlights li{
    margin-bottom:10px;
}

/* ITINERARY */

.day{
    border-left:4px solid #c48b2a;
    padding-left:20px;
    margin-bottom:25px;
}

/* INCLUDE EXCLUDE */

.two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.included{
    background:#eaf9ef;
    padding:20px;
    border-radius:10px;
}

.excluded{
    background:#fff1f1;
    padding:20px;
    border-radius:10px;
}

/* BOOKING */

.booking-form{
    position:sticky;
    top:20px;
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 0 15px rgba(0,0,0,.08);
}

.booking-form input,
.booking-form textarea,
.booking-form select{
    width:100%;
    padding:12px;
    margin-bottom:12px;
    border:1px solid #ddd;
    border-radius:5px;
}

.booking-btn{
    width:100%;
    background:#25D366;
    color:#fff;
    border:none;
    padding:15px;
    font-size:16px;
    cursor:pointer;
    border-radius:5px;
}

/* FAQ */

.faq-item{
    margin-bottom:10px;
    border:1px solid #ddd;
    border-radius:5px;
}

.faq-question{
    background:#fff;
    padding:15px;
    cursor:pointer;
    font-weight:bold;
}

.faq-answer{
    display:none;
    padding:15px;
    background:#fafafa;
}

/* RELATED TOURS */

.related-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.tour-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 0 10px rgba(0,0,0,.08);
}

.tour-card img{
    height:220px;
    width:100%;
    object-fit:cover;
}

.tour-content{
    padding:15px;
}

footer{
    background:#222;
    color:#fff;
    text-align:center;
    padding:30px;
}

/* MOBILE */

@media(max-width:991px){

.content-grid,
.info-grid,
.related-grid,
.two-col{
    grid-template-columns:1fr;
}

.gallery{
    grid-template-columns:1fr 1fr;
}

.herotour h1{
    font-size:38px;
}
}

@media(max-width:600px){

.gallery{
    grid-template-columns:1fr;
}

.herotour{
    height:70vh;
}

.herotour h1{
    font-size:30px;
}
}
ul{
    list-style-type: disc;
    padding-left: 20px;
}
li{
    margin-bottom: 10px;
}