:root {
    /* DEFAULT COLORS (Indigo Theme) */
    --pkg-primary: #6366f1;
    --pkg-primary-rgb: 99, 102, 241;
    --pkg-primary-light: #8b5cf6;
    --pkg-primary-dark: #4f46e5;
    --pkg-accent: #a855f7;
    --pkg-accent-light: #c084fc;
    --pkg-success: #10b981;
    --pkg-error: #ef4444;
    --pkg-warning: #f59e0b;
    --pkg-bg: #f8fafc;
    --pkg-card-bg: #ffffff;
    --pkg-text-main: #1e293b;
    --pkg-text-muted: #64748b;
    --pkg-border: #e2e8f0;

    /* DERIVED VARIABLES */
    --pkg-hero-gradient: linear-gradient(135deg, var(--pkg-primary) 0%, var(--pkg-primary-light) 100%);
    --pkg-primary-gradient: linear-gradient(135deg, var(--pkg-primary) 0%, var(--pkg-primary-light) 100%);
    --pkg-success-gradient: linear-gradient(135deg, var(--pkg-success) 0%, #059669 100%);
    --pkg-error-gradient: linear-gradient(135deg, var(--pkg-error) 0%, #dc2626 100%);
    --pkg-warning-gradient: linear-gradient(135deg, var(--pkg-warning) 0%, #f97316 100%);
    --pkg-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* === Unified Style Classes (Formerly Inline) === */
.pkg-marker-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    background: linear-gradient(135deg, #f0f4ff, #faf5ff);
    border: 1px solid #e0e7ff;
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 8px;
}

.pkg-marker-icon {
    color: var(--pkg-primary);
    font-size: 12px;
}

.pkg-marker-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--pkg-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.pkg-fare-tag-cloud,
.pkg-fare-tags-block {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.pkg-fare-tags-block {
    margin: 6px 0 8px 0;
}

.pkg-tag-pill {
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pkg-tag-pill-sm {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 6px;
}

.pkg-tag-pill-lg {
    font-size: 0.72rem;
    padding: 5px 10px;
    border-radius: 8px;
}

.pkg-tag-pill-type {
    background: #f5f3ff;
    color: #7c3aed;
    border-color: #ddd6fe;
}

.pkg-tag-pill-hotel {
    background: #f0fdfa;
    color: #0d9488;
    border-color: #ccfbf1;
}

.pkg-tag-pill-min {
    background: #fff7ed;
    color: #ea580c;
    border-color: #ffedd5;
}

.pkg-tag-pill-max {
    background: #eff6ff;
    color: #2563eb;
    border-color: #dbeafe;
}

.pkg-tag-pill-tax-excl {
    font-size: 0.6rem;
    background: #f0fdf4;
    color: #16a34a;
    border-color: #dcfce7;
    
}

.pkg-tag-pill-tax-incl {
    font-size: 0.6rem;
    background: #fef2f2;
    color: #dc2626;
    border-color: #fee2e2;
}

.pkg-vehicle-action-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pkg-city-badge {
    background: #f0f4ff;
    color: var(--pkg-primary);
    border: 1px solid #c7d2fe;
    padding: 4px 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    font-size: 0.85rem;
}

.pkg-fare-spec-card {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pkg-support-box,
.pkg-support-card {
    margin: 12px 0;
    padding: 10px;
    background: var(--pkg-bg);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--pkg-text-muted);
}

.pkg-support-company {
    font-weight: 600;
    color: var(--pkg-text-main);
    margin-bottom: 6px;
}

.pkg-support-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pkg-support-link i {
    color: var(--pkg-primary);
    width: 16px;
}

.pkg-section-header-large {
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pkg-text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pkg-section-header-large i {
    color: var(--pkg-primary);
}

.pkg-modal-salutation {
    width: 58px;
    padding: 14px 5px !important;
}

.pkg-success-progress-wrap {
    width: 200px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin: 15px auto;
    overflow: hidden;
}

.pkg-success-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--pkg-success-gradient);
    transition: width 0.1s linear;
}

.pkg-rating-section-wrap {
    margin-top: 40px;
}

.pkg-help-btn {
    width: 100%;
}

.pkg-support-empty {
    color: var(--pkg-text-muted);
}

.pkg-hidden-time {
    display: none;
}

.pkg-fare-spec-header {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pkg-text-muted);
    width: 100%;
    margin: 8px 0 4px 6px;
    display: block;
}

.pkg-fare-spec-header i {
    color: var(--pkg-primary);
    margin-right: 4px;
}

.pkg-empty-state-btn {
    max-width: 200px;
    margin: 0 auto;
}

.pkg-fare-item {
    display: flex;
    flex-direction: column;
    align-items: normal;
    gap: 0;
    border: 1px solid var(--pkg-border);
    border-radius: 12px;
    background: var(--pkg-card-bg);
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pkg-fare-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 6px;
    gap: 10px;
}

.pkg-fare-info-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.pkg-fare-text-wrap {
    min-width: 0;
}

.pkg-fare-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--pkg-text-main);
}

.pkg-fare-price {
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.2;
    color: var(--pkg-primary);
}

.pkg-fare-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 8px 6px 8px;
    border-top: 1px solid #f1f5f9;
    background: #fafbfc;
}

.pkg-enquiry-btn-sm {
    padding: 8px 12px;
    font-size: 12px;
    min-height: 32px;
}


#headerNotifications {
    display: none;
}

.topbar,
.footer {
    display: none;
}

/* Container */
.pkg-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--pkg-bg);
}

/* Hero Section */
.pkg-hero {
    background: var(--pkg-hero-gradient);
    border-radius: 24px;
    padding: 15px;
    padding-left: 20px;
    margin-bottom: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(var(--pkg-primary-rgb), 0.3);
}

.pkg-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pkg-hero-content {
    position: relative;
    z-index: 1;
}

.pkg-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.pkg-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkg-title {
    font-size: 2rem;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pkg-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pkg-stars {
    display: flex;
    gap: 4px;
}

.pkg-stars i {
    color: #fbbf24;
    font-size: 18px;
}

.pkg-stars i.active {
    color: #fbbf24;
}

.pkg-rating-text {
    font-size: 16px;
    opacity: 0.9;
}

.pkg-hero-actions {
    position: absolute;
    top: 15px;
    right: 25px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkg-btn-pdf {
    background: rgba(255, 255, 255, 0.95);
    color: var(--pkg-primary);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pkg-btn-pdf:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Inline spinner shown inside the PDF button while downloading */
@keyframes pkg-spin {
    to { transform: rotate(360deg); }
}

.pkg-btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(var(--pkg-primary-rgb), 0.3);
    border-top-color: var(--pkg-primary);
    border-radius: 50%;
    animation: pkg-spin 0.7s linear infinite;
    flex-shrink: 0;
}

/* Grid Layout */
.pkg-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 20px;
}

@media (max-width: 1024px) {
    .pkg-grid {
        grid-template-columns: 1fr;
    }
}

/* Left Column */
.pkg-col-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Hero Image */
.pkg-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pkg-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.pkg-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

/* Gallery */
.pkg-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px;
}

.pkg-gallery-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.pkg-gallery-thumb:hover {
    border-color: var(--pkg-primary);
    transform: scale(1.05);
}

.pkg-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Title */
.pkg-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pkg-section-title i {
    color: var(--pkg-primary);
}

/* Cards */
.pkg-description-card,
.pkg-inclusion-card,
.pkg-exclusion-card,
.pkg-help-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pkg-description-card p {
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* Tags */
.pkg-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pkg-tag {
    background: hsl(var(--tag-hue), 85%, 95%);
    color: hsl(var(--tag-hue), 70%, 40%);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid hsl(var(--tag-hue), 70%, 85%);
}

/* Inclusions/Exclusions Grid */
.pkg-inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .pkg-inc-exc-grid {
        grid-template-columns: 1fr;
    }
}

.pkg-inclusion-card {
    border-left: 5px solid var(--pkg-success);
    background: linear-gradient(145deg, #ecfdf5 0%, var(--pkg-card-bg) 100%);
}

.pkg-exclusion-card {
    border-left: 5px solid var(--pkg-error);
    background: linear-gradient(145deg, #fef2f2 0%, var(--pkg-card-bg) 100%);
}

.pkg-card-header {
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.pkg-card-header i {
    font-size: 14px;
}

.pkg-inclusion-card .pkg-card-header i {
    color: var(--pkg-success);
}

.pkg-exclusion-card .pkg-card-header i {
    color: var(--pkg-error);
}

.pkg-card-header h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--pkg-text-main);
}

.pkg-inclusion-list,
.pkg-exclusion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-inclusion-list li,
.pkg-exclusion-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475569;
    border-bottom: 1px dashed #e2e8f0;
}

.pkg-inclusion-list li:last-child,
.pkg-exclusion-list li:last-child {
    border-bottom: none;
}

.pkg-inclusion-list i {
    color: #10b981;
    margin-top: 4px;
}

.pkg-exclusion-list i {
    color: #ef4444;
    margin-top: 4px;
}

.pkg-other-text {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px dashed #e2e8f0;
    color: #64748b;
    font-style: italic;
}

/* Itinerary Timeline */
.pkg-itinerary-section {
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pkg-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pkg-day-card {
    /* display: flex;*/
    gap: 20px;
    position: relative;
}

.pkg-day-marker {
    flex-shrink: 0;
    width: 70px;
    text-align: center;
}

.pkg-day-number {
    width: 35px;
    height: 35px;
    background: var(--day-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 8px 20px var(--day-color);
    margin: 0 auto;
}

.pkg-day-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    margin-top: 8px;
    letter-spacing: 1px;
}

.pkg-day-content {
    flex: 1;
    background: #f8fafc;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    padding: 24px;
    border-left: 4px solid var(--day-color);
}

.pkg-day-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
}

.pkg-day-photo {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.pkg-day-photo img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
}

.pkg-day-desc {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Schedule Items */
.pkg-schedule-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pkg-schedule-item {
    display: flex;
    gap: 16px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pkg-schedule-photo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
}

.pkg-schedule-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pkg-schedule-content {
    flex: 1;
}

.pkg-schedule-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkg-schedule-badge {
    background: var(--pkg-primary-gradient);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.pkg-schedule-route {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkg-schedule-route .pkg-from {
    color: var(--pkg-success);
}

.pkg-schedule-route .pkg-to {
    color: var(--pkg-error);
}

.pkg-schedule-route .pkg-arrow {
    color: #94a3b8;
}

.pkg-schedule-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

/* Right Column - Sticky Sidebar */
.pkg-col-right {
    position: relative;
}

.pkg-sticky-sidebar {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Pricing Section */
.pkg-pricing-section {
    background: white;
    border-radius: 20px;
    padding: 28px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pkg-fares-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pkg-fare-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pkg-fare-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--card-color);
}

.pkg-fare-card:hover {
    border-color: var(--card-color);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.pkg-fare-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pkg-fare-icon {
    width: 44px;
    height: 44px;
    background: var(--card-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.pkg-fare-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
}

.pkg-fare-desc {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 16px;
    padding-left: 56px;
}

.pkg-fare-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 56px;
}

.pkg-fare-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pkg-currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--pkg-primary);
}

.pkg-amount {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
}

.pkg-enquiry-btn {
    background: var(--pkg-primary-gradient);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--pkg-primary-rgb), 0.4);
}

.pkg-enquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--pkg-primary-rgb), 0.5);
}

/* Inline Booking Box */
.pkg-booking-box {
    margin-top: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
}

.pkg-booking-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkg-booking-title i {
    color: #6366f1;
}

.pkg-booking-row {
    margin-bottom: 12px;
}

.pkg-booking-row input,
.pkg-booking-row select,
.pkg-booking-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pkg-booking-row input:focus,
.pkg-booking-row select:focus,
.pkg-booking-row textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.pkg-booking-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pkg-booking-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.pkg-btn-cancel {
    flex: 1;
    padding: 12px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pkg-btn-cancel:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.pkg-btn-send {
    flex: 2;
    padding: 12px;
    background: var(--pkg-primary-gradient);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--pkg-primary-rgb), 0.4);
}

.pkg-btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

