/* Package Details Page - Premium Redesign */
/* Modern, Mobile-First, Hostinger-Inspired Design */

/* ============================================
   1. HERO BREADCRUMB
   ============================================ */
.hero-breadcrumb {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb-nav {
    font-size: 0.875rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: var(--gray-600);
    transition: all 0.2s ease;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    color: var(--primary-600);
}

.breadcrumb-separator {
    color: var(--gray-400);
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: var(--primary-600);
    font-weight: 600;
}

/* ============================================
   2. MAIN LAYOUT GRID
   ============================================ */
.package-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    padding: 48px 0 80px;
    align-items: start;
}

/* ============================================
   3. GALLERY SECTION - Premium Look
   ============================================ */
.package-gallery {
    margin-bottom: 32px;
}

.gallery-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-main:hover img {
    transform: scale(1.03);
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.gallery-thumb {
    width: 90px;
    height: 68px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    border: 3px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: var(--primary-500);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   4. PACKAGE HEADER - Premium Typography
   ============================================ */
.package-header {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.package-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.badge {
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sub-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
}

.bg-info {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.bg-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.bg-secondary {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: white;
}

.bg-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.package-title {
    font-size: 2.25rem;
    font-family: var(--font-display);
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.meta-item i {
    color: var(--primary-500);
    font-size: 1.1rem;
}

/* Share Buttons - Modern Style */
.share-actions {
    display: flex;
    gap: 12px;
}

.btn-share {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1.15rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-share:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-share.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.btn-share.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d5bbd 100%);
}

.btn-share.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0c7abf 100%);
}

/* ============================================
   5. TABS - Premium Navigation
   ============================================ */
.package-tabs {
    margin-bottom: 40px;
}

.tab-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 6px;
    margin-bottom: 32px;
    scrollbar-width: none;
    background: #f1f5f9;
    border-radius: 16px;
}

.tab-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 14px 24px;
    border: none;
    background: transparent;
    color: var(--gray-500);
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.tab-btn:hover {
    color: var(--gray-800);
    background: rgba(255, 255, 255, 0.6);
}

.tab-btn.active {
    background: white;
    color: var(--primary-600);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-weight: 700;
}

.tab-pane {
    display: none;
    animation: fadeSlideIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   6. CONTENT MODULES
   ============================================ */
.content-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-700);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.highlight-item i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Itinerary Timeline */
.itinerary-timeline {
    position: relative;
    padding-left: 24px;
}

.timeline-item {
    position: relative;
    padding-left: 36px;
    padding-bottom: 48px;
    border-left: 3px solid #e2e8f0;
}

.timeline-item:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -13px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.timeline-day {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: var(--primary-700);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-content h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--gray-800);
    font-weight: 700;
}

.timeline-meals {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 0.9rem;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 500;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.facility-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.facility-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.facility-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.bg-blue-light {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.bg-orange-light {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    color: #ea580c;
}

.bg-green-light {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #16a34a;
}

.bg-indigo-light {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #4f46e5;
}

.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--gray-600);
    font-size: 0.95rem;
    font-weight: 500;
}

.facility-list li:last-child {
    border-bottom: none;
}

.facility-list li i {
    color: #10b981;
    font-size: 0.85rem;
}

/* Inclusions/Exclusions */
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.inc-column,
.exc-column {
    background: white;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.check-list,
.cross-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li,
.cross-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    color: var(--gray-700);
    font-weight: 500;
    line-height: 1.5;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #10b981;
    font-size: 0.9rem;
}

.cross-list li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #ef4444;
    font-size: 0.9rem;
}

/* ============================================
   7. BOOKING SIDEBAR - HOSTINGER STYLE PREMIUM
   ============================================ */
.package-sidebar-sticky {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.booking-widget {
    background: white;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.widget-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.widget-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }
}

.widget-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.widget-body {
    padding: 32px 28px;
}

/* PREMIUM PRICE DISPLAY - HOSTINGER STYLE */
.widget-price {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    border: 2px solid #e2e8f0;
}

