/* General Styling */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #fdfbfb, #ebedee);
    margin: 0;
    padding: 0;
}

.container {
    padding: 20px;
}

.package-title-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.package-title {
    font-family: 'Roboto', sans-serif;
    color: #007bff;
    margin-right: 15px;
}

.package-info-icons {
    display: flex;
    align-items: center;
    font-size: 0.7em;
    color: #808e8e;
}

.package-info-icons i {
    margin-right: 5px;
    margin-left: 5px;
    color: #0b0c0c;
}

/* Image Styling */
.package-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

/* Text content */
h3 {
    color: #333;
    margin-top: 15px;
}

p {
    color: #666;
    line-height: 1.6;
}

/* Sections Styling */
.section {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
}

/* Price Information */
.price-info {
    margin-top: 20px;
    font-size: 1.2em;
}

.original-price {
    text-decoration: line-through;
    color: #999;
}

.discounted-price {
    color: #28a745;
    font-weight: bold;
}


/* Additional enhancements */
.trip-overlay:hover {
    background-color: rgba(0, 123, 255, 0.6); /* Blue overlay on hover */
}

/* Inclusion and Exclusion Sections */
.inclusion-exclusion {
    background-color: #f0f0f0; /* Light gray background */
    border: 1px solid #ddd; /* Subtle border */
    padding: 15px;
    border-radius: 5px;
}

/* Inclusion Section */
.inclusion-exclusion.inclusion {
    background-color: #e8f5e9; /* Light green background */
    border: 1px solid #c8e6c9; /* Subtle green border */
    padding: 15px;
    border-radius: 5px;
}

/* Exclusion Section */
.inclusion-exclusion.exclusion {
    background-color: #ffebee; /* Light red background */
    border: 1px solid #ffcdd2; /* Subtle red border */
    padding: 15px;
    border-radius: 5px;
}

.sticky-pricing-wrap {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.pricing-starting-text {
    margin-right: 5px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.pricing-wrap__strikethrough-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1em;
    margin-right: 10px;
}

.pricing-wrap__current-price {
    color: #28a745;
    font-weight: bold;
    font-size: 1.3em;
}

.pricing-wrap__inventory-name {
    color: #666;
    font-size: 0.9em;
}

.discount-percentage {
    color: #dc3545;
    font-weight: bold;
    margin-top: 10px;
}

.inclusions-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    font-size: 1.5em;
}

.icon-item {
    text-align: center;
}

.icon-item i {
    display: block;
    margin-bottom: 5px;
}

.icon-item span {
    display: block;
    font-size: 0.5em;
}

/* Style for the 'Got a Question?' Section */
.section__getQuestion {
    background-color: #f0f0f0; /* Light gray background */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* subtle shadow */
    margin-top: 30px;
}

.contact-us-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.faq-main-content {
    color: #666;
    line-height: 1.6;
}

.button-container {
    display: flex;
    justify-content: space-between; 
    padding: 10px 10px;
}

.btn {
    font-size: 1.0rem;
    padding: 6px 35px;
}

.call-button {
    background: linear-gradient(to right, #4568dc, #b06ab3); 
    color: white;
}

.callback-button {
    position: relative;
    background: linear-gradient(to right, #fdfbfb, #ebedee);
    color: rgb(22, 45, 92);
    overflow: hidden; /* Hide overflow for pseudo-element */
}

.callback-button:before {
    content: '';
    position: absolute;
    top: -2px; /* Slightly larger than the actual button to cover edges */
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(to right, #4568dc, #b06ab3);
    border-radius: 5px; /* Match button's border-radius */
}

/* Icon styling */
.btn i {
    margin-right: 5px;
}

.section__bookNow {
    background-color: #f0f0f0; 
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.book-now-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.book-now-row {
    align-items: center;
    justify-content: space-between; 
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.book-now-row:last-child {
    border-bottom: none; 
}

.trip-date {
    font-size: 1rem;
    color: #555;
    font-weight: bold;
    margin-bottom: 0;
    padding: 0.5rem 1rem;
}

.book-now-button {
    background: linear-gradient(to right, #4568dc, #b06ab3);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.book-now-link {
    color: white;
}

.book-now-button:hover {
    background-color: #218838;
}

.title-with-underline {
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.title-with-underline:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: orange;
    bottom: 0;
    left: 0;
}

/* Responsive layout adjustments for mobile devices */
@media (max-width: 768px) {
    .book-now-row {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        align-items: start; /* Align items to the start */
    }

    .book-now-row {
        width: 100%; /* Full width for both columns */
        margin-bottom: 10px; /* Spacing between stacked elements */
    }

    .book-now-button {
        width: 100%; /* Full width button */
        margin-top: 10px; /* Space above the button */
    }

    .button-container {
        flex-direction: column; /* Stack buttons vertically */
    }

    .button-container button {
        width: 100%; /* Full width for buttons */
        margin-bottom: 10px; /* Space between buttons */
    }
}

/* Additional Responsive Adjustments */
@media (max-width: 575px) {
    .trip-date {
        font-size: 1rem; /* Smaller font size for trip dates */
        padding: 0.5rem; /* Smaller padding */
        width: 100%;
    }

    .book-now-title,
    .contact-us-title {
        font-size: 1.2rem; /* Smaller font size for titles */
    }

    .faq-main-content {
        font-size: 0.9rem; /* Smaller font size for FAQ content */
    }
}

/* Responsive layout adjustments */
@media (max-width: 768px) {
    .row {
        display: block;
    }

    .col-md-6 {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Pagination Styling */
nav[aria-label="Page navigation"] {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 6px 8px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    color: #007bff;
    text-decoration: none;
    background-color: #fff;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.page-link:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.page-item.disabled .page-link {
    color: #6c757d;
    background-color: #e9ecef;
    border-color: #dee2e6;
    cursor: not-allowed;
}

/* Mobile Pagination (Extra Small Devices) */
@media (max-width: 575px) {
    .pagination {
        gap: 3px;
        margin-top: 15px;
    }

    .page-link {
        min-width: 32px;
        height: 32px;
        padding: 4px 6px;
        font-size: 0.8rem;
    }

    /* Hide page numbers on very small screens, show only First/Prev/Next/Last */
    .page-item:not(.disabled) .page-link:not(.page-link) {
        display: none;
    }

    /* Show numbered pages but make them smaller */
    .page-item .page-link {
        min-width: 30px;
        height: 30px;
        padding: 3px 5px;
    }

    .page-item.active .page-link,
    .page-item .page-link:hover {
        min-width: 32px;
        height: 32px;
    }
}

/* Tablet Pagination Adjustments */
@media (max-width: 768px) and (min-width: 576px) {
    .pagination {
        gap: 4px;
    }

    .page-link {
        min-width: 34px;
        height: 34px;
        padding: 5px 7px;
        font-size: 0.85rem;
    }
}