/* ===================================
   SEARCH FILTER STYLES
   =================================== */
.tbs-search-filter {
    background: #ffffff !important;
    padding: 15px 20px !important;
    border-radius: 15px !important;
    border: 1px solid #D9D9D9 !important;
    box-shadow: 0px 4px 8.1px 0px rgba(0, 0, 0, 0.25) !important;
    margin-bottom: 30px !important;
}

.tbs-filter-row {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.tbs-filter-item {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    position: relative !important;
}

.tbs-filter-item:not(.tbs-filter-button)::after {
    content: '' !important;
    position: absolute !important;
    right: -10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 1px !important;
    height: 40px !important;
    background: #E5E7EB !important;
}

.tbs-filter-item:last-of-type:not(.tbs-filter-button)::after {
    display: none !important;
}

.tbs-filter-item.tbs-filter-button {
    flex: 0 0 auto !important;
}

.tbs-filter-icon {
    width: 40px !important;
    height: 40px !important;
    background: #EFF6FF !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.tbs-filter-icon svg {
    width: 20px !important;
    height: 20px !important;
    color: #2563EB !important;
}

.tbs-filter-select-wrapper {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.tbs-filter-label {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #6B7280 !important;
    margin: 0 !important;
}

.tbs-filter-select {
    width: 100% !important;
    padding: 0 !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #111827 !important;
    background: transparent !important;
    cursor: pointer !important;
    appearance: none !important;
    outline: none !important;
}

.tbs-filter-select:focus {
    outline: none !important;
}

.tbs-search-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    background-color: #1A43C8 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    min-width: 120px !important;
}

.tbs-search-btn:hover {
    background-color: #1D4ED8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important; 
}

.tbs-search-btn svg {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tbs-search-filter {
        padding: 20px !important;
        border-radius: 16px !important;
    }

    .tbs-filter-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
    }

    .tbs-filter-item {
        padding: 15px 0 !important;
        border-bottom: 1px solid #E5E7EB !important;
    }

    .tbs-filter-item:not(.tbs-filter-button)::after {
        display: none !important;
    }

    .tbs-filter-item:last-of-type:not(.tbs-filter-button) {
        border-bottom: none !important;
    }

    .tbs-filter-item.tbs-filter-button {
        padding-top: 20px !important;
        border-bottom: none !important;
    }

    .tbs-search-btn {
        width: 100% !important;
        padding: 16px !important;
        border-radius: 12px !important;
    }
}

@media (max-width: 480px) {
    .tbs-search-filter {
        padding: 15px !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tbs-filter-row {
        flex-direction: column !important;
    }

    .tbs-filter-item {
        width: 100% !important;
        min-width: 100% !important;
    }

    .tbs-filter-item.tbs-filter-button {
        width: 100% !important;
    }

    .tbs-search-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ===================================
   CUSTOM DROPDOWN STYLES
   =================================== */

/* Custom Select Container */
.tbs-custom-select {
    position: relative !important;
    width: 100% !important;
    user-select: none !important;
}

/* Select Trigger (The clickable part) */
.tbs-select-trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    cursor: pointer !important;
    gap: 8px !important;
}

.tbs-select-value {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #111827 !important;
    flex: 1 !important;
}

.tbs-select-arrow {
    width: 12px !important;
    height: 8px !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s ease !important;
    stroke: #6B7280 !important;
}

.tbs-custom-select.active .tbs-select-arrow {
    transform: rotate(180deg) !important;
}

/* Dropdown Container */
.tbs-select-dropdown {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    width: auto !important;
    min-width: 280px !important;
    background: #FFFFFF !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
    max-height: 400px !important;
    overflow: hidden !important;
}

.tbs-custom-select.active .tbs-select-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Dropdown Header */
.tbs-dropdown-header {
    padding: 20px 20px 15px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #111827 !important;
    border-bottom: 1px solid #E5E7EB !important;
}

/* Location Dropdown List */
.tbs-dropdown-list {
    max-height: 320px !important;
    overflow-y: auto !important;
    padding: 8px 0 !important;
}

.tbs-dropdown-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 20px !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
}

.tbs-dropdown-item:hover {
    background: #F3F4F6 !important;
}

.tbs-dropdown-item span {
    font-size: 16px !important;
    color: #111827 !important;
    font-weight: 500 !important;
}

.tbs-dropdown-item.selected {
    background: #EFF6FF !important;
}

