<style>
/* =========================
GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f7fb;
    color:#222;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:95%;
    max-width:1400px;
    margin:auto;
}

.section-padding{
    padding:80px 0;
}

/* =========================
BREADCRUMB
========================= */

.breadcrumb{
    margin-bottom:18px;
    font-size:14px;
    color:#777;
}

.breadcrumb a{
    color:#777;
    text-decoration:none;
    transition:0.3s;
}

.breadcrumb a:hover{
    color:#ff5a1f;
}

.breadcrumb span{
    margin:0 8px;
}

/* =========================
BADGES
========================= */

.tour-badges{
    display:flex;
    gap:12px;
    margin-bottom:18px;
    flex-wrap:wrap;
}

.badge{
    padding:7px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

.badge.orange{
    background:#fff0e8;
    color:#ff5a1f;
}

.badge.green{
    background:#eaf8ef;
    color:#12a56c;
}

/* =========================
TITLE
========================= */

.tour-title-wrap{
    margin-bottom:30px;
}

.tour-title-wrap h1{
    font-size:48px;
    color:#102048;
    font-weight:800;
    line-height:1.2;
    margin-bottom:15px;
}

.tour-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    align-items:center;
    font-size:15px;
    color:#666;
}

.tour-rating{
    color:#ff9f1c;
    font-weight:700;
}

/* =========================
MAIN GRID
========================= */

.tour-main-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
    align-items:start;
}

/* =========================
GALLERY
========================= */

.tour-gallery{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:15px;
    margin-bottom:30px;
}

.gallery-left img{
    width:100%;
    height:451px;
    object-fit:cover;
    border-radius:18px;
}

.gallery-right{
    display:grid;
    grid-template-rows:1fr 1fr;
    gap:15px;
}

.gallery-right img{
    width:100%;
    height:216px;
    object-fit:cover;
    border-radius:18px;
}

/* =========================
INFO GRID
========================= */

.tour-info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-bottom:30px;
}

.tour-info-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    padding:22px;
    transition:0.3s;
}

.tour-info-card:hover{
    transform:translateY(-4px);
}

.tour-info-card span{
    display:block;
    font-size:13px;
    color:#777;
    margin-bottom:10px;
}

.tour-info-card h5{
    font-size:16px;
    color:#102048;
    font-weight:700;
}

/* =========================
CONTENT BOX
========================= */

.tour-box{
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    padding:40px;
    margin-bottom:30px;
}

.tour-box h2{
    font-size:34px;
    color:#102048;
    margin-bottom:25px;
    font-weight:800;
}

.tour-box p{
    color:#555;
    line-height:1.9;
    margin-bottom:16px;
    font-size:15px;
}

/* =========================
INCLUDE / EXCLUDE
========================= */

.include-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.include-list,
.exclude-list{
    list-style:none;
}

.include-list li,
.exclude-list li{
    position:relative;
    padding-left:32px;
    margin-bottom:16px;
    color:#555;
    line-height:1.7;
    font-size:15px;
}

.include-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#12a56c;
    font-weight:bold;
    font-size:18px;
}

.exclude-list li::before{
    content:"✕";
    position:absolute;
    left:0;
    top:0;
    color:#ff4b4b;
    font-weight:bold;
    font-size:18px;
}

/* =========================
ITINERARY
========================= */

.itinerary-item{
    display:flex;
    gap:22px;
    margin-bottom:40px;
    position:relative;
}

.itinerary-item:last-child{
    margin-bottom:0;
}

.itinerary-item::before{
    content:'';
    position:absolute;
    left:11px;
    top:30px;
    width:2px;
    height:100%;
    background:#ddd;
}

.itinerary-item:last-child::before{
    display:none;
}

.itinerary-dot{
    min-width:24px;
    height:24px;
    background:#ff5a1f;
    border-radius:50%;
    margin-top:6px;
    position:relative;
    z-index:2;
}

.itinerary-content h4{
    font-size:22px;
    color:#102048;
    margin-bottom:15px;
    font-weight:700;
}

/* =========================
ANIMAL GRID
========================= */

.animal-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:25px;
}

.animal-box{
    background:#fafafa;
    border:1px solid #eee;
    border-radius:14px;
    padding:20px;
    text-align:center;
    font-weight:700;
    color:#102048;
    transition:0.3s;
}

.animal-box:hover{
    background:#ff5a1f;
    color:#fff;
}

/* =========================
SIDEBAR
========================= */

.tour-sidebar{
    position:relative;
}

.booking-box{
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    padding:35px;
    position:sticky;
    top:120px;
}

.booking-title{
    font-size:32px;
    color:#102048;
    margin-bottom:10px;
    font-weight:800;
}

.booking-subtitle{
    color:#666;
    line-height:1.7;
    margin-bottom:30px;
    font-size:15px;
}

/* =========================
FORM
========================= */

.booking-form{
    width:100%;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-size:15px;
    font-weight:700;
    color:#222;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:12px;
    padding:15px 18px;
    font-size:15px;
    background:#fff;
    outline:none;
    transition:0.3s;
    font-family:inherit;
}

.form-group input,
.form-group select{
    height:56px;
}

.form-group textarea{
    resize:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#ff5a1f;
}

/* =========================
BUTTON
========================= */

.theme-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:14px;
    background:#ff5a1f;
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

.theme-btn:hover{
    background:#e34e18;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

    .tour-main-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:992px){

    .tour-gallery{
        grid-template-columns:1fr;
    }

    .tour-info-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .include-wrap{
        grid-template-columns:1fr;
    }

    .booking-box{
        position:relative;
        top:0;
    }

}

@media(max-width:768px){

    .section-padding{
        padding:60px 0;
    }

    .tour-title-wrap h1{
        font-size:34px;
    }

    .tour-box{
        padding:25px;
    }

    .tour-box h2{
        font-size:28px;
    }

    .tour-info-grid{
        grid-template-columns:1fr;
    }

    .animal-grid{
        grid-template-columns:1fr;
    }

    .gallery-left img{
        height:350px;
    }

    .gallery-right img{
        height:200px;
    }

    .booking-box{
        padding:25px;
    }

}
</style>