/* Single Tour Package Page Styles - Extracted for Performance */
/* Enhanced package page styles */
.hotel-rating{
    margin: 0 15px 15px;
}

/* Sticky Bottom Price Bar for Mobile - Full width box design */
.sticky-price-bar-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 16px 20px;
    z-index: 999;
    display: none; /* Hidden by default, shown only on mobile */
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    min-height: 70px;
    width: 100%;
    margin: 0;
}

.sticky-price-bar-mobile .price-info-mobile {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.sticky-price-bar-mobile .price-label-mobile {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1;
}

.sticky-price-bar-mobile .main-price-mobile {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sticky-price-bar-mobile .gst-info-mobile {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
    line-height: 1;
}

.sticky-price-bar-mobile .booking-action-mobile {
    margin-left: 24px;
    display: flex;
    align-items: center;
}

.sticky-price-bar-mobile .book-now-btn-mobile {
    background: #007cba;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 20px 40px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    transform: translateZ(0);
    will-change: transform, box-shadow;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* Enhanced button hover effects */
.sticky-price-bar-mobile .book-now-btn-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.sticky-price-bar-mobile .book-now-btn-mobile::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 0;
}

.sticky-price-bar-mobile .book-now-btn-mobile:hover::before {
    left: 100%;
}

.sticky-price-bar-mobile .book-now-btn-mobile:hover::after {
    width: 200px;
    height: 200px;
}

.sticky-price-bar-mobile .book-now-btn-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 124, 186, 0.4);
    background: #005a8b;
}

.sticky-price-bar-mobile .book-now-btn-mobile:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
    transition: all 0.1s ease;
}

.sticky-price-bar-mobile .book-now-btn-mobile:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.3), 0 6px 20px rgba(30, 64, 175, 0.25);
}

.sticky-price-bar-mobile .btn-text-mobile {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.sticky-price-bar-mobile .btn-subtext-mobile {
    display: block;
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

/* Show sticky bar only on mobile devices */
@media (max-width: 768px) {
    .sticky-price-bar-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 80px;
    }
    
    /* Add bottom padding to body to prevent content from being hidden behind sticky bar */
    body {
        padding-bottom: 80px;
    }
}

/* Enhanced mobile responsiveness - full width compact design */
@media (max-width: 480px) {
    .sticky-price-bar-mobile {
        padding: 12px 16px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        min-height: 70px;
        width: 100%;
        margin: 0;
    }
    
    .sticky-price-bar-mobile .main-price-mobile {
        font-size: 24px;
    }
    
    .sticky-price-bar-mobile .book-now-btn-mobile {
        padding: 16px 32px;
        min-width: 160px;
        border-radius: 40px;
    }
    
    .sticky-price-bar-mobile .btn-text-mobile {
        font-size: 16px;
    }
    
    .sticky-price-bar-mobile .btn-subtext-mobile {
        font-size: 12px;
    }
    
    .sticky-price-bar-mobile .price-label-mobile {
        font-size: 9px;
        letter-spacing: 0.5px;
    }
    
    .sticky-price-bar-mobile .gst-info-mobile {
        font-size: 8px;
    }
}

/* Smooth entrance animation for sticky bar */
.sticky-price-bar-mobile {
    animation: slideUpIn 0.5s ease-out;
}

@keyframes slideUpIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced button interactions */
.sticky-price-bar-mobile .book-now-btn-mobile:focus {
    outline: 2px solid rgba(0, 124, 186, 0.5);
    outline-offset: 2px;
}

/* Price text selection */
.sticky-price-bar-mobile .main-price-mobile {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Ensure proper spacing on very small screens */
@media (max-width: 360px) {
    .sticky-price-bar-mobile {
        padding: 10px 14px;
        min-height: 65px;
        width: 100%;
        margin: 0;
    }
    
    .sticky-price-bar-mobile .book-now-btn-mobile {
        min-width: 140px;
        padding: 14px 28px;
        border-radius: 35px;
    }
    
    .sticky-price-bar-mobile .main-price-mobile {
        font-size: 22px;
    }
    
    .sticky-price-bar-mobile .btn-text-mobile {
        font-size: 15px;
    }
    
    .sticky-price-bar-mobile .btn-subtext-mobile {
        font-size: 11px;
    }
    
    .sticky-price-bar-mobile .price-label-mobile {
        font-size: 8px;
        letter-spacing: 0.4px;
    }
    
    .sticky-price-bar-mobile .gst-info-mobile {
        font-size: 7px;
    }
}

/* Additional professional enhancements for box design */
.sticky-price-bar-mobile .book-now-btn-mobile {
    /* Prominent glow effect for blue button */
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
}

.sticky-price-bar-mobile .book-now-btn-mobile:hover {
    /* Enhanced glow effect on hover */
    box-shadow: 0 8px 25px rgba(0, 124, 186, 0.4);
}

/* Box design enhancements - full width modern style */
.sticky-price-bar-mobile {
    /* Clean border for modern box effect */
    border: none;
    border-top: 2px solid #e5e7eb;
    /* Enhanced shadow for floating box effect */
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Price text styling for box design */
.sticky-price-bar-mobile .main-price-mobile {
    color: #111827;
    font-weight: 800;
}

.sticky-price-bar-mobile .price-label-mobile {
    color: #6b7280;
    font-weight: 600;
}

.sticky-price-bar-mobile .gst-info-mobile {
    color: #9ca3af;
    font-weight: 500;
}

/* Enhanced focus states for accessibility */
.sticky-price-bar-mobile .book-now-btn-mobile:focus-visible {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

/* Additional styling for plugin hotels */
.hotelKings .plugin-hotels {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
}

.hotelKings .plugin-hotel {
    min-width: 280px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.hotelKings .plugin-hotel img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.hotelKings .plugin-hotel .hotel-info {
    padding: 15px;
}

.hotelKings .plugin-hotel h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #2c3e50;
}

.hotelKings .plugin-hotel .hotel-location {
    margin: 5px 0 10px 0;
    color: #666;
    font-size: 14px;
}

.hotelKings .plugin-hotel .amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 10px 0;
}

.hotelKings .plugin-hotel .amenities span {
    background: #e8f4f8;
    color: #2c5aa0;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.hotelKings .plugin-hotel .hotel-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.hotelKings .plugin-hotel .hotel-rating i {
    color: #ffa500;
    font-size: 14px;
}

.hotelKings .plugin-hotel .rating-text {
    font-weight: 600;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hotelKings .plugin-hotels {
        gap: 15px;
        padding: 15px 0;
    }
    
    .hotelKings .plugin-hotel {
        min-width: 250px;
    }
}

/* Enhanced Inclusions/Exclusions Section Styles */
.section-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-container h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.section-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.column {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8f4f8;
}

.column:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.column.inclusions {
    border-left: 5px solid #2ecc71;
}

.column.exclusions {
    border-left: 5px solid #e74c3c;
}

.header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f2f6;
}

.header.inclusions .icon {
    background: #2ecc71;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.header.exclusions .icon {
    background: #e74c3c;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
}

.column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f2f6;
    position: relative;
    padding-left: 30px;
    color: #555;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.column li:last-child {
    border-bottom: none;
}

.column li:hover {
    color: #2c3e50;
    padding-left: 35px;
}

.inclusions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #2ecc71;
    font-weight: bold;
    font-size: 16px;
}

