/* --- Premium Package Detail Framework --- */

:root {
    --luxury-gold: #ff7a00;
    --luxury-dark: #1a1a2e;
    --luxury-light: #f8f9fa;
    --glass-white: rgba(255, 255, 255, 0.95);
    --timeline-border: #eee;
}

/* Modern Tabs Redesign */
.modern-tabs-nav {
    display: flex;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
}
.modal {
    position: fixed;
    top: 20%;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    outline: 0;
}

.modern-tabs-nav li {
    list-style: none;
    flex: 1;
}
.icon-pack-text {
    font-size: 16px!important;
}
.grid-btn {
 
    display: flex;
    gap: 15px;
    margin-top: 20px!important;
}
  .icon-pack-flo i{
        color:#219beb!important;
    }
   
.swiper-slide:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  top: 0;
  left: 0;
}
.breadcrumb-content h1{
    color :white;
}

.modern-tabs-nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 12px;
    color: #666;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.modern-tabs-nav li.active a {
    background: var(--luxury-gold);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.2);
}

.modern-tabs-nav li a i {
    font-size: 18px;
}

/* Luxury Timeline Itinerary */
.premium-timeline {
    position: relative;
    padding: 20px 0;
}

.premium-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--timeline-border);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 25px; /* Tighter for toggle */
    cursor: pointer;
}
.hpkg-section .hpkg-sub {
    color: #1892cd !important;
    font-size: 29px;
    margin-bottom: 5px;
    display: block;
    font-weight: 600;
}
.hpkg-section .hpkg-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}
.hpkg-section .hpkg-title span {
    color: #ff7a00!important;
}
.hpkg-section .hpkg-header {
    text-align: center;
    margin-bottom: 50px;
}
.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background: #fff;
    border: 3px solid var(--luxury-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--luxury-gold);
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.timeline-header {
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgb(0 0 0 / 27%);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.timeline-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--luxury-dark);
    font-family: 'Poppins', sans-serif;
}

.timeline-header i.fa-chevron-down {
    font-size: 14px;
    color: var(--luxury-gold);
    transition: transform 0.3s ease;
}

.timeline-item.active .timeline-header {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: var(--luxury-light);
}

.timeline-item.active .timeline-header i.fa-chevron-down {
    transform: rotate(180deg);
}

.timeline-body {
    background: #fff;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 12px 12px;
    border: 1px solid rgba(0,0,0,0.02);
    border-top: none;
}

.timeline-item.active .timeline-body {
    padding: 20px 25px;
    max-height: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.timeline-item:hover .timeline-marker {
    background: var(--luxury-gold);
    color: #fff;
    transform: scale(1.1);
}

.timeline-body p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Highlight Bar */
.package-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.stat-label { font-size: 13px; color: #999; text-transform: uppercase; letter-spacing: 1px; }
.stat-value { font-size: 18px; font-weight: 700; color: var(--luxury-dark); }

/* Inclusions/Exclusions Cards */
.modern-check-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    padding: 20px 0;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.check-item i { margin-top: 4px; }
.check-item.inclusion i { color: #5aa845; }
.check-item.exclusion i { color: #e74c3c; }

/* Destination Showcase Image */
.destination-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.destination-showcase img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-showcase:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .modern-tabs-nav { gap: 5px; padding: 5px; }
    .modern-tabs-nav li a { padding: 12px 15px; font-size: 13px; }
    .timeline-marker { width: 35px; height: 35px; border-width: 2px; }
    .timeline-item { padding-left: 50px; }
    .breadcrumb-content h1 {
    color: white;
    font-size: 30px;
}
.modal-dialog {
    width: 450px;
}
}

@media (max-width:992px) {

.modal-dialog {
    width: 400px!important;
}
}