/* Help Card */
.pkg-help-card {
    background: linear-gradient(145deg, #fef3c7 0%, #ffffff 100%);
    border-left: 5px solid #f59e0b;
}

.pkg-help-card h4 {
    margin: 0 0 12px 0;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkg-help-card h4 i {
    color: #f59e0b;
}

.pkg-help-card p {
    color: #64748b;
    margin: 0 0 16px 0;
    font-size: 14px;
}

.pkg-help-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d97706;
    font-weight: 600;
}

/* ===== Package Details — Responsive ===== */
@media (max-width: 768px) {

    /* --- Hero Section --- */
    .pkg-hero {
        padding: 16px;
        padding-left: 16px;
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .pkg-hero::before {
        width: 300px;
        height: 300px;
    }

    .pkg-title {
        font-size: 1.25rem;
        white-space: normal;
        word-break: break-word;
        margin-bottom: 10px;
    }

    .pkg-badges {
        gap: 8px;
        margin-bottom: 12px;
    }

    .pkg-badge {
        padding: 5px 10px;
        font-size: 11px;
        gap: 4px;
    }

    .pkg-rating {
        flex-wrap: wrap;
        gap: 8px;
    }

    .pkg-stars i {
        font-size: 14px;
    }

    .pkg-rating-text {
        font-size: 13px;
    }

    .pkg-hero-actions {
        position: static;
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .pkg-btn-pdf,
    .pkg-btn-share {
        padding: 10px 16px;
        font-size: 13px;
        gap: 6px;
        margin-left: 0;
    }

    /* --- Grid Layout --- */
    .pkg-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* --- Left Column --- */
    .pkg-col-left {
        gap: 16px;
    }

    /* --- Hero Image --- */
    .pkg-hero-image {
        border-radius: 14px;
    }

    .pkg-hero-image img {
        height: 220px;
    }

    .pkg-image-overlay {
        height: 100px;
    }

    /* --- Gallery --- */
    .pkg-gallery {
        gap: 8px;
    }

    .pkg-gallery-thumb {
        width: 72px;
        height: 50px;
        border-radius: 8px;
        border-width: 2px;
    }

    /* --- Description Card --- */
    .pkg-description-card,
    .pkg-inclusion-card,
    .pkg-exclusion-card,
    .pkg-help-card {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .pkg-description-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* --- Section Titles --- */
    .pkg-section-title {
        font-size: 1.15rem;
        margin-bottom: 14px;
        gap: 8px;
    }

    /* --- Fare Spec Card (tag pills row) --- */
    .pkg-fare-spec-card {
        gap: 6px;
    }

    .pkg-tag-pill-lg {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    /* --- City Badge --- */
    .pkg-city-badge {
        font-size: 13px;
    }

    /* --- Tags --- */
    .pkg-tags {
        gap: 6px;
    }

    .pkg-tag {
        padding: 6px 12px;
        font-size: 11px;
    }

    /* --- TagIds Section --- */
    .pkg-tagids-section {
        padding: 14px 16px;
        border-radius: 12px;
        margin: 14px 0;
    }

    .pkg-tagid-item {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* --- Itinerary / Day Cards --- */
    .pkg-itinerary-section {
        padding: 12px;
        border-radius: 14px;
    }

    .pkg-timeline {
        gap: 14px;
    }

    .pkg-day-card {
        flex-direction: column;
        border-radius: 14px;
    }

    .pkg-day-header {
        padding: 14px 16px;
        gap: 12px;
    }

    .pkg-day-marker {
        display: flex;
        align-items: center;
        gap: 8px;
        width: auto;
    }

    .pkg-day-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .pkg-day-label {
        margin-top: 0;
        font-size: 9px;
        letter-spacing: 1px;
    }

    .pkg-day-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .pkg-day-toggle {
        width: 30px;
        height: 30px;
    }

    .pkg-day-toggle i {
        font-size: 13px;
    }

    .pkg-day-content {
        padding: 14px 12px;
    }

    .pkg-day-photo img {
        max-height: 160px;
    }

    .pkg-day-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    /* --- Schedule Items (child activities) --- */
    .pkg-schedule-item {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }

    .pkg-schedule-photo {
        width: 100%;
        height: 140px;
        border-radius: 8px;
    }

    .pkg-schedule-title {
        font-size: 0.95rem;
    }

    .pkg-schedule-route {
        font-size: 12px;
        flex-wrap: wrap;
        gap: 4px;
    }

    .pkg-schedule-desc {
        font-size: 13px;
    }

    /* --- Inclusions / Exclusions Grid --- */
    .pkg-inc-exc-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pkg-card-header h4 {
        font-size: 1rem;
    }

    .pkg-inclusion-list li,
    .pkg-exclusion-list li {
        font-size: 14px;
        padding: 6px 0;
        gap: 8px;
    }

    /* --- Right Column / Sticky Sidebar --- */
    .pkg-col-right {
        margin-top: 4px;
    }

    .pkg-sticky-sidebar {
        position: static;
        gap: 14px;
    }

    /* --- Pricing Section --- */
    .pkg-pricing-section {
        padding: 18px 10px;
        border-radius: 14px;
    }

    .pkg-fares-grid {
        gap: 12px;
    }

    .pkg-fare-card {
        padding: 14px 12px;
        border-radius: 12px;
    }

    .pkg-fare-header {
        gap: 10px;
        margin-bottom: 8px;
    }

    .pkg-fare-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 16px;
    }

    .pkg-fare-name {
        font-size: 0.95rem;
    }

    .pkg-fare-desc {
        padding-left: 0;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .pkg-fare-price-row {
        padding-left: 0;
        flex-wrap: wrap;
        gap: 10px;
    }

    .pkg-currency {
        font-size: 14px;
    }

    .pkg-amount {
        font-size: 22px;
    }

    .pkg-enquiry-btn {
        padding: 10px 16px;
        font-size: 13px;
        gap: 6px;
        white-space: nowrap;
    }

    /* --- Inline Booking Box --- */
    .pkg-booking-box {
        padding: 14px;
        border-radius: 10px;
    }

    .pkg-booking-dual {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pkg-booking-row input,
    .pkg-booking-row select,
    .pkg-booking-row textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .pkg-booking-actions {
        flex-direction: column;
        gap: 8px;
    }

    .pkg-btn-cancel,
    .pkg-btn-send {
        flex: none;
        width: 100%;
    }

    /* --- Help Card --- */
    .pkg-help-card h4 {
        font-size: 0.95rem;
    }

    .pkg-help-card p {
        font-size: 13px;
    }

    /* --- Rating Section --- */
    .pkg-rating-section-wrap {
        margin-top: 24px;
    }

    /* --- Recommended Packages --- */
    .pkg-recommended-section {
        margin-top: 30px;
        padding-top: 24px;
    }

    .pkg-section-header-large {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }

    #recommendedGrid {
        grid-template-columns: 1fr !important;
    }

    /* --- Fares List (alternative layout) --- */
    .pkg-fare-item {
        padding: 8px 4px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .pkg-fare-item-header {
        flex-wrap: wrap;
        gap: 8px;
        width:100%;
    }

    .pkg-fare-item-header .pkg-enquiry-btn {
        margin-left: auto;
    }

    .pkg-fare-info {
        gap: 10px;
    }

    .pkg-fare-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .pkg-fare-details {
        gap: 2px;
    }

    .pkg-fare-name {
        font-size: 0.95rem;
    }

    .pkg-fare-price {
        font-size: 1.1rem;
    }
}

/* ===== TagIds Section ===== */
.pkg-tagids-section {
    background: linear-gradient(145deg, #fef3c7 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 20px 24px;
    margin: 20px 0;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.1);
}

.pkg-tagids-section h4 {
    margin: 0 0 14px 0;
    color: #1e293b;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.pkg-tagids-section h4 i {
    color: #f59e0b;
    font-size: 18px;
}

.pkg-tagids-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pkg-tagid-item {
    background: var(--pkg-warning-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.pkg-tagid-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.4);
}

/* ===== Updated Fares List ===== */
.pkg-fares-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pkg-fare-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 10px 4px;
    display: flex;
    justify-content: space-between;
    
    transition: all 0.3s ease;
}

.pkg-fare-item:hover {
    border-color: var(--pkg-primary);
    box-shadow: 0 8px 25px rgba(var(--pkg-primary-rgb), 0.15);
}

.pkg-fare-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pkg-fare-icon {
    width: 50px;
    height: 50px;
    background: var(--pkg-primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.pkg-fare-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pkg-fare-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.2;
}

.pkg-fare-price {
    color: #6366f1;
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.2;
}

.pkg-enquiry-btn {
    background: var(--pkg-primary-gradient);
    color: white;
    border: none;
    padding: 10px 10px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--pkg-primary-rgb), 0.4);
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 44px;
}

.pkg-enquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--pkg-primary-rgb), 0.5);
}

/* ===== Expandable Day Cards ===== */
.pkg-day-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.pkg-day-card.expanded {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pkg-day-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    cursor: pointer;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-left: 4px solid var(--day-color);
    transition: all 0.3s ease;
    position: relative;
}

.pkg-day-header:hover {
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
}

.pkg-day-card.expanded .pkg-day-header {
    background: linear-gradient(145deg, #f0f9ff 0%, #ffffff 100%);
}

.pkg-day-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.pkg-day-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--day-color) 0%, var(--day-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pkg-day-label {
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pkg-day-title-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pkg-day-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
}

.pkg-day-hasphoto {
    color: #6366f1;
    font-size: 16px;
    background: #e0e7ff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkg-day-toggle {
    width: 35px;
    height: 35px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pkg-day-toggle i {
    color: #64748b;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.pkg-day-card.expanded .pkg-day-toggle {
    background: var(--day-color);
    transform: rotate(180deg);
}

.pkg-day-card.expanded .pkg-day-toggle i {
    color: white;
}

.pkg-day-content {
    padding: 16px 16px 16px 16px;
    animation: slideDown 0.3s ease;
    background: white;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pkg-day-photo {
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pkg-day-photo img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    display: block;
}

.pkg-day-desc {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

/* ===== Modal Styles ===== */
html,
body {
    position: relative;
}

.pkg-modal-heder-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    padding: 10px;
}

.pkg-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-width: 100vw;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9;
    padding: 20px;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}

.pkg-modal-overlay.closing {
    animation: fadeOut 0.3s ease forwards;
}

.pkg-modal-overlay.closing .pkg-modal {
    animation: modalSlideOut 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.pkg-modal {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    max-height: calc(100vh - 40px);
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease;
    z-index: 2147483647 !important;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes modalSlideOut {
    from {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
}

.pkg-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pkg-modal-close:hover {
    background: white;
    transform: rotate(90deg);
}

.pkg-modal-body {
    display: flex;
    width: 100%;
}

.pkg-modal-left {
    flex: 1;
    min-height: 500px;
}

.pkg-modal-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.pkg-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.pkg-modal-duration {
    background: #10b981;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.pkg-modal-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pkg-modal-right {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 90vh;
}

.pkg-modal-heading {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pkg-modal-heading i {
    color: #6366f1;
}

.pkg-modal-vehicle {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(145deg, #f0f9ff 0%, #ffffff 100%);
    border: 2px solid #e0f2fe;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 10px;
}

.pkg-modal-vehicle-icon {
    width: 56px;
    height: 56px;
    background: var(--pkg-primary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.pkg-modal-vehicle-info {
    flex: 1;
}

.pkg-modal-vehicle-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
}

.pkg-modal-vehicle-price {
    color: #6366f1;
    font-weight: 800;
    font-size: 1.5rem;
}

.pkg-modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pkg-modal-row {
    display: flex;
}

.pkg-modal-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.pkg-modal-input:focus {
    outline: none;
    border-color: #6366f1;
    background: white;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.pkg-modal-dual {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
}

.pkg-country-code {
    background: #e2e8f0;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 600;
    color: #475569;
}

.pkg-modal-submit {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

.pkg-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.5);
}

/* ===== Loading Overlay ===== */
.pkg-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 24px;
}

.pkg-loading-content {
    text-align: center;
    padding: 40px;
}

.pkg-loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e2e8f0;
    border-top-color: #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.pkg-loading-text {
    font-size: 1.2rem;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 16px;
}

.pkg-loading-timer {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pkg-primary);
}

.pkg-success-icon {
    width: 80px;
    height: 80px;
    background: var(--pkg-success-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 40px;
    animation: scaleIn 0.5s ease;
}

.pkg-error-icon {
    width: 80px;
    height: 80px;
    background: var(--pkg-error-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 40px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.pkg-success-pnr {
    font-size: 1.3rem;
    color: #10b981;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 8px 16px;
    background: #d1fae5;
    border-radius: 8px;
    display: inline-block;
}

.pkg-redirect-text {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 12px;
}

.pkg-redirect-text .countdown {
    color: #6366f1;
    font-weight: 700;
    font-size: 1.1rem;
}

.pkg-success-btn {
    background: var(--pkg-primary-gradient);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pkg-success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .pkg-modal-overlay {
        padding: 10px;
    }

    .pkg-modal {
        flex-direction: column;
        max-height: 95vh;
        max-width: 100%;
        border-radius: 18px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pkg-modal-body {
        flex-direction: column;
        width: 100%;
    }

    .pkg-modal-left {
        min-height: 180px;
        max-height: 200px;
        flex: none;
        overflow: hidden;
        border-radius: 0 0 16px 16px;
    }

    .pkg-modal-image {
        min-height: 180px;
        max-height: 200px;
    }

    .pkg-modal-image img {
        height: 200px;
        object-fit: cover;
    }

    .pkg-modal-heder-overlay {
        padding: 8px 12px;
    }

    .pkg-modal-duration {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 6px;
    }

    .pkg-modal-right {
        padding: 18px 16px;
        max-height: none;
        overflow-y: visible;
        flex: none;
    }

    .pkg-modal-heading {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .pkg-modal-title {
        font-size: 1.1rem;
    }

    .pkg-modal-vehicle {
        padding: 10px;
        gap: 10px;
        margin-bottom: 8px;
    }

    .pkg-modal-vehicle-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 10px;
    }

    .pkg-modal-vehicle-name {
        font-size: 0.95rem;
    }

    .pkg-modal-vehicle-price {
        font-size: 1.2rem;
    }

    .pkg-modal-input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .pkg-modal-submit {
        padding: 14px;
        font-size: 15px;
    }

    .pkg-modal-close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        font-size: 20px;
    }
}

/* ===== Attractive Package List Grid Styles ===== */

/* Loading Skeleton Animation */
.pkg-loading-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

.pkg-skeleton-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pkg-skeleton-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.pkg-skeleton-content {
    padding: 20px;
}

.pkg-skeleton-line {
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
    margin-bottom: 12px;
}

.pkg-skeleton-line.short {
    width: 60%;
}

.pkg-skeleton-line.medium {
    width: 80%;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Modern Package Grid */
.pkg-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

.pkg-recommended-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px dashed var(--pkg-border);
}

.pkg-section-header-large {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pkg-text-main);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pkg-section-header-large i {
    color: var(--pkg-primary);
}


/* Force 3 columns for the recommended packages strip */
#recommendedGrid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    #recommendedGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pkg-modern-grid {
        grid-template-columns: 1fr;
    }

    #recommendedGrid {
        grid-template-columns: 1fr;
    }
}

/* Modern Package Card */
.pkg-modern-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.pkg-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

.pkg-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pkg-hero-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pkg-modern-card:hover::before {
    opacity: 1;
}

/* Card Image Section */
.pkg-card-media {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.pkg-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pkg-modern-card:hover .pkg-card-media img {
    transform: scale(1.08);
}

.pkg-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pkg-modern-card:hover .pkg-card-overlay {
    opacity: 1;
}

/* Badges on Image */
.pkg-card-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.pkg-card-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pkg-card-badge.days {
    background: var(--pkg-primary-gradient);
    color: white;
}

.pkg-card-badge.price {
    background: var(--pkg-primary-gradient);
    color: white;
    font-size: 14px;
}

/* Action Buttons on Hover */
.pkg-card-actions {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.pkg-modern-card:hover .pkg-card-actions {
    opacity: 1;
    transform: translateY(0);
}

.pkg-card-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #6366f1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.pkg-card-btn:hover {
    background: var(--pkg-primary);
    color: white;
    transform: scale(1.1);
}

/* Spinner inside the circular card button */
.pkg-card-btn .pkg-btn-spinner {
    border-color: rgba(99, 102, 241, 0.25);
    border-top-color: #6366f1;
}

/* Card Content */
.pkg-card-content {
    padding: 24px;
}

.pkg-card-header {
    margin-bottom: 16px;
}

.pkg-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pkg-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pkg-card-title a:hover {
    color: #6366f1;
}

.pkg-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 13px;
}

.pkg-card-meta i {
    color: #6366f1;
}

/* Description */
.pkg-card-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tags */
.pkg-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.pkg-card-tag {
    background: #fef3c7;
    color: #d97706;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* Vehicle Pricing Preview */
.pkg-card-vehicles {
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

.pkg-vehicle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.pkg-vehicle-row:last-child {
    border-bottom: none;
}

.pkg-vehicle-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pkg-vehicle-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pkg-primary);
    font-size: 14px;
}

.pkg-vehicle-name {
    font-weight: 600;
    color: #334155;
    font-size: 14px;
}

.pkg-vehicle-price {
    font-weight: 700;
    color: #6366f1;
    font-size: 15px;
}

/* Send Enquiry Button */
.pkg-card-footer {
    padding: 0 24px 24px;
}

.pkg-enquiry-btn {
    background: var(--pkg-primary-gradient);
    color: white;
    border: none;
    padding: 14px 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--pkg-primary-rgb), 0.3);
}

.pkg-enquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--pkg-primary-rgb), 0.4);
}

.pkg-enquiry-btn-lg {
    width: 100%;
    background: var(--pkg-primary-gradient);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--pkg-primary-rgb), 0.3);
}

