/* ========================
   GLOBAL WRAPPERS
   ======================== */
.package-page-wrapper {
    background-color: #f4f5f8; /* Light gray background like image */
    min-height: 100vh;
    padding-bottom: 50px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========================
   1. HEADER SECTION
   ======================== */
.package-header-section {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.breadcrumbs {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}
.breadcrumbs a { color: #666; text-decoration: none; }

.package-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.package-meta-row {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.package-tags-row .pkg-tag {
    background: #f0f0f0;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    color: #555;
    margin-right: 5px;
}

.header-right {
    text-align: right;
}

.start-price-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
}

.price-display {
    font-size: 26px;
    font-weight: 800;
    color: #333;
}

/* ========================
   2. GRID LAYOUT
   ======================== */
.package-grid-layout {
    display: flex;
    gap: 25px;
}

.package-left-col {
    flex: 3; /* Takes 75% width */
}

.package-right-col {
    flex: 1; /* Takes 25% width */
    min-width: 300px;
}

/* ========================
   3. TABS NAVIGATION
   ======================== */
.package-tabs-nav {
    background: #fff;
    padding: 0;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    position: sticky;
    top: 20px; /* Sticks when scrolling */
    z-index: 100;
}

.tab-link {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    text-transform: uppercase;
}

.tab-link:hover, .tab-link.active {
    color: #d32f2f; /* Red Active Color */
    border-bottom-color: #d32f2f;
    background: #fafafa;
}

/* ========================
   4. CONTENT SECTIONS
   ======================== */
.tab-section {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tab-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.package-banner-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
}
.package-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Itinerary Timeline */
.timeline-item {
    display: flex;
    margin-bottom: 25px;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 4px;
}

.day-label {
    width: 80px;
    font-weight: 700;
    font-size: 16px;
    color: #d32f2f;
    border-right: 1px solid #eee;
    margin-right: 15px;
    padding-right: 15px;
}

.day-content h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.day-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Inclusions List */
.inc-exc-grid {
    display: flex;
    gap: 30px;
}
.inc-col, .exc-col { flex: 1; }

.check-list, .cross-list {
    list-style: none;
    padding: 0;
}
.check-list li, .cross-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
}
.check-list li:before {
    content: '\2713'; /* Checkmark */
    position: absolute;
    left: 0;
    color: green;
    font-weight: bold;
}
.cross-list li:before {
    content: '\2715'; /* Cross */
    position: absolute;
    left: 0;
    color: red;
    font-weight: bold;
}

/* ========================
   5. SIDEBAR
   ======================== */
.sidebar-box {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.sidebar-box h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.fare-rows .fare-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.fare-row.total {
    font-weight: 800;
    font-size: 16px;
    color: #000;
}

.btn-book-now, .btn-send-query {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-book-now {
    background: #d32f2f;
    color: #fff;
}
.btn-book-now:hover { background: #b71c1c; }

.btn-send-query {
    background: #fff;
    color: #d32f2f;
    border: 1px solid #d32f2f;
}
.btn-send-query:hover { background: #fee; }

/* Promo */
.promo-input-group {
    display: flex;
}
.promo-input-group input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}
.promo-input-group button {
    padding: 8px 15px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Help Box */
.contact-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.contact-item i { color: #d32f2f; font-size: 18px; }

/* Responsive */
@media (max-width: 900px) {
    .package-grid-layout { flex-direction: column; }
    .package-right-col { order: -1; } /* Sidebar on top on mobile? optional */
}