.tbs-dropdown-item.selected span {
    font-weight: 600 !important;
}

.tbs-check-icon {
    opacity: 0 !important;
    transition: opacity 0.2s ease !important;
    color: #2563EB !important;
}

.tbs-dropdown-item.selected .tbs-check-icon {
    opacity: 1 !important;
}

/* Month Grid Dropdown */
.tbs-month-grid-dropdown {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    padding: 15px !important;
}

.tbs-month-item {
    padding: 14px 16px !important;
    background: #F3F4F6 !important;
    border-radius: 8px !important;
    text-align: center !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #111827 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.tbs-month-item:hover {
    background: #E5E7EB !important;
}

.tbs-month-item.selected {
    background: #2563EB !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
}

/* Scrollbar Styling */
.tbs-dropdown-list::-webkit-scrollbar {
    width: 6px !important;
}

.tbs-dropdown-list::-webkit-scrollbar-track {
    background: #F3F4F6 !important;
}

.tbs-dropdown-list::-webkit-scrollbar-thumb {
    background: #D1D5DB !important;
    border-radius: 3px !important;
}

.tbs-dropdown-list::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF !important;
}

/* Select Actions Container */
.tbs-select-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* Clear Icon */
.tbs-clear-icon {
    width: 16px !important;
    height: 16px !important;
    cursor: pointer !important;
    color: #6B7280 !important;
    transition: all 0.2s ease !important;
    padding: 2px !important;
    border-radius: 4px !important;
}

.tbs-clear-icon:hover {
    color: #EF4444 !important;
    background: #FEE2E2 !important;
}

/* "All Months" Clear Option */
.tbs-month-clear {
    background: #FFFFFF !important;
    border: 2px solid #E5E7EB !important;
    color: #6B7280 !important;
    font-weight: 500 !important;
}

.tbs-month-clear:hover {
    background: #F3F4F6 !important;
    border-color: #D1D5DB !important;
}

.tbs-month-clear.selected {
    background: #FFFFFF !important;
    border-color: #2563EB !important;
    color: #2563EB !important;
}