.pkg-enquiry-btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}


/* Empty State */
.pkg-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pkg-empty-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--pkg-primary);
    font-size: 40px;
}

.pkg-empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.pkg-empty-text {
    color: #64748b;
    margin-bottom: 24px;
}

/* Pagination */
.pkg-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 20px;
}

.pkg-page-btn {
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pkg-page-btn:hover {
    background: #f8fafc;
    border-color: #6366f1;
    color: #6366f1;
}

.pkg-page-btn.active {
    background: var(--pkg-primary-gradient);
    color: white;
    border-color: transparent;
}

.pkg-page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== Share Modal Styles ===== */
.pkg-btn-share {
    background: rgba(255, 255, 255, 0.95);
    color: var(--pkg-primary);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--pkg-primary-rgb), 0.4);
    margin-left: 10px;
}

.pkg-btn-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.share-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.share-modal-overlay.show {
    display: flex;
}

.share-modal-box {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
    overflow: hidden;
    animation: sharePopIn .25s ease;
}

@keyframes sharePopIn {
    from {
        transform: scale(.94);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.share-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
}

.share-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.share-close-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1rem;
    transition: background .15s;
}

.share-close-btn:hover {
    background: #e2e8f0;
}

.share-booking-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px 16px;
    border-bottom: 1px solid #f1f5f9;
}

.share-booking-preview img {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f1f5f9;
}

.share-booking-preview .sbp-info h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 3px;
}

.share-booking-preview .sbp-info p {
    font-size: .82rem;
    color: #64748b;
    margin: 0;
}

.share-booking-preview .sbp-info .sbp-pnr {
    display: inline-block;
    margin-top: 5px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 6px;
    padding: 2px 8px;
    font-size: .72rem;
    font-weight: 700;
}

.share-actions-grid {
    display: flex;
    gap: 8px;
    padding: 16px 24px 24px;
    overflow-x: auto;
}

.share-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 6px;
    border-radius: 16px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    cursor: pointer;
    transition: all .18s;
    font-size: .8rem;
    font-weight: 700;
    color: #334155;
    flex: 1;
    text-align: center;
    min-width: 0;
}

.share-action-btn:hover {
    border-color: #6366f1;
    background: #f0f4ff;
    transform: translateY(-1px);
}

.share-action-btn .sab-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.share-action-btn .sab-icon.copy {
    background: #eff6ff;
    color: #3b82f6;
}

.share-action-btn .sab-icon.whatsapp {
    background: #dcfce7;
    color: #16a34a;
}

.share-action-btn .sab-icon.email {
    background: #fdf4ff;
    color: #9333ea;
}

.share-action-btn .sab-label {
    line-height: 1.2;
}

.share-action-btn .sab-label small {
    display: none;
}

.share-action-btn.copied {
    border-color: #10b981;
    background: #f0fdf4;
    color: #059669;
}



/* === Legacy Component Unification === */
.btn.accent,
.compact-btn,
.search-btn,
.price-badge,
.btn-primary,
.download-btn,
.pagination-btn.active,
.package-tag:hover {
    background: var(--pkg-primary-gradient) !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(var(--pkg-primary-rgb), 0.25) !important;
    border: none !important;
}

/* Specific overrides for buttons that might have individual sizes/shapes */
.search-btn {
    height: 48px;
    border-radius: 12px;
}

.compact-btn {
    border-radius: 10px;
}

.price-badge {
    border-radius: 10px;
}

.btn-primary {
    border-radius: 8px;
}

.download-btn {
    border-radius: 8px;
}

.pagination-btn.active {
    border-radius: 10px;
}

.package-tag {
    border-radius: 999px;
}

/* Vehicle Price Unification */
.vehicle-price,
.pkg-vehicle-price {
    color: var(--pkg-primary) !important;
    font-weight: 800 !important;
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
}

/* Chat Launcher Global */
#pgc-launcher {
    background: var(--pkg-primary-gradient) !important;
    box-shadow: 0 6px 20px rgba(var(--pkg-primary-rgb), 0.45) !important;
    color: white !important;
}

/* Fix Package title color globally for themes */
.pkg-card-title,
.pkg-card-title a,
.card .title {
    color: var(--pkg-text-main) !important;
}

/* Other miscellaneous themed icons */
.pkg-card-meta i,
.logo span,
.pkg-section-title i,
.pkg-marker-icon,
.pkg-support-link i {
    color: var(--pkg-primary) !important;
}

:root {
    --bg: #f6fbfc;
    --card: #ffffff;
    --muted: #6b7a8a;
    --accent1: #0ea5a5;
    --accent2: #06b6d4;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow-lg: 0 18px 50px rgba(8, 20, 40, 0.08);
    --radius: 14px;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: 'Krub', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
    background: linear-gradient(180deg, #eef8fb, var(--bg));
    color: #072033;
    padding: 28px 20px;
}

/* layout */
.app {
    max-width: 1200px;
    margin: 0 auto
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px
}

.logo {
    font-weight: 900;
    font-size: 20px;
    font-family: 'Inter', sans-serif
}

.logo span {
    color: var(--accent1)
}

.nav-actions {
    display: flex;
    gap: 10px
}

.ghost {
    background: transparent;
    border: 1px solid rgba(7, 20, 35, 0.06);
    padding: 8px 12px;
    border-radius: 10px
}

.btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    font-weight: 800;
    cursor: pointer
}


/* compact search (iframe-like) */
.compact-search {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #ffffff, #f8feff);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 10px 30px rgba(6, 22, 40, 0.04);
    max-width: 520px;
    margin: 0 auto 18px;
    transform-origin: center;
    transition: transform .28s ease, opacity .28s ease;
}

.compact-inner {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%
}

.compact-input {
    flex: 1;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(8, 20, 40, 0.06);
    padding: 8px 14px;
    font-size: 15px;
    background: linear-gradient(180deg, #fff, #fbfdff)
}


.compact-hint {
    color: var(--muted);
    font-weight: 700;
    font-size: 13px
}

/* full search panel */
.hidden {
    display: none
}

.search-panel {
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    padding: 16px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(8, 20, 40, 0.04)
}

.search-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap
}

.search-input-wrap {
    flex: 1;
    min-width: 260px;
    position: relative
}

.search-input {
    width: 100%;
    height: 52px;
    border-radius: 999px;
    padding: 12px 48px 12px 18px;
    border: 1px solid rgba(8, 20, 40, 0.06);
    font-size: 15px;
    outline: none;
    background: linear-gradient(180deg, #fff, #fbfdff);
    transition: box-shadow .15s, transform .1s
}

.search-input:focus {
    box-shadow: 0 12px 40px rgba(6, 22, 40, 0.06);
    transform: translateY(-2px);
    border-color: var(--accent1)
}

.icon-btn {
    position: absolute;
    right: 12px;
    top: 10px;
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    color: var(--muted)
}

.selected-filters-summary {
    margin-top: 12px;
    padding: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(14, 165, 166, 0.04), rgba(6, 182, 212, 0.02));
    color: var(--muted);
    font-weight: 700;
    display: none;
    transition: all .18s
}

.selected-filters-summary .line {
    margin: 6px 0;
    font-weight: 800;
    color: #054045
}

/* filters */
.filters-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap
}

.multi {
    background: var(--card);
    border-radius: 12px;
    padding: 10px;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 8px 24px rgba(6, 22, 40, 0.04);
    cursor: pointer;
    min-width: 160px;
    position: relative
}

.multi.big {
    min-width: 320px;
    max-width: 420px
}

.multi .title {
    font-size: 12px;
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 6px;
    display: flex;
    gap: 8px;
    align-items: center
}

.multi .value {
    font-weight: 900;
    color: #072033
}

.multi .list {
    position: absolute;
    left: 8px;
    right: 8px;
    top: calc(100% + 10px);
    background: linear-gradient(180deg, #fff, #fbfdff);
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(8, 20, 40, 0.08);
    display: none;
    z-index: 80;
    max-height: 260px;
    overflow: auto;
    border: 1px solid rgba(8, 20, 40, 0.04)
}

.opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 8px;
    font-weight: 700
}

.opt input {
    width: 16px;
    height: 16px
}

.opt:hover {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.06), rgba(14, 165, 166, 0.03))
}

.selected-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px
}

.chip {
    background: rgba(6, 182, 212, 0.09);
    color: var(--accent1);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    display: inline-flex;
    gap: 8px;
    align-items: center
}

.chip .x {
    cursor: pointer;
    font-weight: 800;
    margin-left: 6px
}

/* footer area with centered search */
.search-footer {
    display: flex;
    justify-content: center;
    margin-top: 14px
}