.exclusions li::before {
    content: '✗';
    position: absolute;
    left: 0;
    top: 12px;
    color: #e74c3c;
    font-weight: bold;
    font-size: 16px;
}

/* Mobile responsiveness for inclusions/exclusions */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-container {
        margin: 20px auto;
        padding: 25px 15px;
    }
    
    .section-container h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .column {
        padding: 20px;
    }
    
    .header {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .header .icon {
        width: 35px !important;
        height: 35px !important;
        font-size: 16px !important;
    }
    
    .header h3 {
        font-size: 1.3rem;
    }
}

/* Hotel Image Error Handling */
.hotel-card img {
    transition: opacity 0.3s ease;
}

.hotel-card img[src*="fallback"] {
    opacity: 0.8;
    filter: grayscale(20%);
}

/* Hotel Source Indicators */
.hotel-card.manual-hotel {
    border-left: 4px solid #2ecc71;
}

.hotel-card.selected-hotel {
    border-left: 4px solid #3498db;
}

.hotel-card.plugin-hotel {
    border-left: 4px solid #e74c3c;
}

.hotel-card.api-hotel {
    border-left: 4px solid #f39c12;
}

.hotel-source-debug {
    background: rgba(0,0,0,0.1);
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Ensure unified hotels display properly */
.unified-hotels {
    margin-top: 20px;
}

.unified-hotels .hotel-card {
    position: relative;
}

/* Floating WhatsApp Button - Visible on All Devices */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 100px; /* Position above the sticky price bar */
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-btn a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.floating-whatsapp-btn i {
    font-size: 28px;
    color: white;
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-whatsapp-btn {
        bottom: 90px; /* Adjust for mobile sticky bar */
        right: 15px;
        width: 55px;
        height: 55px;
    }
    
    .floating-whatsapp-btn i {
        font-size: 24px;
    }
}

@media (min-width: 769px) {
    .floating-whatsapp-btn {
        bottom: 120px; /* Adjust for desktop */
        right: 30px;
        width: 65px;
        height: 65px;
    }
    
    .floating-whatsapp-btn i {
        font-size: 30px;
    }
}
