/* =========================================
   WHAT TO PACK SECTION
   ========================================= */
.pack-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #f8f9fa; /* Matches the soft background in the image */
    padding: 16px 20px;
    border-radius: var(--radius-md);
    height: 100%;
    transition: transform var(--transition-speed) ease;
}

.pack-item:hover {
    transform: translateY(-2px);
}

.pack-icon {
    width: 48px;
    height: 48px;
    background-color: #eaf5f7; /* Very light teal tint */
    color: var(--brand-teal);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pack-text {
    display: flex;
    flex-direction: column;
}

.pack-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.3;
}

.pack-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 3px;
}



/* =========================================
   WHY YOU'LL LOVE THIS TRIP SECTION
   ========================================= */
.love-trip-list {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Slightly reduced gap since the items are shorter */
}

.love-trip-item {
    display: flex;
    align-items: center; /* Centers the single line of text vertically with the icon */
    gap: 16px;
}

.love-trip-icon {
    width: 45px;
    height: 45px;
    background-color: #eaf5f7; 
    color: var(--brand-teal);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.love-trip-content {
    display: flex;
    flex-direction: column;
}

.love-trip-title {
    color: var(--text-main);
    line-height: 2;
    margin-bottom: 0;
}






/* =========================================
   GX NOTICES / CALLOUTS
   ========================================= */

/* 1. Standard Hint Box */
.gx-notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-family: var(--font-body);
    line-height: 1.6;
}

.gx-notice-icon {
    flex-shrink: 0;
    font-size: 1.25rem;
    margin-top: 2px;
}

.gx-notice-content {
    flex-grow: 1;
}

.gx-notice-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gx-notice-text {
    font-size: 0.95rem;
    margin: 0;
}

/* Hint Variation (Soft Teal) */
.gx-notice-hint {
    background-color: #08d2f912;
    border: 1px solid rgba(0, 130, 155, 0.15); /* Soft teal border */
}

.gx-notice-hint .gx-notice-icon,
.gx-notice-hint .gx-notice-title {
    color: var(--brand-teal);
}

.gx-notice-hint .gx-notice-text {
    color: var(--brand-dark-blue);
}


/* 2. Grouped Info List (For Rules/Pricing) */
.gx-info-group {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gx-info-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-color);
}

.cta-banner .cta-icon-circle{
    display: none;
}

.gx-info-list-item:last-child {
    border-bottom: none;
}

.gx-info-list-item i {
    color: var(--text-muted);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.gx-info-list-item strong {
    color: var(--text-main);
    font-weight: 600;
}


/* =========================================
   STICKY BOOKING WIDGET (Top Section)
   ========================================= */

/* 1. Highlighted Pricing Box */
.booking-price-box {
    background-color: #eaf5f7; /* Very light teal matching the image */
    border: 1px solid #cce5e9; /* Soft teal border */
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
}

.booking-price-box .price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.booking-price-box .price-amount-wrapper {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.booking-price-box .amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-teal); /* Highlights price in your brand teal */
    line-height: 1;
}

.booking-price-box .unit {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* 2. Trust Badges Grid */
.why-book-heading {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.why-book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-book-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* The squarish icon wrapper */
.why-book-icon {
    width: 32px;
    height: 32px;
    background-color: #eaf5f7;
    color: var(--brand-teal);
    border-radius: 8px; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.why-book-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.why-book-text .title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
}

.why-book-text .subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 3px;
}

/* =========================================
   HOW BOOKING WORKS PROCESS FLOW
   ========================================= */
.hw-booking-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    text-align: center;
    padding: 10px 0;
}

.hw-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hw-step-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: transform var(--transition-speed) ease;
}

.hw-step:hover .hw-step-icon {
    transform: translateY(-4px);
}

.hw-step-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-dark-blue);
    line-height: 1.4;
    margin: 0;
    max-width: 180px; /* Keeps the text neatly wrapped under the icon */
}

.hw-step-divider {
    color: #cbd5e1; /* Soft gray-blue */
    font-size: 1.2rem;
    margin-top: 22px; /* Vertically aligns the arrow with the center of the icons */
}

/* Responsive Stacking for Mobile */
/* =========================================
   RESPONSIVE STACKING FOR MOBILE (Timeline View)
   ========================================= */