/* short filters */
.short-filters {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.short-chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.09);
    color: var(--accent1);
    font-weight: 800;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    border: 1px solid rgba(6, 182, 212, 0.12)
}

/* results grid */
.results {
    margin-top: 20px
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* always up to 3 columns */
    gap: 18px
}

.card {
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(8, 20, 40, 0.03);
    box-shadow: 0 10px 30px rgba(8, 20, 40, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform .14s, box-shadow .14s
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(8, 20, 40, 0.08)
}

.media {
    position: relative;
    height: 220px;
    overflow: hidden
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s
}

.card:hover .media img {
    transform: scale(1.06)
}


.vehicle-amount {
    position: absolute;
    left: 16px;
    top: 64px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 10px;
    font-weight: 600;
    color: #072033;
    box-shadow: 0 8px 20px rgba(8, 20, 40, 0.06);
    z-index: 2
}

.status-pill {
    position: absolute;
    right: 16px;
    top: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    box-shadow: 0 6px 18px rgba(8, 20, 40, 0.04);
    cursor: pointer;
}

.body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.title {
    font-size: 16px;
    font-weight: 900;
    margin: 0
}

.meta {
    color: var(--muted);
    font-weight: 700;
    font-size: 13px
}

.desc {
    color: #214352;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.95
}

.actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.left-actions {
    display: flex;
    gap: 10px;
    align-items: center
}


.small-cta {
    background: #fff;
    border: 1px solid rgba(6, 182, 212, 0.12);
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    color: var(--accent1)
}

.menu {
    position: relative
}

.menu .menu-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--muted)
}

.menu .menu-list {
    position: absolute;
    right: 0;
    top: 44px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(8, 20, 40, 0.08);
    overflow: hidden;
    border: 1px solid rgba(8, 20, 40, 0.04);
    display: none;
    min-width: 220px;
    z-index: 90
}

.menu .menu-list .item {
    padding: 12px 14px;
    font-weight: 800;
    cursor: pointer;
    border-bottom: 1px solid rgba(8, 20, 40, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.menu .menu-list .item:last-child {
    border-bottom: none
}

.menu .menu-list .item:hover {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.04), rgba(6, 182, 212, 0.02))
}

/* view/download buttons style */
.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    border: none;
    font-weight: 800;
    cursor: pointer
}

.view-btn {
    background: linear-gradient(90deg, #ffffff, #eef6f6);
    border: 1px solid rgba(6, 182, 212, 0.08);
    color: var(--accent1)
}


.action-btn:hover {
    transform: translateY(-4px);
    transition: transform .12s
}

/* vehicle list */
.vehicle-list {
    border-top: 1px dashed rgba(8, 20, 40, 0.04);
    display: flex;
    flex-direction: column;
    gap: 8px
}

.vehicle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.02), rgba(14, 165, 166, 0.01))
}

.vehicle-name {
    font-weight: 800
}

.vehicle-price {
    font-weight: 900
}

.vehicle-actions {
    display: flex;
    gap: 8px
}

/* footer */
.footer {
    margin-top: 30px;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-weight: 700
}

/* small screens */
@media (max-width:880px) {
    .media {
        height: 160px
    }

    .filters-row {
        width: 100%;
        display: flex;
        gap: 8px;
        align-items: center;
        overflow-x: auto;
        padding-bottom: 8px
    }

    .multi.big {
        min-width: 220px
    }
}



/*Pagging*/
/* Pagination â¬   styled to match the page theme */
.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(248, 254, 255, 0.6));
    border-radius: 12px;
    border: 1px solid rgba(8, 20, 40, 0.03);
    box-shadow: 0 10px 30px rgba(8, 20, 40, 0.03);
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Buttons */
.pagination-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid rgba(7, 20, 35, 0.04);
    background: linear-gradient(180deg, #fff, #fbfdff);
    font-weight: 900;
    color: #053237;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform .12s, box-shadow .12s, background .12s;
    box-shadow: 0 8px 20px rgba(8, 20, 40, 0.02);
}

/* Hover effect */
.pagination-btn:hover:not(.active):not(:disabled) {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(8, 20, 40, 0.06);
}

/* Active page */

/* Disabled state (e.g., prev/next when not available) */
.pagination-btn:disabled,
.pagination-btn[disabled] {
    opacity: 0.48;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background: linear-gradient(180deg, #fbfdff, #f7fbfb);
    border-color: rgba(7, 20, 35, 0.02);
}

/* Arrow icons inside buttons */
.pagination-btn i {
    font-size: 14px;
}

/* Compact page number buttons for small screens */
@media (max-width:480px) {
    .pagination-btn {
        min-width: 38px;
        height: 38px;
        font-size: 13px;
    }
}

/* Pagination info (Showing X-Y of Z) */
.pagination-info {
    margin-left: 12px;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
}

/* Push info to the right when wide layout desired
   Use `.pagination.right` on container if you want info aligned right */
.pagination.right {
    justify-content: space-between;
}

.pagination.right .pagination-info {
    margin-left: auto;
    margin-right: 0;
}

/* Small visual separator (optional) */
.pagination .sep {
    width: 1px;
    height: 28px;
    background: rgba(7, 20, 35, 0.04);
    border-radius: 2px;
    margin: 0 6px;
}

/* Accessibility focus outline */
.pagination-btn:focus {
    outline: 3px solid rgba(14, 165, 166, 0.14);
    outline-offset: 3px;
    border-radius: 9px;
}

.grid a {
    text-decoration: none;
    color: inherit;
}

/* Package tags â¬   mini chips below title or in card footer */
.package-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
}

.package-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.08), rgba(14, 165, 166, 0.06));
    border: 1px solid rgba(6, 182, 212, 0.14);
    color: var(--accent1);
    font-weight: 800;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.06);
    transition: all .18s ease;
    cursor: default;
    user-select: none;
}


/* Optional: Add emoji or icon inside tag */
.package-tag i {
    margin-right: 6px;
    font-size: 13px;
    opacity: 0.9;
}



/* ---------- Footer Meta & Package Stats ---------- */
/* -------- Refined Package Footer Layout -------- */

.footer-meta {
    margin-top: 14px;
    border-top: 1px dashed rgba(8, 20, 40, 0.06);
    padding-top: 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.package-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

/* Left Column (Created Info) */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.created-date,
.created-by {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.04), rgba(14, 165, 166, 0.02));
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 800;
    color: #214352;
    box-shadow: 0 4px 10px rgba(8, 20, 40, 0.03);
    transition: transform .12s ease, box-shadow .12s ease;
}

.created-date i,
.created-by i {
    color: var(--accent1);
    font-size: 13px;
}

.created-date:hover,
.created-by:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.12);
}

/* Right Column (Rating + Bookings) */
.right-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.rating-block {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.08), rgba(14, 165, 166, 0.04));
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.08);
    transition: all .18s ease;
}

.rating-block i.fa-star {
    color: #fbbf24;
    margin-right: 6px;
}

.rating-block:hover {
    /*background: linear-gradient(90deg, var(--accent1), var(--accent2));
        color: #fff;*/
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(6, 182, 212, 0.16);
}

.bookings-block {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.02), rgba(14, 165, 166, 0.02));
    padding: 6px 10px;
    border-radius: 8px;
    color: #58687f;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(8, 20, 40, 0.03);
    text-align: left;
}

.bookings-block i {
    color: #58687f;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .package-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .right-column {
        align-items: flex-start;
    }
}

/*Package details*/

/* ---------- Package Details Page ---------- */
.package-header {
    background: linear-gradient(180deg, #fff, #fbfdff);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 12px 36px rgba(8, 20, 40, 0.04);
    margin-bottom: 18px;
}

.package-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.package-header-main h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    color: #072033;
}

.package-header-main .subtitle {
    margin: 6px 0 0;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

.package-header-actions .btn-action {
    border: none;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.12);
}

/* Layout rows */
.row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-top: 14px;
}

.col-lg-7 {
    flex: 0 0 62%;
    max-width: 62%;
}

.col-lg-5 {
    flex: 0 0 38%;
    max-width: 38%;
}

/* Images */
.package-main-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(8, 20, 40, 0.03);
    box-shadow: 0 10px 30px rgba(8, 20, 40, 0.04);
}

.package-main-image img {
    width: 100%;
    display: block;
    height: 420px;
    object-fit: cover;
}

.package-image-gallery {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow: auto;
}

.package-image-gallery .gallery-thumb {
    width: 84px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .12s, border-color .12s;
}

.package-image-gallery .gallery-thumb:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.16);
}

/* Fares grid */
.fares-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fare-card {
    background: var(--card);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 8px 18px rgba(8, 20, 40, 0.04);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fare-top {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.vehicle-name {
    font-weight: 900;
    color: #072033;
    font-size: 15px;
}

.fare-item {
    text-align: right;
}

.fare-value {
    font-weight: 900;
    font-size: 18px;
    color: #072033;
}

.fare-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 800;
}

/* vehicle-desc */
.vehicle-desc {
    color: #334e54;
    font-size: 13px;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.02), rgba(14, 165, 166, 0.01));
    padding: 8px;
    border-radius: 8px;
    font-weight: 700;
}

/* Itinerary cards */
.section-title {
    font-size: 16px;
    margin: 12px 0;
    font-weight: 900;
    color: #072033;
}

.itinerary-day.card {
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 8px 20px rgba(8, 20, 40, 0.04);
}

.card__header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
    color: #072033;
}

.itinerary-body {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 8px;
}

.itinerary-body.no-photo .itinerary-desc {
    width: 100%;
}

.itinerary-body.with-photo.photo-left .itinerary-photo {
    order: 0
}

.itinerary-body.with-photo.photo-right .itinerary-photo {
    order: 1
}

.itinerary-photo img {
    width: 240px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(8, 20, 40, 0.04);
}

.itinerary-content {
    flex: 1;
}

.itinerary-desc,
.child-desc {
    color: #214352;
    font-size: 14px;
    line-height: 1.5;
}

.itinerary-children {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.itinerary-child {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(250, 250, 250, 0.6));
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(8, 20, 40, 0.03);
}

.child-header {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 900;
    color: #072033;
}

.child-route {
    color: var(--muted);
    font-weight: 700;
    margin-top: 6px;
}

/* tags */
.tags {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.tags .tag {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.08), rgba(14, 165, 166, 0.04));
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900;
    color: var(--accent1);
    border: 1px solid rgba(6, 182, 212, 0.12);
}

/* inclusions / exclusions */
.inclusions-exclusions {
    display: flex;
    gap: 18px;
    margin-top: 12px;
}

.inclusions-exclusions h3 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 900;
    color: #072033;
}

.inclusions-exclusions ul {
    margin: 0;
    padding-left: 18px;
    color: #214352;
    font-weight: 700;
}

/* footer meta small spacing */
.package-stats {
    margin-top: 12px;
}

/* slide modal (booking) */
.slide-modal {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 420px;
    max-width: 100%;
    transform: translateX(110%);
    transition: transform .28s cubic-bezier(.22, .9, .3, 1);
    z-index: 1200;
    box-shadow: -20px 30px 80px rgba(8, 20, 40, 0.2);
}

.slide-modal.show {
    transform: translateX(0%);
}

.slide-modal>div {
    background: linear-gradient(180deg, #fff, #fbfdff);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slide-modal-header {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(8, 20, 40, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slide-modal-header h5 {
    margin: 0;
    font-weight: 900;
    color: #072033;
}

.slide-close {
    font-size: 20px;
    cursor: pointer;
    color: var(--muted);
}

.slide-modal-body {
    padding: 14px;
    overflow: auto;
    flex: 1;
    gap: 8px;
    display: flex;
    flex-direction: column;
}

.slide-modal-body label {
    font-weight: 800;
    color: #214352;
    margin-top: 6px;
    font-size: 13px;
}

.slide-modal-body .form-control {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(8, 20, 40, 0.06);
    font-weight: 700;
}

.slide-modal-footer {
    padding: 12px;
    border-top: 1px solid rgba(8, 20, 40, 0.04);
    display: flex;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
}

@media (max-width:980px) {
    .row {
        flex-direction: column;
    }

    .col-lg-7,
    .col-lg-5 {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .package-main-image img {
        height: 320px;
    }

    .slide-modal {
        width: 100%;
    }
}



.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: var(--pkg-primary);
    transition: opacity 0.3s ease;
}

.loading-overlay .spinner i {
    font-size: 3.5rem;
    color: var(--pkg-primary);
    text-shadow: 0 0 20px rgba(var(--pkg-primary-rgb), 0.3);
}

.loading-overlay p {
    margin: 0;
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--pkg-text-main);
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pkg-pulse 2s infinite ease-in-out;
}







/* =========================
   Single Package â¬   Attractive Theme
   (Drop this at the end of your stylesheet)
   ========================= */

.packages-view {
    animation: fadeInUp .28s ease both;
    padding-bottom: 28px;
}

/* Header */
.package-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 252, 0.98));
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 18px 50px rgba(8, 20, 40, 0.06);
    margin-bottom: 18px;
}

