

.tour-container {
    display: flex;
    flex-direction: row-reverse; /* Sidebar on right for desktop */
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Sidebar Styles */
.tour-sidebar {
    flex: 1;
    min-width: 320px;
}

.booking-card {
    position: sticky;
    top: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.price-section .old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9em;
}

.current-price {
    margin-top: 5px;
    font-size: 1.5rem;
    font-weight: bold;
}

.per-person {
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--text-light);
}

.booking-filters {
    margin: 20px 0;
}

.filter-item {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 12px;
}

.filter-item select, .filter-item input {
    border: none;
    outline: none;
    width: 100%;
    margin-left: 10px;
    background: transparent;
}

.cta-button {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #005bbd;
}

/* Policies */
.policies {
    margin-top: 20px;
}

.policy-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.check-icon {
    color: var(--success-green);
    font-weight: bold;
}

.policy-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Main Content Styles */
.tour-content-container {
    flex: 2;
}

.detail-section {
    margin-bottom: 30px;
    line-height: 1.6;
}

.detail-section h3 {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Timeline/Itinerary */
.timeline {
    border-left: 2px solid var(--border-color);
    margin-left: 10px;
    padding-left: 20px;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-dot {
    position: absolute;
    left: -27px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

.important-box {
    background-color: #fff9e6;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffcc00;
}

/* Responsive */
@media (max-width: 768px) {
    .tour-container {
        flex-direction: column;
    }
    .tour-sidebar {
        min-width: 100%;
    }
}
/* Feature Grid for Top Badges */
.tour-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 12px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text strong {
    display: block;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 5px 0 0 0;
}

/* Pickup Box Styling */
.pickup-details-box {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #0071eb;
    font-size: 0.95rem;
}

.pickup-details-box ul {
    margin-top: 10px;
    padding-left: 20px;
}

/* Timeline Colors */
.timeline-dot.orange {
    background-color: #ff5a1f; /* Matches the "G" pickup icon in your image */
    transform: scale(1.3);
}

.timeline-content p {
    margin: 4px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}
/* --- WhatsApp Floating Widget Container --- */



/* Container for the whole widget */
/* Container for the whole widget */
/* Container for the whole widget */
.chat-widget-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* The Text Bubble - Always visible */
.chat-text-bubble {
    background: white;
    padding: 10px 18px;
    border-radius: 20px 20px 0px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    max-width: 200px;
}

.chat-text-bubble p {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

/* The Icon Circle with Pulse Animation */
.chat-trigger-icon {
    width: 55px;
    height: 55px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s ease;
    
    /* Apply the pulse animation here */
    animation: icon-pulse 2s infinite;
}

.chat-trigger-icon img {
    width: 32px;
    height: 32px;
}

.chat-trigger-icon:hover {
    transform: scale(1.1);
    animation-play-state: paused; /* Optional: stop pulsing when hovering */
}


/* Define the Pulse Animation */
@keyframes icon-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


