/* ==========================
   Hero Banner
========================== */
.ts-hero-banner {
    position: relative;
    background-position: center 30%;
    background: url(https://www.jaxortravels.com/Images/hajj-umrah-hero.webp) center / cover no-repeat fixed;
    /** padding: 90px 0; **/

}
.ts-banner-image {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.ts-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    display: flex;
    align-items: center;
}
.ts-banner-overlay .ts-container {
    position: relative;
    z-index: 2;
}
.ts-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.ts-breadcrumb {
    margin-bottom: 15px;
    color: #fff;
    font-size: 15px;
}
.ts-breadcrumb a {
    color: #fff;
    text-decoration: none;
}
.ts-breadcrumb span {
    margin: 0 8px;
}
.ts-hero-banner h1 {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    margin: 0;
}
/* ==========================
Gallery + Booking
========================== */
.ts-gallery-booking {
    padding: 60px 0;
}
.ts-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.ts-gallery {
    flex: 2;
}
.ts-booking-box {
    flex: 1;
    position: sticky;
    top: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}
.ts-gallery-main img {
    width: 100%;
    border-radius: 10px;
    display: block;
}
.ts-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.ts-thumb img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
}
.ts-thumb img:hover {
    transform: scale(1.05);
}
/* ==========================
Package Info
========================== */
.ts-package-info {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.ts-package-info li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.ts-highlights ul {
    padding-left: 20px;
}
.ts-highlights li {
    margin-bottom: 10px;
}

/* ========================
Departure info
=========================*/
.ts-departure-info{
    background:#f8f9fa;
    padding:14px 16px;
    border-radius:8px;
    border-left:4px solid #dd3333;
    margin-top:8px;
    line-height:1.6;
}

.ts-departure-info strong{
    display:block;
    margin-bottom:8px;
    color:#222;
}

/* ==========================
Price
========================== */
.ts-price {
    text-align: center;
    margin: 30px 0;
}
.ts-price span {
    display: block;
    color: #666;
}
.ts-price h2 {
    margin: 5px 0;
    color: #dd3333;
    font-size: 42px;
}
.ts-price p {
    color: #666;
}
/* ==========================
Buttons
========================== */
.ts-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 6px;
    background: #dd3333;
    color: #fff;
    text-decoration: none;
    margin-bottom: 12px;
}
.ts-btn:hover {
    background: #b71c1c;
    color: #fff;
}
.ts-btn-outline {
    background: #fff;
    border: 2px solid #dd3333;
    color: #dd3333;
}
.ts-btn-outline:hover {
    background: #dd3333;
    color: #fff;
}
/* ==========================================================
   Responsive
   ========================================================== */
@media (min-width: 1400px) {
    .ts-container {
        max-width: 1320px;
    }
}
/**
@media (min-width: 1200px) {
   
	 .ts-container{
        max-width: 1140px;
    }
}
**/
@media(max-width:991px) {
    .ts-row {
        flex-direction: column;
    }
    .ts-booking-box {
        position: relative;
        top: auto;
    }
    .ts-banner-overlay {
        padding: 80px 0;
    }
    .ts-hero-banner h1 {
        font-size: 34px;
    }
}