/* Update month grid to accommodate the clear option */
.tbs-month-grid-dropdown {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    padding: 15px !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tbs-select-dropdown {
        position: fixed !important;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        min-width: 100% !important;
        border-radius: 16px 16px 0 0 !important;
        max-height: 70vh !important;
        transform: translateY(100%) !important;
    }

    .tbs-custom-select.active .tbs-select-dropdown {
        transform: translateY(0) !important;
    }

    .tbs-month-grid-dropdown {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        padding: 12px !important;
    }

    .tbs-month-item {
        padding: 12px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .tbs-month-grid-dropdown {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ===================================
   MONTH SELECTOR STYLES
   =================================== */
.tbs-month-selector-wrapper {
    background: #ffffff !important;
    padding: 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    margin-bottom: 30px !important;
}

.tbs-month-selector-title {
    font-size: 24px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    color: #111827 !important;
}

.tbs-month-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
    gap: 15px !important;
}

.tbs-month-btn {
    padding: 15px 20px !important;
    background-color: #F3F4F6 !important;
    color: #111827 !important;
    border: 2px solid transparent !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
}

.tbs-month-btn:hover {
    background-color: #E5E7EB !important;
    transform: translateY(-2px) !important;
}

.tbs-month-btn.active {
    background-color: #2563EB !important;
    color: #ffffff !important;
    border-color: #2563EB !important;
}

@media (max-width: 768px) {
    .tbs-month-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .tbs-month-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===================================
   PACKAGE/DESTINATION GRID STYLES
   =================================== */
.tbs-packages-grid-wrapper {
    width: 100% !important;
}

.tbs-packages-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
}

.tbs-package-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important; */
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    /* ADD THESE LINES */
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.tbs-package-card:hover {
    transform: translateY(-5px) !important;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important; */
}

.tbs-package-image {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    /* ADD THIS LINE */
    flex-shrink: 0 !important;
}

.tbs-package-image img {
    width: 100% !important;
    object-fit: cover !important;
    height: 250px !important;
    /* REDUCED from 300px for better proportions */
    transition: transform 0.3s ease !important;
}

.tbs-package-card:hover .tbs-package-image img {
    transform: scale(1.05) !important;
}

.tbs-package-content {
    padding: 20px 15px !important;
    /* INCREASED padding */
    /* ADD THESE LINES */
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.tbs-package-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
    /* ADD THIS LINE */
    flex-shrink: 0 !important;
}

.tbs-package-title {
    font-size: 16px !important;
    /* INCREASED from 16px */
    font-weight: 600 !important;
    /* INCREASED from 500 */
    color: #111827 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    flex: 1 !important;
    /* KEEP THESE LINES */
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.tbs-package-rating {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    flex-shrink: 0 !important;
    background: #ffffff !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
}

/* ===================================
   RATING STAR ICON STYLES (SVG)
   =================================== */
.tbs-star {
    width: 16px !important;
    height: 16px !important;
    color: #F59E0B !important;
    fill: #F59E0B !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.tbs-package-rating {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    flex-shrink: 0 !important;
    background: #ffffff !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
}

.tbs-package-rating-large {
    background: #ffffff !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.tbs-package-rating-large .tbs-star {
    width: 18px !important;
    height: 18px !important;
    color: #F59E0B !important;
    fill: #F59E0B !important;
}

.tbs-rating-value {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #111827 !important;
    line-height: 1 !important;
}

.tbs-package-description {
    font-size: 14px !important;
    color: #393a3b !important;
    line-height: 1.6 !important;
    margin: 0 0 20px 0 !important;
    /* ADD THESE LINES FOR 2-LINE LIMIT */
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    min-height: 44px !important;
    /* 2 lines * line-height (1.6) * font-size (14px) = ~44px */
    flex-shrink: 0 !important;
}

.tbs-book-btn {
    width: 50% !important;
    padding: 12px 20px !important;
    /* INCREASED padding */
    background-color: #1A43C8 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    /* INCREASED from 5px */
    font-size: 15px !important;
    font-weight: 600 !important;
    /* INCREASED from 500 */
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    /* ADD THIS LINE */
    margin-top: auto !important;
    /* Push button to bottom */
}

.tbs-book-btn:hover {
    background-color: #1D4ED8 !important;
    transform: translateY(-2px) !important;
}

.tbs-no-results {
    grid-column: 1 / -1 !important;
    text-align: center !important;
    padding: 60px 20px !important;
    color: #6B7280 !important;
    font-size: 18px !important;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .tbs-packages-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .tbs-packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .tbs-package-content {
        padding: 15px 12px !important;
    }

    .tbs-package-title {
        font-size: 16px !important;
    }

    .tbs-package-description {
        font-size: 13px !important;
        min-height: 41px !important;
        /* Adjusted for smaller font */
    }
}

@media (max-width: 480px) {
    .tbs-packages-grid {
        grid-template-columns: 1fr !important;
    }


    .tbs-book-btn {
        width: 100% !important;
        padding: 14px 20px !important;
    }

    .tbs-package-image img {
        width: 100% !important;
        object-fit: cover !important;
        height: 300px !important;
        transition: transform 0.3s ease !important;
    }
}

/* ===================================
   POPUP/MODAL STYLES
   =================================== */
.tbs-popup-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    /* ADD THIS */
}

.tbs-popup-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.tbs-popup {
    background: #ffffff !important;
    border-radius: 16px !important;
    max-width: 950px !important;
    width: 100% !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    position: relative !important;
    transform: scale(0.9) !important;
    transition: transform 0.3s ease !important;
}

.tbs-popup-overlay.active .tbs-popup {
    transform: scale(1) !important;
}

.tbs-popup-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    width: 40px !important;
    height: 40px !important;
    background: #F3F4F6 !important;
    color: #6B7280 !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    padding: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
}

.tbs-popup-close:hover {
    background: #E5E7EB !important;
    transform: rotate(90deg) !important;
}

.tbs-popup-close svg {
    width: 24px !important;
    height: 24px !important;
}

/* Package Details Popup */
.tbs-package-details {
    display: flex !important;
    padding: 0 !important;
}

.tbs-package-details-image {
    flex: 0 0 45% !important;
    max-height: auto !important;
    overflow: hidden !important;
}

.tbs-package-details-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.tbs-package-details-content {
    flex: 1 !important;
    padding: 40px !important;
}

.tbs-package-details-title {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #111827 !important;
    margin: 20px 0 10px 0 !important;
}

.tbs-package-details-subtitle {
    font-size: 16px !important;
    color: #6B7280 !important;
    margin: 0 0 20px 0 !important;
}

.tbs-package-details-info {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #E5E7EB !important;
    flex-wrap: wrap !important;
}

.tbs-package-location,
.tbs-package-rating-large {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.tbs-package-location svg,
.tbs-package-rating-large svg {
    width: 15px !important;
    height: 15px !important;
    color: #2563EB !important;
    flex-shrink: 0 !important;
}

.tbs-package-location span {
    font-size: 15px !important;
    /* ADD THIS LINE */
    font-weight: 500 !important;
    /* ADD THIS LINE */
    color: #374151 !important;
    /* ADD THIS LINE */
    white-space: nowrap !important;
    /* ADD THIS LINE */
}

.tbs-package-rating-large {
    background: #ffffff !important;
    padding: 4px 8px !important;
    border-radius: 8px !important;
}

.tbs-package-rating-large .tbs-star {
    font-size: 18px !important;
}

.tbs-package-whats-included {
    margin-bottom: 30px !important;
}

.tbs-package-whats-included h3 {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #111827 !important;
    margin: 0 0 15px 0 !important;
}

.tbs-package-whats-included ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.tbs-package-whats-included li {
    padding: 10px 0 !important;
    padding-left: 30px !important;
    position: relative !important;
    color: #374151 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.tbs-package-whats-included li:before {
    content: "☑" !important;
    position: absolute !important;
    left: 0 !important;
    color: #2563EB !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

.tbs-package-phone {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 15px !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
}

.tbs-package-phone svg {
    width: 20px !important;
    height: 20px !important;
    color: #000000 !important;
}

.tbs-package-phone-label {
    font-size: 15px !important;
    color: #717171 !important;
}

.tbs-package-phone-number {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #1A43C8  !important;
    text-decoration: none !important;
}

.tbs-book-trip-btn {
    width: 50% !important;
    padding: 12px 25px !important;
    background-color: #1A43C8  !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

.tbs-book-trip-btn:hover {
    background-color: #1A43C8  !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
}

@media (max-width: 768px) {
    .tbs-popup-overlay {
        padding: 10px !important;
        align-items: flex-start !important;
        /* ADD THIS */
        overflow-y: auto !important;
        /* ADD THIS */
    }

    .tbs-popup {
        width: 100% !important;
        max-width: 100% !important;
        margin: 20px 0 !important;
        /* ADD THIS */
        border-radius: 12px !important;
        transform: scale(1) !important;
        /* CHANGE from 0.9 */
    }

    .tbs-popup-overlay.active .tbs-popup {
        transform: scale(1) !important;
        /* CHANGE from scale(1) in active state */
    }

    .tbs-package-details {
        flex-direction: column !important;
    }

    .tbs-package-details-image {
        flex: 0 0 auto !important;
        max-height: 250px !important;
        width: 100% !important;
        /* ADD THIS */
    }

    .tbs-package-details-image img {
        width: 100% !important;
        /* ADD THIS */
        height: 100% !important;
        /* ADD THIS */
        object-fit: cover !important;
        /* ADD THIS */
    }

    .tbs-package-details-content {
        padding: 20px 15px !important;
        /* REDUCE padding */
        width: 100% !important;
        /* ADD THIS */
        box-sizing: border-box !important;
        /* ADD THIS */
    }

    .tbs-package-details-title {
        font-size: 18px !important;
        /* REDUCE from 24px */
        word-wrap: break-word !important;
        /* ADD THIS */
    }

    .tbs-package-details-subtitle {
        font-size: 14px !important;
        /* ADD THIS */
    }

    .tbs-package-details-info {
        flex-wrap: wrap !important;
        gap: 10px !important;
        /* REDUCE from 20px */
    }

    .tbs-package-whats-included ul {
        padding-left: 25px !important;
        /* REDUCE padding */
    }

    .tbs-package-whats-included li {
        padding: 8px 0 !important;
        /* REDUCE padding */
        padding-left: 25px !important;
        /* REDUCE from 30px */
        font-size: 14px !important;
        /* ADD THIS */
    }

    .tbs-book-trip-btn {
        width: 100% !important;
        /* ADD THIS */
        padding: 14px 20px !important;
        /* ADD THIS */
    }
}

/* ADD THIS NEW MEDIA QUERY FOR VERY SMALL SCREENS */
@media (max-width: 480px) {
    .tbs-popup-overlay {
        padding: 0px !important;
    }

    .tbs-popup {
        border-radius: 18px !important;
        margin: 10px 0 !important;
    }

    .tbs-package-details-content {
        padding: 15px 12px !important;
    }

    .tbs-package-details-title {
        font-size: 18px !important;
    }

    .tbs-popup-close {
        width: 36px !important;
        height: 36px !important;
        top: 10px !important;
        right: 10px !important;
    }
}

/* ===================================
   BOOKING FORM STYLES
   =================================== */
.tbs-booking-form-wrapper {
    width: 100% !important;
}

.tbs-booking-form {
    background: #ffffff !important;
    padding: 40px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.tbs-form-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin: 0 0 10px 0 !important;
}

.tbs-form-description {
    font-size: 16px !important;
    color: #6B7280 !important;
    margin: 0 0 30px 0 !important;
}

.tbs-form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
    /* Make sure this is here */
}

.tbs-form-field {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    /* ADD THIS LINE - space between label and input */
}

.tbs-form-field label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 0 !important;
    /* CHANGE from 8px to 0 since we have gap above */
}

.tbs-form-input,
.tbs-form-select,
.tbs-form-textarea {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #D1D5DB !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    background-color: #F9FAFB !important;
    color: #111827 !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
    /* ADD THIS LINE */
}

.tbs-form-input:focus,
.tbs-form-select:focus,
.tbs-form-textarea:focus {
    outline: none !important;
    border-color: #2563EB !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}

.tbs-form-textarea {
    resize: vertical !important;
    min-height: 45px !important;
}

.tbs-form-select {
    cursor: pointer !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    padding-right: 40px !important;
}

.tbs-submit-btn {
    width: 50% !important;
    padding: 16px 30px !important;
    background-color: #1A43C8  !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 10px !important;
}

.tbs-submit-btn:hover {
    background-color: #1A43C8  !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
}

.tbs-submit-btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.tbs-form-message {
    margin-top: 20px !important;
    padding: 15px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

.tbs-form-message.success {
    background-color: #D1FAE5 !important;
    color: #065F46 !important;
    border: 1px solid #10B981 !important;
}

.tbs-form-message.error {
    background-color: #FEE2E2 !important;
    color: #991B1B !important;
    border: 1px solid #EF4444 !important;
}

@media (max-width: 768px) {
    .tbs-booking-form {
        padding: 20px 15px !important;
    }

    .tbs-form-row {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .tbs-form-title {
        font-size: 16px !important;
    }

    .tbs-form-description {
        font-size: 14px !important;
    }
}

/* ===================================
   NEW SUCCESS POPUP STYLES
   =================================== */
.tbs-success-popup-new {
    text-align: center !important;
    padding: 40px 10px !important;
    max-width: 750px !important;
    margin: 0 auto !important;
}

.tbs-success-airplane {
    width: 100% !important;
    max-width: 500px !important;
    height: 200px !important;
    margin: 0 auto 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.tbs-success-airplane img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}

.tbs-success-title-new {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #1F2937 !important;
    margin: 0 0 15px 0 !important;
}

.tbs-success-message-new {
    font-size: 16px !important;
    color: #6B7280 !important;
    line-height: 1.6 !important;
    margin: 0 0 40px 0 !important;
}

.tbs-success-message-new strong {
    color: #1F2937 !important;
    font-weight: 600 !important;
}

.tbs-success-info-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
    padding: 0 10px !important;
}

.tbs-success-info-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    text-align: left !important;
}

.tbs-info-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    background: #DBEAFE !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 2px !important;
}

.tbs-info-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.tbs-info-icon svg {
    width: 24px !important;
    height: 24px !important;
    color: #2563EB !important;
}

.tbs-info-label {
    font-size: 14px !important;
    color: #6B7280 !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
}

.tbs-info-value {
    font-size: 15px !important;
    color: #000000 !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

.tbs-explore-more-btn {
    width: 100% !important;
    padding: 16px 30px !important;
    background: #2563EB !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

.tbs-explore-more-btn:hover {
    background: #1D4ED8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
}

.tbs-explore-more-btn svg {
    flex-shrink: 0 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tbs-success-popup-new {
        padding: 30px 20px !important;
    }

    .tbs-success-airplane {
        height: 150px !important;
        margin-bottom: 20px !important;
    }

    .tbs-success-title-new {
        font-size: 24px !important;
    }

    .tbs-success-message-new {
        font-size: 14px !important;
        margin-bottom: 30px !important;
    }

    .tbs-success-info-grid {
        gap: 15px !important;
    }

    .tbs-info-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .tbs-info-icon svg {
        width: 20px !important;
        height: 20px !important;
    }

    .tbs-info-label {
        font-size: 12px !important;
    }

    .tbs-info-value {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .tbs-success-info-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .tbs-success-info-item {
        flex-direction: row !important;
        justify-content: flex-start !important;
        text-align: left !important;
        gap: 12px !important;
    }

    .tbs-info-icon {
        margin-bottom: 0 !important;
    }
}

/* ===================================
   LOADING SPINNER
   =================================== */
.tbs-loading {
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    border-top-color: #ffffff !important;
    animation: tbs-spin 0.8s linear infinite !important;
}

@keyframes tbs-spin {
    to {
        transform: rotate(360deg) !important;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.tbs-hidden {
    display: none !important;
}

.tbs-fade-in {
    animation: tbs-fadeIn 0.3s ease !important;
}

@keyframes tbs-fadeIn {
    from {
        opacity: 0 !important;
        transform: translateY(10px) !important;
    }

    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* ===================================
   PAGINATION STYLES
   =================================== */
.tbs-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 40px !important;
    padding-top: 30px !important;
    border-top: 1px solid #E5E7EB !important;
}

.tbs-pagination ul {
    display: flex !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 8px !important;
    align-items: center !important;
}

.tbs-pagination li {
    display: inline-block !important;
}

.tbs-pagination a,
.tbs-pagination span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 44px !important;
    height: 44px !important;
    padding: 0 16px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #374151 !important;
    background: #FFFFFF !important;
    border: 1px solid #D1D5DB !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.tbs-pagination a:hover {
    background: #F3F4F6 !important;
    border-color: #1A43C8 !important;
    color: #1A43C8 !important;
    transform: translateY(-2px) !important;
}

.tbs-pagination .current {
    background: #1A43C8 !important;
    color: #FFFFFF !important;
    border-color: #1A43C8 !important;
    cursor: default !important;
}

.tbs-pagination .current:hover {
    transform: none !important;
}

.tbs-pagination .prev,
.tbs-pagination .next {
    gap: 8px !important;
    font-weight: 600 !important;
}

.tbs-pagination .prev svg,
.tbs-pagination .next svg {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
}

.tbs-pagination .dots {
    border: none !important;
    background: transparent !important;
    cursor: default !important;
    color: #9CA3AF !important;
}

.tbs-pagination .dots:hover {
    background: transparent !important;
    border: none !important;
    transform: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .tbs-pagination {
        margin-top: 30px !important;
        padding-top: 20px !important;
    }

    .tbs-pagination ul {
        gap: 4px !important;
    }

    .tbs-pagination a,
    .tbs-pagination span {
        min-width: 40px !important;
        height: 40px !important;
        padding: 0 12px !important;
        font-size: 14px !important;
    }

    .tbs-pagination .prev span:not(svg),
    .tbs-pagination .next span:not(svg) {
        display: none !important;
    }

    /* Hide some page numbers on mobile */
    .tbs-pagination li:not(.prev):not(.next):not(.current) {
        display: none !important;
    }

    .tbs-pagination li.current {
        display: inline-block !important;
    }
}

@media (max-width: 480px) {

    .tbs-pagination a,
    .tbs-pagination span {
        min-width: 36px !important;
        height: 36px !important;
        padding: 0 8px !important;
    }
}


/* ===================================
   RECAPTCHA V2 STYLES
   =================================== */
.tbs-recaptcha-wrapper {
    width: 100% !important;
    display: flex !important;
    justify-content: start !important;
    margin: 20px 0 !important;
}

.tbs-recaptcha-notice {
    font-size: 12px !important;
    color: #6B7280 !important;
    margin-top: 15px !important;
    text-align: start !important;
    line-height: 1.6 !important;
}

.tbs-recaptcha-notice a {
    color: #2563EB !important;
    text-decoration: none !important;
}

.tbs-recaptcha-notice a:hover {
    text-decoration: underline !important;
}

/* Mobile responsive for reCAPTCHA */
@media (max-width: 768px) {
    .tbs-recaptcha-wrapper {
        transform: scale(0.85) !important;
        transform-origin: center !important;
    }
}

@media (max-width: 480px) {
    .tbs-recaptcha-wrapper {
        transform: scale(0.75) !important;
        transform-origin: center !important;
    }
}