@media (max-width: 767px) {
    [gx="fixed-whatsapp-btn"], #launcher{
        display: none !important;
    }
    .hw-booking-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 10px 10px 10px 0; /* Tighten padding */
        position: relative;
    }

    /* The Vertical Connecting Line */
    .hw-booking-steps::before {
        content: '';
        position: absolute;
        left: 24px; /* Centers exactly behind the 50px icons */
        top: 25px;
        bottom: 30px;
        width: 2px;
        background-color: #cbd5e1; /* Soft gray-blue line */
        z-index: 0;
    }

    .hw-step {
        flex-direction: row; /* Icon left, text right */
        align-items: center;
        text-align: left;
        position: relative;
        z-index: 1; /* Keeps icons above the connecting line */
    }

    .hw-step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
        margin-right: 18px;
        font-size: 1.2rem;
        flex-shrink: 0;
        /* Adds a white border so the line doesn't peek through transparent/soft backgrounds */
        border: 3px solid var(--bg-white, #ffffff); 
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .hw-step-title {
        max-width: 100%;
        font-size: 0.95rem;
    }

    /* Hide the standalone arrows on mobile */
    .hw-step-divider {
        display: none; 
    }
}

    .sidebar-card {
        background: var(--bg-white);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        padding: 1.75rem;
        border: 1px solid var(--border-color);
    }

    .sidebar-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: var(--brand-dark-blue);
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .sidebar-card p {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    /* Contact CTA Actions */
    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .email-link, .whatsapp-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.88rem;
        padding: 0.8rem 1rem;
        border-radius: var(--radius-md);
        transition: var(--transition);
        text-align: center;
    }

    .email-link {
        background: var(--bg-main);
        color: var(--brand-dark-blue);
        border: 1px solid var(--border-color);
    }

    .email-link:hover {
        background: var(--brand-dark-blue);
        color: #fff;
    }

    .whatsapp-link {
        background: #088bae;
        color: #fff;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
        transition: 0.4s;
    }

    .whatsapp-link:hover {
        background: #088bae;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 10px #92a8b0;
    }
    
    
/* =========================================
   MOBILE STICKY CTA BAR
   ========================================= */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white, #ffffff);
    padding: 12px 20px;
    border-top: 1px solid var(--border-color, #e9ecef);
    z-index: 1040;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08) !important; 
}

@keyframes slideUpCTA {
    to {
        transform: translateY(0);
    }
}

/* Ensure body has padding so content doesn't hide behind the sticky bar */
@media (max-width: 991px) {
    body {
        padding-bottom: 80px; /* Approximate height of the sticky bar */
    }
}

/* style whishList */
 .what-pack-mobile {
        width: auto !important;
    }

    .wishlist-btns:hover,
    .wishlist-btns.active {
        background: #fff;
        color: #e53935;
        transform: scale(1.1);
    }



    .wishlist-toast {
        position: fixed;
        top: 30px;
        right: 30px;
        z-index: 999999;
        background: #fff;
        color: #222;
        border-radius: 12px;
        padding: 14px 18px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
        border-left: 4px solid var(--brand-teal);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);

        transition: all .3s ease;
    }

    .wishlist-toast.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .wishlist-toast i {
        color: #ff4d6d;
        font-size: 18px;
    }

    @media(max-width:768px) {
        .wishlist-toast {
            left: 15px;
            right: 15px;
            top: 15px;
        }
    }

    [gx-section="tour-overview"] .overview-box {
        background: var(--bg-white);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        padding: 25px;
        margin-bottom: 25px;
    }

    [gx-section="tour-overview"] .meta-bar {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    [gx-section="tour-overview"] .meta-col {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    [gx-section="tour-overview"] .meta-col i {
        font-size: 1.5rem;
        color: var(--brand-teal);
        background: var(--brand-teal-light);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    [gx-section="tour-overview"] .meta-col .text {
        display: flex;
        flex-direction: column;
    }

    [gx-section="tour-overview"] .label {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--text-muted);
    }

    [gx-section="tour-overview"] .value {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-main);
    }

    [gx-section="tour-overview"] .rich-text {
        line-height: 1.8;
        color: var(--text-main);
        font-size: 1.05rem;
    }

    @media (max-width: 767px) {
        [gx-section="tour-overview"] .meta-bar {
            display: flex;
            grid-template-columns: 1fr 1fr;
        }


        [gx-section="tour-overview"] .meta-bar {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            gap: 15px;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 10px;
        }

        [gx-section="tour-overview"] .meta-bar::-webkit-scrollbar {
            display: none;
        }

        [gx-section="tour-overview"] .meta-col {
            flex: 0 0 auto;
            min-width: 220px;
        }
    }


    /* =========================================
   INCLUSION/EXCLUSION STYLING
   ========================================= */
    .inclusion-header,
    .exclusion-header {
        font-weight: 700;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
    }

    .inclusion-exclusion-wrapper {
        background: var(--bg-light);
        padding: 30px;
        border-radius: var(--radius-md);
    }

    .text-success {
        color: var(--color-trustpilot) !important;
    }

    .text-danger {
        color: var(--color-destination) !important;
    }
    
    .input-icon {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        pointer-events: none;
        z-index: 1;
    }