.package-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.package-header-main>div {
    min-width: 0;
}

.package-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.3px;
    color: #072033;
}

.package-header .subtitle {
    margin: 6px 0 0;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

.package-header-actions .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    border: none;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.12);
    cursor: pointer;
    transition: transform .12s, box-shadow .12s;
}

.package-header-actions .btn-action:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.16);
}

/* Layout */
.row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.col-lg-7 {
    flex: 0 0 62%;
    max-width: 62%;
}

.col-lg-5 {
    flex: 0 0 38%;
    max-width: 38%;
}

/* Main hero image */
.package-main-image {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 20px 50px rgba(8, 20, 40, 0.06);
}

.package-main-image::after {
    /* subtle vignette */
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 30%, rgba(0, 0, 0, 0.06) 100%);
}

.package-main-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.2, .9, .3, 1);
}

.package-main-image:hover img {
    transform: scale(1.03);
}

/* Gallery thumbs */
.package-image-gallery {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    padding-bottom: 6px;
    overflow: auto;
}

.gallery-thumb {
    width: 96px;
    height: 68px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(8, 20, 40, 0.04);
    transition: transform .12s, border-color .12s, box-shadow .12s;
}

.gallery-thumb:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 182, 212, 0.14);
    box-shadow: 0 16px 40px rgba(8, 20, 40, 0.08);
}

.gallery-thumb.active {
    border-color: var(--accent1);
    box-shadow: 0 18px 50px rgba(6, 182, 212, 0.12);
    transform: translateY(-8px);
}

/* Fares column (sticky on large screens) */
.col-lg-5 {
    align-self: flex-start;
    position: relative;
}

@media (min-width:1100px) {
    .col-lg-5 {
        position: sticky;
        top: 28px;
    }
}

.fares-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
}

.fare-card {
    background: linear-gradient(180deg, #fff, #fbfdff);
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 14px 36px rgba(8, 20, 40, 0.05);
    transition: transform .14s, box-shadow .14s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fare-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(8, 20, 40, 0.08);
}

.fare-top {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.vehicle-name {
    font-weight: 900;
    color: #072033;
    font-size: 16px;
}

.fare-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 800;
    margin-top: 4px;
}

.fare-item {
    text-align: right;
    min-width: 110px;
}

.fare-value {
    font-weight: 900;
    font-size: 18px;
    color: #072033;
}

.fare-card .btn {
    min-width: 120px;
    border-radius: 10px;
}

/* vehicle-desc */
.vehicle-desc {
    color: #334e54;
    font-size: 13px;
    padding: 8px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.02), rgba(14, 165, 166, 0.01));
    font-weight: 700;
}

/* Description / tags / lists */
.description {
    color: #214352;
    font-size: 15px;
    line-height: 1.65;
    margin-top: 12px;
}

.tags {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.tags strong {
    color: #214352;
    margin-right: 8px;
    font-weight: 900;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.06), rgba(14, 165, 166, 0.03));
    color: var(--accent1);
    font-weight: 900;
    border: 1px solid rgba(6, 182, 212, 0.08);
    transition: transform .12s, box-shadow .12s;
    cursor: default;
}

.tag:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.08);
    color: #fff;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
}

/* inclusions / exclusions */
.inclusions-exclusions {
    display: flex;
    gap: 18px;
    margin-top: 14px;
    align-items: flex-start;
}

.inclusions-exclusions>div {
    flex: 1;
    background: linear-gradient(180deg, #fff, #fbfdff);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(8, 20, 40, 0.03);
    box-shadow: 0 8px 20px rgba(8, 20, 40, 0.04);
}

.inclusions-exclusions h3 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 900;
    color: #072033;
}

.inclusions-exclusions ul {
    margin: 0;
    padding-left: 18px;
    color: #214352;
    font-weight: 700;
}

/* Itinerary â¬   timeline style */
.section-title {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 900;
    color: #072033;
    display: flex;
    align-items: center;
    gap: 8px;
}

.itinerary-day.card {
    position: relative;
    padding: 12px;
    border-radius: 12px;
    margin: 14px 0;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 12px 30px rgba(8, 20, 40, 0.04);
    overflow: visible;
}

.itinerary-day.card::before {
    content: "";
    position: absolute;
    left: -28px;
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.12);
}

.card__header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
    color: #072033;
}

.itinerary-body {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 10px;
}

.itinerary-photo {
    flex: 0 0 240px;
}

.itinerary-photo img {
    width: 240px;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(8, 20, 40, 0.06);
    transition: transform .18s;
}

.itinerary-body.with-photo.photo-left .itinerary-photo {
    order: 0;
}

.itinerary-body.with-photo.photo-right .itinerary-photo {
    order: 1;
}

.itinerary-body .itinerary-content {
    flex: 1;
}

.itinerary-desc {
    color: #214352;
    font-size: 14px;
    line-height: 1.6;
}

.itinerary-children {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.itinerary-child {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(250, 250, 250, 0.6));
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(8, 20, 40, 0.03);
}

.child-header {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 900;
    color: #072033;
}

.child-route {
    color: var(--muted);
    font-weight: 700;
    margin-top: 6px;
}

.child-desc {
    color: #334e54;
    margin-top: 6px;
}

/* Footer spacing */
.package-stats {
    margin-top: 12px;
}

/* Slide modal (booking) â¬   center & mobile friendly tweak */
.slide-modal {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 420px;
    max-width: 100%;
    transform: translateX(110%);
    transition: transform .28s cubic-bezier(.22, .9, .3, 1);
    z-index: 1200;
    box-shadow: -20px 30px 80px rgba(8, 20, 40, 0.2);
}

.slide-modal.show {
    transform: translateX(0%);
}

