/* ── Detail Page Styles ────────────────────────── */
.trip-detail-section {
    padding: 4rem 0;
}

/* Trip Meta Bar */
.trip-meta-bar {
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.trip-meta-item {
    text-align: center;
}

.trip-meta-icon {
    font-size: 1.8rem;
    color: #0066b3;
    margin-bottom: 0.5rem;
}

.trip-meta-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.trip-meta-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a2e;
}

/* Sections */
.detail-heading {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0066b3;
    margin-bottom: 1.25rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #d8d8d8ff;
    position: relative;
}

.detail-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #0066b3;
}

.detail-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2.5rem;
}

/* Lists */
.hotel-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2.5rem;
}

.hotel-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px dashed #eaeaea;
    font-size: 1.05rem;
    color: #444;
}

.hotel-list li:last-child {
    border-bottom: none;
}

.hotel-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 11px;
    color: #0066b3;
}

.hotel-list strong {
    color: #1a1a2e;
}

/* Inc/Exc Lists */
.inc-exc-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    margin-bottom: 2.5rem;
}

.inc-exc-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inc-list {
    list-style: none;
    padding-left: 0;
}

.inc-list li {
    position: relative;
    padding: 6px 0 6px 26px;
    color: #444;
    line-height: 1.5;
}

.inc-list li::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 7px;
}

.inc-box h4 {
    color: #198754;
}

.inc-box .inc-list li::before {
    content: '\f00c';
    color: #198754;
}

/* check */
.exc-box h4 {
    color: #dc3545;
}

.exc-box .inc-list li::before {
    content: '\f00d';
    color: #dc3545;
}

/* times */

/* Itinerary Accordion overrides */
.accordion-button:not(.collapsed) {
    color: #0066b3;
    background-color: #f0f7fe;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.15rem 1.25rem;
}

.accordion-body {
    color: #444;
    line-height: 1.6;
    padding: 1.25rem;
}

/* Right Sidebar overrides */
.sidebar .form-label {
    font-weight: 600;
    color: #444;
}

.sidebar .form-control {
    border-radius: 8px;
    padding: 0.7rem 1rem;
    border: 1px solid #ddd;
}

.sidebar .form-control:focus {
    border-color: #0066b3;
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 179, 0.15);
}

/* Hero Slider Styles */
.hero-slider-wrap {
    position: relative;
    width: 100%;
}

.hero-slide-item {
    height: 60vh;
    /* Adjust height as needed */
    min-height: 400px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-slide-content h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    display: inline-flex;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
}

.hero-breadcrumb .breadcrumb-item,
.hero-breadcrumb .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.hero-breadcrumb .breadcrumb-item.active {
    font-weight: 700;
}

.hero-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* Owl navigation overrides */
.hero-slider-wrap .owl-nav button.owl-prev,
.hero-slider-wrap .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    transition: all 0.3s ease;
}

.hero-slider-wrap .owl-nav button.owl-prev:hover,
.hero-slider-wrap .owl-nav button.owl-next:hover {
    background: #0066b3 !important;
}

.hero-slider-wrap .owl-nav button.owl-prev {
    left: 20px;
}

.hero-slider-wrap .owl-nav button.owl-next {
    right: 20px;
}

.hero-slider-wrap .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
}

/* Similar Trips Cards */
.pkg-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
    transition: transform .28s ease, box-shadow .28s ease;
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
}

.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .13);
}

.pkg-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.pkg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.pkg-card:hover .pkg-img-wrap img {
    transform: scale(1.07);
}

.pkg-price-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #da2725;
    color: #fff;
    padding: .35rem .9rem;
    font-size: 14px;
    font-weight: 600;
    border-top-right-radius: 10px;
}

.pkg-price-badge strong {
    font-size: 20px;
    font-weight: 800;
}

.pkg-cat-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(4px);
    color: #0066b3;
    padding: .22rem .7rem;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.pkg-meta-bar {
    background: linear-gradient(90deg, #0070c6ff 0%, #0066b3 100%);
    color: #fff;
    display: flex;
    justify-content: space-around;
    padding: .5rem 0;
    font-size: .78rem;
    font-weight: 600;
}

.pkg-meta-bar span {
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: .95;
}

.pkg-body {
    padding: 1.1rem 1.2rem 1.3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pkg-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: .4rem;
    line-height: 1.3;
}

.pkg-body h4 a {
    color: inherit;
    text-decoration: none;
    font-size: 18px;
}

.pkg-body h4 a:hover {
    color: #0066b3;
}

.pkg-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.55;
    flex: 1;
    margin-bottom: 1rem;
}

.pkg-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0066b3;
    color: #fff;
    padding: .42rem 1.1rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .2s;
    align-self: flex-start;
}

.pkg-book-btn:hover {
    background: #005291;
    color: #fff;
    transform: translateX(2px);
}



.hero-slide-item {
    height: 60vh;
    /* Adjust height as needed */
    min-height: 400px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-slide-content h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    display: inline-flex;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
}

.hero-breadcrumb .breadcrumb-item,
.hero-breadcrumb .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.hero-breadcrumb .breadcrumb-item.active {
    font-weight: 700;
}

.hero-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* Owl navigation overrides */
.hero-slider-wrap .owl-nav button.owl-prev,
.hero-slider-wrap .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    transition: all 0.3s ease;
}

.hero-slider-wrap .owl-nav button.owl-prev:hover,
.hero-slider-wrap .owl-nav button.owl-next:hover {
    background: #0066b3 !important;
}

.hero-slider-wrap .owl-nav button.owl-prev {
    left: 20px;
}

.hero-slider-wrap .owl-nav button.owl-next {
    right: 20px;
}

.hero-slider-wrap .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.hotel-list ul {
    list-style: none;
    padding: 0;
}