.widget-price .old-amount {
    display: block;
    font-size: 1.25rem;
    text-decoration: line-through;
    color: #94a3b8;
    margin-bottom: 8px;
    font-weight: 500;
}

.widget-price .amount {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.widget-price .per-person {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 600;
}

/* Date Card */
.date-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
}

.date-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-arrow {
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: var(--primary-500);
    font-size: 1rem;
}

/* Seat Stats */
.seat-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.seat-stat {
    text-align: center;
    padding: 16px 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.seat-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.seat-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.seat-lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Buttons */
.d-grid {
    display: grid;
}

.gap-2 {
    gap: 12px;
}

.btn-lg {
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
    color: white;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
    color: white;
}

.btn-secondary {
    background: #f1f5f9;
    color: var(--gray-600);
    border: 2px solid #e2e8f0;
}

/* Contact Quick */
.contact-quick {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 10px;
}

.contact-link:hover {
    color: var(--primary-600);
    background: #f1f5f9;
}

/* Alert Styles */
.alert {
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 16px;
}

.alert-info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ============================================
   8. REVIEWS SECTION
   ============================================ */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.rating-overall {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.reviews-list .review-item {
    padding: 28px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}

.reviews-list .review-item:hover {
    background: #fafbfc;
}

.reviews-list .review-item:last-child {
    border-bottom: none;
}

/* ============================================
   9. MOBILE BOOKING BAR
   ============================================ */
.mobile-booking-bar {
    display: none;
}

/* ============================================
   10. RESPONSIVE STYLES - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .package-layout {
        grid-template-columns: 1fr 360px;
        gap: 36px;
    }

    .widget-price .amount {
        font-size: 2.5rem;
    }
}

/* ============================================
   11. RESPONSIVE STYLES - MOBILE
   ============================================ */
@media (max-width: 992px) {

    /* Prevent horizontal scroll globally on mobile */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .package-layout {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-top: 0;
        padding-bottom: 100px;
        width: 100%;
    }

    .package-sidebar-sticky {
        position: static;
        order: 3;
        padding: 0 16px;
        margin-bottom: 32px;
        width: 100%;
    }

    .booking-widget {
        max-width: 100%;
        border-radius: 24px;
        width: 100%;
    }

    /* Ensure no element exceeds viewport width */
    img,
    video,
    iframe,
    table {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {

    /* Container padding */
    .container {
        padding: 0 16px;
        width: 100%;
    }

    /* Gallery - Edge to Edge */
    .package-gallery {
        margin: 0 -16px 24px;
        width: calc(100% + 32px);
    }

    .gallery-main {
        border-radius: 0;
        aspect-ratio: 16/9;
        /* Better for modern phones than 4/3 */
        margin-bottom: 12px;
        box-shadow: none;
        width: 100%;
    }

    .gallery-thumbs {
        padding: 0 16px;
        gap: 10px;
    }

    .gallery-thumb {
        width: 72px;
        /* Fixed width is fine for thumbs */
        height: 54px;
        border-radius: 10px;
        max-width: none;
        /* override the global max-width 100vw rule for thumbs inside scroll container */
    }

    /* Header */
    .package-header {
        padding: 0 0 24px;
        margin-bottom: 24px;
    }

    .header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .package-title {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    .package-meta {
        flex-direction: column;
        gap: 12px;
        font-size: 0.9rem;
    }

    .share-actions {
        width: 100%;
        justify-content: flex-start;
        padding-top: 16px;
        border-top: 1px solid #f1f5f9;
    }

    .btn-share {
        width: 42px;
        height: 42px;
    }

    /* Sidebar ordering for mobile */
    .package-main {
        display: flex;
        flex-direction: column;
    }

    .package-gallery {
        order: 1;
    }

    .package-header {
        order: 2;
    }

    .package-tabs {
        order: 4;
    }

    .package-sidebar-sticky {
        order: 3;
        margin: 0 0 32px;
        padding: 0;
    }

    .booking-widget {
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

    .widget-header {
        padding: 22px 20px;
    }

    .widget-header h3 {
        font-size: 1.15rem;
    }

    .widget-body {
        padding: 24px 20px;
    }

    /* PREMIUM PRICE - MOBILE */
    .widget-price {
        padding: 20px 16px;
        margin-bottom: 24px;
        border-radius: 16px;
    }

    .widget-price .old-amount {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .widget-price .amount {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }

    .widget-price .per-person {
        font-size: 0.9rem;
    }

    .seat-val {
        font-size: 1.25rem;
    }

    .seat-stat {
        padding: 12px 8px;
    }

    /* Tabs */
    .package-tabs {
        margin-bottom: 32px;
    }

    .tab-nav {
        background: transparent;
        padding: 0;
        gap: 8px;
        margin-bottom: 24px;
    }

    .tab-btn {
        padding: 10px 18px;
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 50px;
        font-size: 0.85rem;
    }

    .tab-btn.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-color: transparent;
    }

    /* Content grids */
    .highlights-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .inc-exc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .facility-card,
    .highlight-item {
        padding: 18px;
        border-radius: 16px;
    }

    .inc-column,
    .exc-column {
        padding: 20px;
        border-radius: 16px;
    }

    /* Reviews */
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .reviews-list .review-item {
        padding: 20px 0;
    }

    /* Mobile Sticky Bar - PREMIUM GLASSMORPHISM */
    .mobile-booking-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 12px 20px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 1000;
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        padding-bottom: max(12px, env(safe-area-inset-bottom));
        animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .mobile-price small {
        display: block;
        font-size: 0.7rem;
        color: var(--gray-500);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
    }

    .mobile-price .price {
        font-size: 1.4rem;
        font-weight: 800;
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.1;
    }

    .mobile-price .price small {
        font-size: 0.8rem;
        -webkit-text-fill-color: var(--gray-500);
        font-weight: 600;
        display: inline;
        text-transform: none;
    }

    .mobile-action {
        display: flex;
        gap: 12px;
    }

    .mobile-action .btn {
        padding: 0;
        height: 48px;
        border-radius: 50px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s;
    }

    .mobile-action .btn:active {
        transform: scale(0.96);
    }

    .mobile-action .btn-primary {
        padding: 0 24px;
        font-size: 1rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .mobile-action .btn-whatsapp {
        width: 48px;
        font-size: 1.6rem;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    }

    body {
        padding-bottom: 100px;
    }
}

/* Very small devices */
@media (max-width: 375px) {
    .package-title {
        font-size: 1.4rem;
    }

    .widget-price .amount {
        font-size: 2.25rem;
    }

    .mobile-price .price {
        font-size: 1.2rem;
    }

    .mobile-action .btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }
}

/* Hide mobile bar on desktop */
@media (min-width: 769px) {
    .mobile-booking-bar {
        display: none;
    }
}

/* ============================================
   12. DATE CARD STYLING
   ============================================ */
.date-card.mb-4 {
    margin-bottom: 20px;
}

.date-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-danger {
    color: #ef4444;
}

.text-info {
    color: #3b82f6;
}

.text-success {
    color: #10b981;
}

.text-warning {
    color: #f59e0b;
}

.text-muted {
    color: var(--gray-500);
}

.text-primary {
    color: var(--primary-600);
}

.text-white {
    color: white;
}

.mb-1 {
    margin-bottom: 4px;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 16px;
}

.mb-4 {
    margin-bottom: 24px;
}

.m-0 {
    margin: 0;
}

.fs-4 {
    font-size: 1.5rem;
}

.fw-bold {
    font-weight: 700;
}

.ms-2 {
    margin-left: 8px;
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.gap-3 {
    gap: 16px;
}

.w-100 {
    width: 100%;
}

.py-5 {
    padding-top: 48px;
    padding-bottom: 48px;
}

.rounded-3 {
    border-radius: 12px;
}

.rounded-circle {
    border-radius: 50%;
}

.bg-light {
    background: #f8fafc;
}

.border-bottom {
    border-bottom: 1px solid #f1f5f9;
}

.text-end {
    text-align: right;
}

.px-4 {
    padding-left: 24px;
    padding-right: 24px;
}

.p-4 {
    padding: 24px;
}

.mt-3 {
    margin-top: 16px;
}