.slide-modal>div {
    background: linear-gradient(180deg, #fff, #fbfdff);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(8, 20, 40, 0.04);
}

.slide-modal-header {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(8, 20, 40, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slide-modal-header h5 {
    margin: 0;
    font-weight: 900;
    color: #072033;
}

.slide-close {
    font-size: 22px;
    cursor: pointer;
    color: var(--muted);
    padding: 8px;
    border-radius: 8px;
    transition: background .12s;
}

.slide-close:hover {
    background: rgba(8, 20, 40, 0.03);
}

/* small form styles inside modal */
.slide-modal-body {
    padding: 14px;
    overflow: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slide-modal-body label {
    font-weight: 800;
    color: #214352;
    margin-top: 6px;
    font-size: 13px;
}

.slide-modal-body .form-control {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(8, 20, 40, 0.06);
    font-weight: 700;
}

/* Buttons */
.btn {
    padding: 10px 12px;
    border-radius: 10px;
    border: none;
    font-weight: 900;
    cursor: pointer;
}

.btn--primary {
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    color: #fff;
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.12);
}

.btn:active {
    transform: translateY(1px);
}

/* Responsive */
@media (max-width: 980px) {
    .row {
        flex-direction: column;
    }

    .col-lg-7,
    .col-lg-5 {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .package-main-image img {
        height: 320px;
    }

    .fares-grid {
        flex-direction: row;
        overflow: auto;
    }

    .fare-card {
        min-width: 260px;
        flex: 0 0 auto;
    }

    .slide-modal {
        width: 100%;
        transform: translateX(110%);
    }
}

/* small animation helpers */
@keyframes fadeInUp {
    from {
        transform: translateY(8px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}



/* Search panel */
.search-panel {
    max-width: 1200px;
    margin: 0 auto 22px;
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #fbfdff);
    box-shadow: var(--shadow);
}

/* Controls row: four items inline then stack on small screens */
.controls-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 220px;
    gap: 12px;
    margin-bottom: 12px;
    align-items: start
}



.multi,
.single {
    background: var(--card);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(12, 38, 63, 0.04);
    position: relative
}

.multi .title,
.single .title {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px
}

.multi .value {
    font-weight: 700;
    font-size: 14px;
    color: #17293a
}

.list {
    display: none;
    position: absolute;
    left: 10px;
    right: 10px;
    top: 78px;
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: 60;
    max-height: 220px;
    overflow: auto
}

.multi[aria-expanded="true"] .list {
    display: block
}

/* list options */
.opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer
}

.opt:hover {
    background: #f1f5f9
}

.opt input[type="checkbox"] {
    width: 16px;
    height: 16px
}

/* selected chips inside the control */
.selected-chips {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.chip {
    background: #eef6ff;
    border-radius: 18px;
    padding: 6px 10px;
    font-size: 13px
}

.chip .x {
    margin-left: 8px;
    cursor: pointer
}

/* search row */
.search-row {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

@media(max-width:600px) {
    .search-row {
        flex-direction: column
    }
}

.search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px
}

.search-input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e6edf3;
    font-size: 15px;
    box-shadow: none
}

.icon-btn {
    background: transparent;
    border: 0;
    font-size: 20px;
    padding: 6px;
    cursor: pointer;
    color: #7b8794
}

/* selected filters summary (below input on narrow screens) */
.selected-filters-summary {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px
}

/* Centered search button */
.search-footer {
    text-align: center;
    margin-top: 14px
}

.btn {
    padding: 10px 16px;
    border-radius: 10px;
    border: 0;
    cursor: pointer
}

.btn.search-btn {

    font-weight: 700;
    box-shadow: 0 6px 16px rgba(11, 116, 222, 0.18);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px
}


.inclusions-exclusions ul li {
    padding-top: 5px;
    padding-bottom: 5px;
}



/* Fares grid / booking-box styles */
.fares-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media(min-width:900px) {
    .fares-grid {
        grid-template-columns: 1fr;
    }

    /* keep single column for clarity, change if you want multi-col */
}

.fare-card {
    background: #fff;
    border: 1px solid rgba(20, 20, 20, 0.06);
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(18, 24, 40, 0.03);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fare-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.fare-left {
    flex: 1;
    min-width: 0;
}

.fare-right {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.vehicle-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.vehicle-desc-inline {
    font-size: 0.85rem;
    color: #58687f;
    opacity: .9;
}

.fare-item .fare-value {
    font-weight: 800;
    font-size: 1.05rem;
    text-align: right;
}

.fare-label {
    font-size: 0.8rem;
    color: #7b8a99;
    text-align: right;
}

.fare-actions .btn {
    margin-left: 8px;
}

.booking-box {
    background: linear-gradient(180deg, #fbfdff, #fff);
    border-radius: 8px;
    padding: 12px;
    border: 1px dashed rgba(20, 20, 20, 0.06);
    margin-top: 8px;
    transition: all .18s ease;
}

.booking-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.booking-row input.form-control,
.booking-row select.form-control,
.booking-row textarea.form-control {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #e6e9ee;
    border-radius: 6px;
    font-size: 0.95rem;
}

.notes-row textarea {
    width: 100%;
}

.booking-actions {
    justify-content: flex-end;
    display: flex;
    gap: 8px;
    align-items: center;
}

.booking-status {
    margin-top: 8px;
    font-size: 0.92rem;
    color: #333;
}

/* small responsive */
@media (max-width:600px) {
    .booking-row {
        flex-direction: column;
    }

    .fare-right {
        flex-direction: column;
        align-items: flex-end;
    }
}



/* Success card shown after booking */
.booking-success {
    display: block;
    border-radius: 10px;
    padding: 14px;
    background: linear-gradient(180deg, #f7fffb, #ffffff);
    border: 1px solid rgba(34, 197, 94, 0.12);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.06);
    color: #0b3a2a;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.booking-success .success-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-success .check-icon {
    width: 40px;
    height: 40px;
    color: #16a34a;
}

.booking-success .success-title {
    font-size: 1.02rem;
    font-weight: 800;
}

.booking-success .success-body {
    margin-top: 8px;
}

.booking-success .success-pnr {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #08331f;
}

.booking-success .success-msg {
    font-size: 0.92rem;
    color: #124032;
    margin-bottom: 8px;
}

.booking-success .success-progress {
    width: 100%;
    height: 8px;
    background: rgba(6, 95, 70, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.booking-success .success-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #34d399, #10b981);
    transition: width 0.1s linear;
}

.booking-success .success-actions {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.booking-success .btn {
    padding: 6px 10px;
    font-size: 0.9rem;
    border-radius: 8px;
}

@media(max-width:880px) {
    .controls-row {
        grid-template-columns: 1fr;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 18px
    }
}

/* --- Centered No Results Card --- */
.no-results-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* âS&  vertical center */
    text-align: center;
    /* âS&  center text */
    gap: 18px;
    width: 100%;
    min-height: 60vh;
    /* âS&  ensures it vertically centers within viewport */
    padding: 24px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f9fbff);
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 8px 24px rgba(8, 20, 40, 0.03);
    animation: fadeInUp .3s ease both;
}

/* SVG illustration */
.nores-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* content area */
.nores-content {
    max-width: 470px;
}

.nores-content h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0b3a66;
}

.nores-content p {
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.5;
}

/* suggestions list */
.nores-suggestions {
    margin: 12px 0;
    padding-left: 0;
    list-style: none;
}

.nores-suggestions li {
    margin-bottom: 6px;
    color: #475569;
    position: relative;
    padding-left: 18px;
}

.nores-suggestions li::before {
    content: "â¬ ¢";
    position: absolute;
    left: 0;
    color: #3b82f6;
}

/* actions */
.nores-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    /* âS&  center buttons */
    margin-top: 12px;
}

.nores-actions .btn {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}

.nores-actions .btn--outline {
    background: transparent;
    border: 1px solid rgba(7, 89, 133, 0.2);
    color: #0b3a66;
}

.nores-actions .btn--primary {
    background: linear-gradient(90deg, #0369a1, #0284c7);
    color: #fff;
    border: none;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.15);
}

/* footer */
.nores-footer {
    margin-top: 14px;
    color: #64748b;
    font-size: 0.88rem;
}

/* Responsive (mobile friendly) */
@media (max-width: 600px) {
    .no-results-card {
        padding: 20px;
        min-height: 70vh;
    }

    .nores-actions {
        flex-direction: column;
        width: 100%;
    }

    .nores-actions .btn {
        width: 100%;
    }
}

/* subtle fade animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- Legacy Styles Merged --- */


* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: 'Krub', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
    background: linear-gradient(180deg, #eef8fb, var(--pkg-bg));
    color: #072033;
    padding: 28px 20px;
}

/* layout */
.app {
    max-width: 1200px;
    margin: 0 auto
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px
}

.logo {
    font-weight: 900;
    font-size: 20px;
    font-family: 'Inter', sans-serif
}

.logo span {
    color: var(--pkg-primary)
}

.nav-actions {
    display: flex;
    gap: 10px
}

.ghost {
    background: transparent;
    border: 1px solid rgba(7, 20, 35, 0.06);
    padding: 8px 12px;
    border-radius: 10px
}

.btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    font-weight: 800;
    cursor: pointer
}


/* compact search (iframe-like) */
.compact-search {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #ffffff, #f8feff);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 10px 30px rgba(6, 22, 40, 0.04);
    max-width: 520px;
    margin: 0 auto 18px;
    transform-origin: center;
    transition: transform .28s ease, opacity .28s ease;
}

.compact-inner {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%
}

.compact-input {
    flex: 1;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(8, 20, 40, 0.06);
    padding: 8px 14px;
    font-size: 15px;
    background: linear-gradient(180deg, #fff, #fbfdff)
}


.compact-hint {
    color: var(--pkg-text-muted);
    font-weight: 700;
    font-size: 13px
}

/* full search panel */
.hidden {
    display: none
}

.search-panel {
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    padding: 16px;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(8, 20, 40, 0.04)
}

.search-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap
}

.search-input-wrap {
    flex: 1;
    min-width: 260px;
    position: relative
}

.search-input {
    width: 100%;
    height: 52px;
    border-radius: 999px;
    padding: 12px 48px 12px 18px;
    border: 1px solid rgba(8, 20, 40, 0.06);
    font-size: 15px;
    outline: none;
    background: linear-gradient(180deg, #fff, #fbfdff);
    transition: box-shadow .15s, transform .1s
}

.search-input:focus {
    box-shadow: 0 12px 40px rgba(6, 22, 40, 0.06);
    transform: translateY(-2px);
    border-color: var(--pkg-primary)
}

.icon-btn {
    position: absolute;
    right: 12px;
    top: 10px;
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    color: var(--pkg-text-muted)
}

.selected-filters-summary {
    margin-top: 12px;
    padding: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(14, 165, 166, 0.04), rgba(var(--pkg-primary-rgb), 0.02));
    color: var(--pkg-text-muted);
    font-weight: 700;
    display: none;
    transition: all .18s
}

.selected-filters-summary .line {
    margin: 6px 0;
    font-weight: 800;
    color: #054045
}

/* filters */
.filters-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap
}

.multi {
    background: var(--pkg-card-bg);
    border-radius: 12px;
    padding: 10px;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 8px 24px rgba(6, 22, 40, 0.04);
    cursor: pointer;
    min-width: 160px;
    position: relative
}

.multi.big {
    min-width: 320px;
    max-width: 420px
}

.multi .title {
    font-size: 12px;
    color: var(--pkg-text-muted);
    font-weight: 800;
    margin-bottom: 6px;
    display: flex;
    gap: 8px;
    align-items: center
}

.multi .value {
    font-weight: 900;
    color: #072033
}

.multi .list {
    position: absolute;
    left: 8px;
    right: 8px;
    top: calc(100% + 10px);
    background: linear-gradient(180deg, #fff, #fbfdff);
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(8, 20, 40, 0.08);
    display: none;
    z-index: 80;
    max-height: 260px;
    overflow: auto;
    border: 1px solid rgba(8, 20, 40, 0.04)
}

.opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 8px;
    font-weight: 700
}

.opt input {
    width: 16px;
    height: 16px
}

.opt:hover {
    background: linear-gradient(90deg, rgba(var(--pkg-primary-rgb), 0.06), rgba(14, 165, 166, 0.03))
}

.selected-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px
}

.chip {
    background: rgba(6, 182, 212, 0.09);
    color: var(--pkg-primary);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    display: inline-flex;
    gap: 8px;
    align-items: center
}

.chip .x {
    cursor: pointer;
    font-weight: 800;
    margin-left: 6px
}

/* footer area with centered search */
.search-footer {
    display: flex;
    justify-content: center;
    margin-top: 14px
}


/* short filters */
.short-filters {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.short-chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(var(--pkg-primary-rgb), 0.09);
    color: var(--pkg-primary);
    font-weight: 800;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    border: 1px solid rgba(var(--pkg-primary-rgb), 0.12)
}

/* results grid */
.results {
    margin-top: 20px
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* always up to 3 columns */
    gap: 18px
}

.card {
    background: var(--pkg-card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(8, 20, 40, 0.03);
    box-shadow: 0 10px 30px rgba(8, 20, 40, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform .14s, box-shadow .14s
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(8, 20, 40, 0.08)
}

.media {
    position: relative;
    height: 220px;
    overflow: hidden
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s
}

.card:hover .media img {
    transform: scale(1.06)
}


.vehicle-amount {
    position: absolute;
    left: 16px;
    top: 64px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 10px;
    font-weight: 600;
    color: #072033;
    box-shadow: 0 8px 20px rgba(8, 20, 40, 0.06);
    z-index: 2
}

.status-pill {
    position: absolute;
    right: 16px;
    top: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    box-shadow: 0 6px 18px rgba(8, 20, 40, 0.04);
    cursor: pointer;
}

.body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.title {
    font-size: 16px;
    font-weight: 900;
    margin: 0
}

.meta {
    color: var(--pkg-text-muted);
    font-weight: 700;
    font-size: 13px
}

.desc {
    color: #214352;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.95
}

.actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.left-actions {
    display: flex;
    gap: 10px;
    align-items: center
}


.small-cta {
    background: #fff;
    border: 1px solid rgba(var(--pkg-primary-rgb), 0.12);
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    color: var(--pkg-primary)
}

.menu {
    position: relative
}

.menu .menu-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--pkg-text-muted)
}

.menu .menu-list {
    position: absolute;
    right: 0;
    top: 44px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(8, 20, 40, 0.08);
    overflow: hidden;
    border: 1px solid rgba(8, 20, 40, 0.04);
    display: none;
    min-width: 220px;
    z-index: 90
}

.menu .menu-list .item {
    padding: 12px 14px;
    font-weight: 800;
    cursor: pointer;
    border-bottom: 1px solid rgba(8, 20, 40, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.menu .menu-list .item:last-child {
    border-bottom: none
}

.menu .menu-list .item:hover {
    background: linear-gradient(90deg, rgba(var(--pkg-primary-rgb), 0.04), rgba(var(--pkg-primary-rgb), 0.02))
}

/* view/download buttons style */
.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    border: none;
    font-weight: 800;
    cursor: pointer
}

.view-btn {
    background: linear-gradient(90deg, #ffffff, #eef6f6);
    border: 1px solid rgba(var(--pkg-primary-rgb), 0.08);
    color: var(--pkg-primary)
}


.action-btn:hover {
    transform: translateY(-4px);
    transition: transform .12s
}

/* vehicle list */
.vehicle-list {
    border-top: 1px dashed rgba(8, 20, 40, 0.04);
    display: flex;
    flex-direction: column;
    gap: 8px
}

.vehicle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(var(--pkg-primary-rgb), 0.02), rgba(14, 165, 166, 0.01))
}

.vehicle-name {
    font-weight: 800
}

.vehicle-price {
    font-weight: 900
}

.vehicle-actions {
    display: flex;
    gap: 8px
}

/* footer */
.footer {
    margin-top: 30px;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    color: var(--pkg-text-muted);
    font-weight: 700
}

/* small screens */
@media (max-width:880px) {
    .media {
        height: 160px
    }

    .filters-row {
        width: 100%;
        display: flex;
        gap: 8px;
        align-items: center;
        overflow-x: auto;
        padding-bottom: 8px
    }

    .multi.big {
        min-width: 220px
    }
}



/*Pagging*/
/* Pagination â€” styled to match the page theme */
.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(248, 254, 255, 0.6));
    border-radius: 12px;
    border: 1px solid rgba(8, 20, 40, 0.03);
    box-shadow: 0 10px 30px rgba(8, 20, 40, 0.03);
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Buttons */
.pagination-btn {
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid rgba(7, 20, 35, 0.04);
    background: linear-gradient(180deg, #fff, #fbfdff);
    font-weight: 900;
    color: #053237;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform .12s, box-shadow .12s, background .12s;
    box-shadow: 0 8px 20px rgba(8, 20, 40, 0.02);
}

/* Hover effect */
.pagination-btn:hover:not(.active):not(:disabled) {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(8, 20, 40, 0.06);
}

/* Active page */

/* Disabled state (e.g., prev/next when not available) */
.pagination-btn:disabled,
.pagination-btn[disabled] {
    opacity: 0.48;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background: linear-gradient(180deg, #fbfdff, #f7fbfb);
    border-color: rgba(7, 20, 35, 0.02);
}

/* Arrow icons inside buttons */
.pagination-btn i {
    font-size: 14px;
}

/* Compact page number buttons for small screens */
@media (max-width:480px) {
    .pagination-btn {
        min-width: 38px;
        height: 38px;
        font-size: 13px;
    }
}

/* Pagination info (Showing X-Y of Z) */
.pagination-info {
    margin-left: 12px;
    color: var(--pkg-text-muted);
    font-weight: 800;
    font-size: 13px;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
}

/* Push info to the right when wide layout desired
   Use `.pagination.right` on container if you want info aligned right */
.pagination.right {
    justify-content: space-between;
}

.pagination.right .pagination-info {
    margin-left: auto;
    margin-right: 0;
}

/* Small visual separator (optional) */
.pagination .sep {
    width: 1px;
    height: 28px;
    background: rgba(7, 20, 35, 0.04);
    border-radius: 2px;
    margin: 0 6px;
}

/* Accessibility focus outline */
.pagination-btn:focus {
    outline: 3px solid rgba(14, 165, 166, 0.14);
    outline-offset: 3px;
    border-radius: 9px;
}

.grid a {
    text-decoration: none;
    color: inherit;
}

/* Package tags â€” mini chips below title or in card footer */
.package-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
}

.package-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(var(--pkg-primary-rgb), 0.08), rgba(14, 165, 166, 0.06));
    border: 1px solid rgba(var(--pkg-primary-rgb), 0.14);
    color: var(--pkg-primary);
    font-weight: 800;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(var(--pkg-primary-rgb), 0.06);
    transition: all .18s ease;
    cursor: default;
    user-select: none;
}


/* Optional: Add emoji or icon inside tag */
.package-tag i {
    margin-right: 6px;
    font-size: 13px;
    opacity: 0.9;
}



/* ---------- Footer Meta & Package Stats ---------- */
/* -------- Refined Package Footer Layout -------- */

.footer-meta {
    margin-top: 14px;
    border-top: 1px dashed rgba(8, 20, 40, 0.06);
    padding-top: 14px;
    color: var(--pkg-text-muted);
    font-size: 13px;
    font-weight: 700;
}

.package-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

/* Left Column (Created Info) */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.created-date,
.created-by {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, rgba(var(--pkg-primary-rgb), 0.04), rgba(14, 165, 166, 0.02));
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 800;
    color: #214352;
    box-shadow: 0 4px 10px rgba(8, 20, 40, 0.03);
    transition: transform .12s ease, box-shadow .12s ease;
}

.created-date i,
.created-by i {
    color: var(--pkg-primary);
    font-size: 13px;
}

.created-date:hover,
.created-by:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(var(--pkg-primary-rgb), 0.12);
}

/* Right Column (Rating + Bookings) */
.right-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.rating-block {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(var(--pkg-primary-rgb), 0.08), rgba(14, 165, 166, 0.04));
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(var(--pkg-primary-rgb), 0.08);
    transition: all .18s ease;
}

