/* Premium Package Details Styling */
:root {
    --primary-color: #ff7a00;
    --secondary-color: #1a1a2e;
    --text-dark: #333;
    --text-light: #777;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.1);
    --radius-lg: 20px;
    --radius-md: 12px;
}

/* Hero Section Adjustments */
.breadcrumb-outer {
    padding: 100px 0 80px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.breadcrumb-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Package Stats Bar */
.package-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
}

.stat-item:not(:last-child) {
    border-right: 1.5px solid #eee;
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Destination Showcase */
.destination-showcase {
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.destination-showcase img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-showcase:hover img {
    transform: scale(1.03);
}

/* Modern Tabs */
.modern-tabs-container {
    background: transparent;
}

.modern-tabs-nav {
    display: flex;
    gap: 15px;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.modern-tabs-nav li {
    list-style: none;
}

.modern-tabs-nav a {
    padding: 12px 25px;
    border-radius: 30px;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f0f0;
}

.modern-tabs-nav li.active a {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

/* Premium Timeline */
.premium-timeline {
    position: relative;
    padding-left: 50px;
}

.premium-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #eee;
}

.timeline-item {
    position: relative;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-marker {
    position: absolute;
    left: -42px;
    width: 34px;
    height: 34px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

.timeline-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: all 0.5s ease;
    color: var(--text-light);
    line-height: 1.6;
}

.timeline-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.timeline-item.active .timeline-marker {
    background: var(--primary-color);
    color: var(--white);
}

.timeline-item.active .timeline-body {
    max-height: 500px;
    padding-bottom: 20px;
}

.timeline-header i {
    transition: transform 0.3s ease;
}

.timeline-item.active .timeline-header i {
    transform: rotate(180deg);
}

/* Premium Check List (Inclusions/Exclusions) */
.premium-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-check-list .check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: var(--text-dark);
}

.premium-check-list .check-item:last-child {
    border-bottom: none;
}

.premium-check-list .check-item i {
    font-size: 18px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .package-stats-bar {
        grid-template-columns: 1fr;
    }

    .stat-item:not(:last-child) {
        border-right: none;
        border-bottom: 1.5px solid #eee;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .modern-tabs-nav {
        flex-wrap: wrap;
    }

    .breadcrumb-content h1 {
        font-size: 2.2rem;
    }

    .destination-showcase img {
        height: 300px;
    }
}