.rating-block i.fa-star {
    color: #fbbf24;
    margin-right: 6px;
}

.rating-block:hover {
    /*background: linear-gradient(90deg, var(--pkg-primary), var(--pkg-primary-light));
        color: #fff;*/
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(var(--pkg-primary-rgb), 0.16);
}

.bookings-block {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(180deg, rgba(var(--pkg-primary-rgb), 0.02), rgba(14, 165, 166, 0.02));
    padding: 6px 10px;
    border-radius: 8px;
    color: #58687f;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(8, 20, 40, 0.03);
    text-align: left;
}

.bookings-block i {
    color: #58687f;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .package-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .right-column {
        align-items: flex-start;
    }
}

/*Package details*/

/* ---------- Package Details Page ---------- */
.package-header {
    background: linear-gradient(180deg, #fff, #fbfdff);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 12px 36px rgba(8, 20, 40, 0.04);
    margin-bottom: 18px;
}

.package-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.package-header-main h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    color: #072033;
}

.package-header-main .subtitle {
    margin: 6px 0 0;
    color: var(--pkg-text-muted);
    font-weight: 800;
    font-size: 13px;
}

.package-header-actions .btn-action {
    border: none;
    background: linear-gradient(90deg, var(--pkg-primary), var(--pkg-primary-light));
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(var(--pkg-primary-rgb), 0.12);
}

/* Layout rows */
.row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-top: 14px;
}

.col-lg-7 {
    flex: 0 0 62%;
    max-width: 62%;
}

.col-lg-5 {
    flex: 0 0 38%;
    max-width: 38%;
}

/* Images */
.package-main-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(8, 20, 40, 0.03);
    box-shadow: 0 10px 30px rgba(8, 20, 40, 0.04);
}

.package-main-image img {
    width: 100%;
    display: block;
    height: 420px;
    object-fit: cover;
}

.package-image-gallery {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow: auto;
}

.package-image-gallery .gallery-thumb {
    width: 84px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .12s, border-color .12s;
}

.package-image-gallery .gallery-thumb:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--pkg-primary-rgb), 0.16);
}

/* Fares grid */
.fares-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fare-card {
    background: var(--pkg-card-bg);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 8px 18px rgba(8, 20, 40, 0.04);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fare-top {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.vehicle-name {
    font-weight: 900;
    color: #072033;
    font-size: 15px;
}

.fare-item {
    text-align: right;
}

.fare-value {
    font-weight: 900;
    font-size: 18px;
    color: #072033;
}

.fare-label {
    font-size: 12px;
    color: var(--pkg-text-muted);
    font-weight: 800;
}

/* vehicle-desc */
.vehicle-desc {
    color: #334e54;
    font-size: 13px;
    background: linear-gradient(90deg, rgba(var(--pkg-primary-rgb), 0.02), rgba(14, 165, 166, 0.01));
    padding: 8px;
    border-radius: 8px;
    font-weight: 700;
}

/* Itinerary cards */
.section-title {
    font-size: 16px;
    margin: 12px 0;
    font-weight: 900;
    color: #072033;
}

.itinerary-day.card {
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 8px 20px rgba(8, 20, 40, 0.04);
}

.card__header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
    color: #072033;
}

.itinerary-body {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 8px;
}

.itinerary-body.no-photo .itinerary-desc {
    width: 100%;
}

.itinerary-body.with-photo.photo-left .itinerary-photo {
    order: 0
}

.itinerary-body.with-photo.photo-right .itinerary-photo {
    order: 1
}

.itinerary-photo img {
    width: 240px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(8, 20, 40, 0.04);
}

.itinerary-content {
    flex: 1;
}

.itinerary-desc,
.child-desc {
    color: #214352;
    font-size: 14px;
    line-height: 1.5;
}

.itinerary-children {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.itinerary-child {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(250, 250, 250, 0.6));
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(8, 20, 40, 0.03);
}

.child-header {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 900;
    color: #072033;
}

.child-route {
    color: var(--pkg-text-muted);
    font-weight: 700;
    margin-top: 6px;
}

/* tags */
.tags {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.tags .tag {
    background: linear-gradient(90deg, rgba(var(--pkg-primary-rgb), 0.08), rgba(14, 165, 166, 0.04));
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900;
    color: var(--pkg-primary);
    border: 1px solid rgba(var(--pkg-primary-rgb), 0.12);
}

/* inclusions / exclusions */
.inclusions-exclusions {
    display: flex;
    gap: 18px;
    margin-top: 12px;
}

.inclusions-exclusions h3 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 900;
    color: #072033;
}

.inclusions-exclusions ul {
    margin: 0;
    padding-left: 18px;
    color: #214352;
    font-weight: 700;
}

/* footer meta small spacing */
.package-stats {
    margin-top: 12px;
}

/* slide modal (booking) */
.slide-modal {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 420px;
    max-width: 100%;
    transform: translateX(110%);
    transition: transform .28s cubic-bezier(.22, .9, .3, 1);
    z-index: 1200;
    box-shadow: -20px 30px 80px rgba(8, 20, 40, 0.2);
}

.slide-modal.show {
    transform: translateX(0%);
}

.slide-modal>div {
    background: linear-gradient(180deg, #fff, #fbfdff);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slide-modal-header {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(8, 20, 40, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slide-modal-header h5 {
    margin: 0;
    font-weight: 900;
    color: #072033;
}

.slide-close {
    font-size: 20px;
    cursor: pointer;
    color: var(--pkg-text-muted);
}

.slide-modal-body {
    padding: 14px;
    overflow: auto;
    flex: 1;
    gap: 8px;
    display: flex;
    flex-direction: column;
}

.slide-modal-body label {
    font-weight: 800;
    color: #214352;
    margin-top: 6px;
    font-size: 13px;
}

.slide-modal-body .form-control {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(8, 20, 40, 0.06);
    font-weight: 700;
}

.slide-modal-footer {
    padding: 12px;
    border-top: 1px solid rgba(8, 20, 40, 0.04);
    display: flex;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
}

@media (max-width:980px) {
    .row {
        flex-direction: column;
    }

    .col-lg-7,
    .col-lg-5 {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .package-main-image img {
        height: 320px;
    }

    .slide-modal {
        width: 100%;
    }
}



.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: var(--pkg-primary);
    transition: opacity 0.3s ease;
}

.loading-overlay .spinner i {
    font-size: 3.5rem;
    color: var(--pkg-primary);
    text-shadow: 0 0 20px rgba(var(--pkg-primary-rgb), 0.3);
}

.loading-overlay p {
    margin: 0;
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--pkg-text-main);
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: pkg-pulse 2s infinite ease-in-out;
}

.loading-overlay .spinner i {
    font-size: 1.6rem;
    line-height: 1;
}

.loading-overlay p {
    margin: 0;
    font-weight: 600;
    font-size: 1.04rem;
}





/* =========================
   Single Package â€” Attractive Theme
   (Drop this at the end of your stylesheet)
   ========================= */

.packages-view {
    animation: fadeInUp .28s ease both;
    padding-bottom: 28px;
}

/* Header */
.package-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 252, 0.98));
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 18px 50px rgba(8, 20, 40, 0.06);
    margin-bottom: 18px;
}

.package-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.package-header-main>div {
    min-width: 0;
}

.package-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.3px;
    color: #072033;
}

.package-header .subtitle {
    margin: 6px 0 0;
    color: var(--pkg-text-muted);
    font-weight: 800;
    font-size: 13px;
}

.package-header-actions .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    border: none;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(90deg, var(--pkg-primary), var(--pkg-primary-light));
    box-shadow: 0 12px 30px rgba(var(--pkg-primary-rgb), 0.12);
    cursor: pointer;
    transition: transform .12s, box-shadow .12s;
}

.package-header-actions .btn-action:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(var(--pkg-primary-rgb), 0.16);
}

/* Layout */
.row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.col-lg-7 {
    flex: 0 0 62%;
    max-width: 62%;
}

.col-lg-5 {
    flex: 0 0 38%;
    max-width: 38%;
}

/* Main hero image */
.package-main-image {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 20px 50px rgba(8, 20, 40, 0.06);
}

.package-main-image::after {
    /* subtle vignette */
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 30%, rgba(0, 0, 0, 0.06) 100%);
}

.package-main-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.2, .9, .3, 1);
}

.package-main-image:hover img {
    transform: scale(1.03);
}

/* Gallery thumbs */
.package-image-gallery {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    padding-bottom: 6px;
    overflow: auto;
}

.gallery-thumb {
    width: 96px;
    height: 68px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(8, 20, 40, 0.04);
    transition: transform .12s, border-color .12s, box-shadow .12s;
}

.gallery-thumb:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--pkg-primary-rgb), 0.14);
    box-shadow: 0 16px 40px rgba(8, 20, 40, 0.08);
}

.gallery-thumb.active {
    border-color: var(--pkg-primary);
    box-shadow: 0 18px 50px rgba(var(--pkg-primary-rgb), 0.12);
    transform: translateY(-8px);
}

/* Fares column (sticky on large screens) */
.col-lg-5 {
    align-self: flex-start;
    position: relative;
}

@media (min-width:1100px) {
    .col-lg-5 {
        position: sticky;
        top: 28px;
    }
}

.fares-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
}

.fare-card {
    background: linear-gradient(180deg, #fff, #fbfdff);
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 14px 36px rgba(8, 20, 40, 0.05);
    transition: transform .14s, box-shadow .14s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fare-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(8, 20, 40, 0.08);
}

.fare-top {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.vehicle-name {
    font-weight: 900;
    color: #072033;
    font-size: 16px;
}

.fare-label {
    font-size: 12px;
    color: var(--pkg-text-muted);
    font-weight: 800;
    margin-top: 4px;
}

.fare-item {
    text-align: right;
    min-width: 110px;
}

.fare-value {
    font-weight: 900;
    font-size: 18px;
    color: #072033;
}

.fare-card .btn {
    min-width: 120px;
    border-radius: 10px;
}

/* vehicle-desc */
.vehicle-desc {
    color: #334e54;
    font-size: 13px;
    padding: 8px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(var(--pkg-primary-rgb), 0.02), rgba(14, 165, 166, 0.01));
    font-weight: 700;
}

/* Description / tags / lists */
.description {
    color: #214352;
    font-size: 15px;
    line-height: 1.65;
    margin-top: 12px;
}

.tags {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.tags strong {
    color: #214352;
    margin-right: 8px;
    font-weight: 900;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(var(--pkg-primary-rgb), 0.06), rgba(14, 165, 166, 0.03));
    color: var(--pkg-primary);
    font-weight: 900;
    border: 1px solid rgba(var(--pkg-primary-rgb), 0.08);
    transition: transform .12s, box-shadow .12s;
    cursor: default;
}

.tag:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(var(--pkg-primary-rgb), 0.08);
    color: #fff;
    background: linear-gradient(90deg, var(--pkg-primary), var(--pkg-primary-light));
}

/* inclusions / exclusions */
.inclusions-exclusions {
    display: flex;
    gap: 18px;
    margin-top: 14px;
    align-items: flex-start;
}

.inclusions-exclusions>div {
    flex: 1;
    background: linear-gradient(180deg, #fff, #fbfdff);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(8, 20, 40, 0.03);
    box-shadow: 0 8px 20px rgba(8, 20, 40, 0.04);
}

.inclusions-exclusions h3 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 900;
    color: #072033;
}

.inclusions-exclusions ul {
    margin: 0;
    padding-left: 18px;
    color: #214352;
    font-weight: 700;
}

/* Itinerary — timeline style */
.section-title {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 900;
    color: #072033;
    display: flex;
    align-items: center;
    gap: 8px;
}

.itinerary-day.card {
    position: relative;
    padding: 12px;
    border-radius: 12px;
    margin: 14px 0;
    border: 1px solid rgba(8, 20, 40, 0.04);
    box-shadow: 0 12px 30px rgba(8, 20, 40, 0.04);
    overflow: visible;
}

.itinerary-day.card::before {
    content: "";
    position: absolute;
    left: -28px;
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--pkg-primary), var(--pkg-primary-light));
    box-shadow: 0 8px 20px rgba(var(--pkg-primary-rgb), 0.12);
}

.card__header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
    color: #072033;
}

.itinerary-body {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 10px;
}

.itinerary-photo {
    flex: 0 0 240px;
}

.itinerary-photo img {
    width: 240px;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(8, 20, 40, 0.06);
    transition: transform .18s;
}

.itinerary-body.with-photo.photo-left .itinerary-photo {
    order: 0;
}

.itinerary-body.with-photo.photo-right .itinerary-photo {
    order: 1;
}

.itinerary-body .itinerary-content {
    flex: 1;
}

.itinerary-desc {
    color: #214352;
    font-size: 14px;
    line-height: 1.6;
}

.itinerary-children {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.itinerary-child {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(250, 250, 250, 0.6));
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(8, 20, 40, 0.03);
}

.child-header {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 900;
    color: #072033;
}

.child-route {
    color: var(--pkg-text-muted);
    font-weight: 700;
    margin-top: 6px;
}

.child-desc {
    color: #334e54;
    margin-top: 6px;
}

/* Footer spacing */
.package-stats {
    margin-top: 12px;
}

/* Slide modal (booking) — center & mobile friendly tweak */
.slide-modal {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 420px;
    max-width: 100%;
    transform: translateX(110%);
    transition: transform .28s cubic-bezier(.22, .9, .3, 1);
    z-index: 1200;
    box-shadow: -20px 30px 80px rgba(8, 20, 40, 0.2);
}

.slide-modal.show {
    transform: translateX(0%);
}

.slide-modal>div {
    background: linear-gradient(180deg, #fff, #fbfdff);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(8, 20, 40, 0.04);
}

.slide-modal-header {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(8, 20, 40, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slide-modal-header h5 {
    margin: 0;
    font-weight: 900;
    color: #072033;
}

.slide-close {
    font-size: 22px;
    cursor: pointer;
    color: var(--pkg-text-muted);
    padding: 8px;
    border-radius: 8px;
    transition: background .12s;
}

.slide-close:hover {
    background: rgba(8, 20, 40, 0.03);
}

/* small form styles inside modal */
.slide-modal-body {
    padding: 14px;
    overflow: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slide-modal-body label {
    font-weight: 800;
    color: #214352;
    margin-top: 6px;
    font-size: 13px;
}

.slide-modal-body .form-control {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(8, 20, 40, 0.06);
    font-weight: 700;
}

/* Buttons */
.btn {
    padding: 10px 12px;
    border-radius: 10px;
    border: none;
    font-weight: 900;
    cursor: pointer;
}

.btn--primary {
    background: linear-gradient(90deg, var(--pkg-primary), var(--pkg-primary-light));
    color: #fff;
    box-shadow: 0 12px 30px rgba(var(--pkg-primary-rgb), 0.12);
}

.btn:active {
    transform: translateY(1px);
}

/* Responsive */
@media (max-width: 980px) {
    .row {
        flex-direction: column;
    }

    .col-lg-7,
    .col-lg-5 {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .package-main-image img {
        height: 320px;
    }

    .fares-grid {
        flex-direction: row;
        overflow: auto;
    }

    .fare-card {
        min-width: 260px;
        flex: 0 0 auto;
    }

    .slide-modal {
        width: 100%;
        transform: translateX(110%);
    }
}

/* small animation helpers */
@keyframes fadeInUp {
    from {
        transform: translateY(8px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}



/* Search panel */
.search-panel {
    max-width: 1200px;
    margin: 0 auto 22px;
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #fbfdff);
    box-shadow: var(--shadow);
}

/* Controls row: four items inline then stack on small screens */
.controls-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 220px;
    gap: 12px;
    margin-bottom: 12px;
    align-items: start
}



.multi,
.single {
    background: var(--pkg-card-bg);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(12, 38, 63, 0.04);
    position: relative
}

.multi .title,
.single .title {
    font-size: 12px;
    color: var(--pkg-text-muted);
    margin-bottom: 6px
}

.multi .value {
    font-weight: 700;
    font-size: 14px;
    color: #17293a
}

.list {
    display: none;
    position: absolute;
    left: 10px;
    right: 10px;
    top: 78px;
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: 60;
    max-height: 220px;
    overflow: auto
}

.multi[aria-expanded="true"] .list {
    display: block
}

/* list options */
.opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer
}

.opt:hover {
    background: #f1f5f9
}

.opt input[type="checkbox"] {
    width: 16px;
    height: 16px
}

/* selected chips inside the control */
.selected-chips {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.chip {
    background: #eef6ff;
    border-radius: 18px;
    padding: 6px 10px;
    font-size: 13px
}

.chip .x {
    margin-left: 8px;
    cursor: pointer
}

/* search row */
.search-row {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

@media(max-width:600px) {
    .search-row {
        flex-direction: column
    }
}

.search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px
}

.search-input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e6edf3;
    font-size: 15px;
    box-shadow: none
}

.icon-btn {
    background: transparent;
    border: 0;
    font-size: 20px;
    padding: 6px;
    cursor: pointer;
    color: #7b8794
}

/* selected filters summary (below input on narrow screens) */
.selected-filters-summary {
    margin-top: 6px;
    color: var(--pkg-text-muted);
    font-size: 13px
}

/* Centered search button */
.search-footer {
    text-align: center;
    margin-top: 14px
}

.btn {
    padding: 10px 16px;
    border-radius: 10px;
    border: 0;
    cursor: pointer
}

.btn.search-btn {

    font-weight: 700;
    box-shadow: 0 6px 16px rgba(11, 116, 222, 0.18);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px
}


.inclusions-exclusions ul li {
    padding-top: 5px;
    padding-bottom: 5px;
}



/* Fares grid / booking-box styles */
.fares-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media(min-width:900px) {
    .fares-grid {
        grid-template-columns: 1fr;
    }

    /* keep single column for clarity, change if you want multi-col */
}

.fare-card {
    background: #fff;
    border: 1px solid rgba(20, 20, 20, 0.06);
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(18, 24, 40, 0.03);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fare-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.fare-left {
    flex: 1;
    min-width: 0;
}

.fare-right {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.vehicle-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.vehicle-desc-inline {
    font-size: 0.85rem;
    color: #58687f;
    opacity: .9;
}

.fare-item .fare-value {
    font-weight: 800;
    font-size: 1.05rem;
    text-align: right;
}

.fare-label {
    font-size: 0.8rem;
    color: #7b8a99;
    text-align: right;
}

.fare-actions .btn {
    margin-left: 8px;
}

.booking-box {
    background: linear-gradient(180deg, #fbfdff, #fff);
    border-radius: 8px;
    padding: 12px;
    border: 1px dashed rgba(20, 20, 20, 0.06);
    margin-top: 8px;
    transition: all .18s ease;
}

.booking-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.booking-row input.form-control,
.booking-row select.form-control,
.booking-row textarea.form-control {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #e6e9ee;
    border-radius: 6px;
    font-size: 0.95rem;
}

.notes-row textarea {
    width: 100%;
}

.booking-actions {
    justify-content: flex-end;
    display: flex;
    gap: 8px;
    align-items: center;
}

.booking-status {
    margin-top: 8px;
    font-size: 0.92rem;
    color: #333;
}

/* small responsive */
@media (max-width:600px) {
    .booking-row {
        flex-direction: column;
    }

    .fare-right {
        flex-direction: column;
        align-items: flex-end;
    }
}



/* Success card shown after booking */
.booking-success {
    display: block;
    border-radius: 10px;
    padding: 14px;
    background: linear-gradient(180deg, #f7fffb, #ffffff);
    border: 1px solid rgba(34, 197, 94, 0.12);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.06);
    color: #0b3a2a;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.booking-success .success-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-success .check-icon {
    width: 40px;
    height: 40px;
    color: #16a34a;
}

.booking-success .success-title {
    font-size: 1.02rem;
    font-weight: 800;
}

.booking-success .success-body {
    margin-top: 8px;
}

.booking-success .success-pnr {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #08331f;
}

.booking-success .success-msg {
    font-size: 0.92rem;
    color: #124032;
    margin-bottom: 8px;
}

.booking-success .success-progress {
    width: 100%;
    height: 8px;
    background: rgba(6, 95, 70, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.booking-success .success-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--pkg-success-gradient);
    transition: width 0.1s linear;
}

.booking-success .success-actions {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.booking-success .btn {
    padding: 6px 10px;
    font-size: 0.9rem;
    border-radius: 8px;
}

@media(max-width:880px) {
    .controls-row {
        grid-template-columns: 1fr;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 18px
    }
}

/* --- Centered No Results Card --- */
.no-results-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* ✅ vertical center */
    text-align: center;
    /* ✅ center text */
    gap: 18px;
    width: 100%;
    min-height: 60vh;
    /* ✅ ensures it vertically centers within viewport */
    padding: 24px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f9fbff);
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 8px 24px rgba(8, 20, 40, 0.03);
    animation: fadeInUp .3s ease both;
}

/* SVG illustration */
.nores-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* content area */
.nores-content {
    max-width: 470px;
}

.nores-content h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0b3a66;
}

.nores-content p {
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.5;
}

/* suggestions list */
.nores-suggestions {
    margin: 12px 0;
    padding-left: 0;
    list-style: none;
}

.nores-suggestions li {
    margin-bottom: 6px;
    color: #475569;
    position: relative;
    padding-left: 18px;
}

.nores-suggestions li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
}

/* actions */
.nores-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    /* ✅ center buttons */
    margin-top: 12px;
}

.nores-actions .btn {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}

.nores-actions .btn--outline {
    background: transparent;
    border: 1px solid rgba(7, 89, 133, 0.2);
    color: #0b3a66;
}

.nores-actions .btn--primary {
    background: var(--pkg-primary-gradient);
    color: #fff;
    border: none;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.15);
}

/* footer */
.nores-footer {
    margin-top: 14px;
    color: #64748b;
    font-size: 0.88rem;
}

/* Responsive (mobile friendly) */
@media (max-width: 600px) {
    .no-results-card {
        padding: 20px;
        min-height: 70vh;
    }

    .nores-actions {
        flex-direction: column;
        width: 100%;
    }

    .nores-actions .btn {
        width: 100%;
    }
}

/* subtle fade animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- Skeleton Loader --- */
.pkg-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    width: 100%;
}

.pkg-card.skeleton {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    position: relative;
}

.skeleton-img {
    height: 220px;
    background: #f1f5f9;
}

.skeleton-content {
    padding: 20px;
}

.skeleton-line {
    background: #f1f5f9;
    margin-bottom: 12px;
    border-radius: 6px;
}

.skeleton-line.title { width: 85%; height: 24px; }
.skeleton-line.meta { width: 60%; height: 16px; }
.skeleton-line.desc { width: 100%; height: 40px; }
.skeleton-line.price { width: 40%; height: 32px; margin-top: 10px; }

@keyframes shimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

.skeleton-img, .skeleton-line {
    background: linear-gradient(to right, #f1f5f9 8%, #e2e8f0 18%, #f1f5f9 33%);
    background-size: 800px 104px;
    animation: shimmer 2s infinite linear;
}

/* --- Attractive Empty State --- */
.pkg-empty-state {
    padding: 60px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin: 40px auto;
    max-width: 600px;
    animation: fadeInUp 0.5s ease both;
}

.pkg-empty-icon {
    font-size: 64px;
    background: linear-gradient(135deg, var(--pkg-primary), var(--pkg-primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 10px rgba(var(--pkg-primary-rgb), 0.2));
}

.pkg-empty-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.pkg-empty-text {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.pkg-empty-state-btn {
    padding: 14px 32px !important;
    font-size: 1rem !important;
    border-radius: 12px !important;
    min-width: 200px;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.pkg-empty-state-btn:hover {
    transform: scale(1.05);
}


.pkg-card-header-flex {
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    display: flex;
}

/* === Skeleton Loading Animations === */
.pkg-skeleton {
    background: linear-gradient(90deg, #f0f2f5 25%, #e6e9ef 50%, #f0f2f5 75%);
    background-size: 200% 100%;
    animation: pkg-skeleton-loading 1.5s infinite;
    border-radius: 4px;
    display: inline-block;
}

@keyframes pkg-skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.pkg-skeleton-text { height: 1em; width: 100%; margin-bottom: 0.5rem; }
.pkg-skeleton-title { height: 2.5rem; width: 60%; margin-bottom: 1rem; }
.pkg-skeleton-rect { width: 100%; height: 350px; border-radius: 20px; }
.pkg-skeleton-circle { width: 40px; height: 40px; border-radius: 50%; }

.pkg-skeleton-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}

.pkg-details-skeleton-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    padding: 20px;
    background: #f8fafc;
}

.pkg-skeleton-inline { display: flex; gap: 10px; margin-bottom: 15px; }

@media (max-width: 1024px) {
    .pkg-details-skeleton-grid {
        grid-template-columns: 1fr;
    }
}

/* === Reusable Buttons === */
.pkg-btn-primary {
    background: var(--pkg-primary-gradient);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--pkg-primary-rgb), 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pkg-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--pkg-primary-rgb), 0.4);
}

.pkg-btn-secondary {
    background: #ffffff;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pkg-btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: var(--pkg-primary);
}

/* === Attractive Error State === */
.pkg-error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    text-align: center;
    background: #fff;
    border-radius: 24px;
}

.pkg-error-icon-animated {
    width: 120px;
    height: 120px;
    background: #fef2f2;
    color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.15);
    animation: pkg-bounce 2s infinite ease-in-out;
}

.pkg-error-state h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
}

.pkg-error-state p {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.pkg-error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

@keyframes pkg-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}