/* Destination Overview Section */
.destination-overview-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.destination-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(247, 174, 29, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.destination-overview-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.destination-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    color: #546e7a;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #546e7a;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(247, 174, 29, 0.1);
    backdrop-filter: blur(10px);
}

.breadcrumb-link:hover {
    color: #2c3e50;
    background: rgba(247, 174, 29, 0.2);
    transform: translateY(-1px);
}

.breadcrumb-link i {
    font-size: 12px;
    color: #f7ae1d;
}

.breadcrumb-separator {
    color: #999;
    font-size: 10px;
}

.current-destination {
    color: #f7ae1d;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(247, 174, 29, 0.15);
    border-radius: 8px;
}

.current-destination i {
    font-size: 12px;
    color: #f7ae1d;
}

.destination-visa-info {
    background: rgba(247, 174, 29, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(247, 174, 29, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin: 15px 0;
    animation: visa-glow 3s ease-in-out infinite alternate;
}

.visa-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.header-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f7ae1d, #e59900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(247, 174, 29, 0.3);
}

.header-icon i {
    font-size: 16px;
    color: white;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header-content span {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.header-content small {
    font-size: 11px;
    color: #546e7a;
}

.visa-highlights {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.visa-highlight-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(247, 174, 29, 0.15);
    padding: 6px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.visa-highlight-item:hover {
    background: rgba(247, 174, 29, 0.25);
    transform: translateY(-2px);
}

.highlight-icon {
    width: 20px;
    height: 20px;
    background: rgba(247, 174, 29, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 10px;
    color: #f7ae1d;
}

.visa-highlight-item span {
    font-size: 11px;
    color: #2c3e50;
    font-weight: 500;
}

/* Quick Hero Stats */
.quick-hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.quick-hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(247, 174, 29, 0.08);
    padding: 12px 16px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 174, 29, 0.15);
    transition: all 0.3s ease;
    min-width: 100px;
}

.quick-hero-stats .stat-item:hover {
    background: rgba(247, 174, 29, 0.15);
    transform: translateY(-2px);
}

.quick-hero-stats .stat-item i {
    font-size: 18px;
    color: #f7ae1d;
}

.quick-hero-stats .stat-item span {
    font-size: 11px;
    color: #2c3e50;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.destination-overview-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.destination-overview-text h1 {
    color: white;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.destination-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.destination-overview-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-item i {
    font-size: 24px;
    color: #f7ae1d;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Search Package Cards - New Classes */

.search-packages-container {
    padding: 2px;
    margin-bottom: 2px;
}

.search-imagewrap {
    display: flex;
    flex-wrap: wrap;
    margin-left: 1px !important;
    margin-right: 1px !important;
}

.search-package-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    /* Override old package-card styles */
    height: auto !important;
    width: 100% !important;
    border: none !important;
    margin-bottom: 20px;
    margin: 7px
}

/* Modern Package Cards */
.modern-package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.modern-package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modern-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.modern-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-package-card:hover .modern-card-image img {
    transform: scale(1.1);
}

.modern-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.modern-package-card:hover .modern-card-overlay {
    opacity: 1;
}

.modern-card-price {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-package-card:hover .modern-card-price {
    transform: translateY(0);
}

.modern-price-current {
    font-size: 20px;
    font-weight: 800;
    color: #f7ae1d;
    display: block;
    letter-spacing: -0.5px;
}

.modern-price-original {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 500;
}

.modern-card-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.modern-card-header {
    margin-bottom: 20px;
}

.modern-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 52px;
    letter-spacing: -0.3px;
}

.modern-card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modern-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.modern-meta-item i {
    font-size: 12px;
    color: #f7ae1d;
    width: 20px;
    text-align: center;
}

.modern-card-footer {
    margin-top: auto;
    display: flex;
    gap: 12px;
}

.modern-btn-primary,
.modern-btn-whatsapp {
    flex: 1;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-btn-primary {
    background: linear-gradient(135deg, #f7ae1d 0%, #e5940a 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(247, 174, 29, 0.3);
}

.modern-btn-primary:hover {
    background: linear-gradient(135deg, #e5940a 0%, #d17f00 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(247, 174, 29, 0.4);
}

.modern-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.modern-btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0A5F54 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* Responsive adjustments for modern cards */
@media (max-width: 991px) {
    .modern-card-image {
        height: 200px;
    }
    
    .modern-card-content {
        padding: 20px;
    }
    
    .modern-card-title {
        font-size: 18px;
        min-height: 48px;
    }
    
    .modern-meta-item {
        font-size: 13px;
    }
    
    .modern-btn-primary,
    .modern-btn-whatsapp {
        height: 44px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .modern-card-image {
        height: 180px;
    }
    
    .modern-card-content {
        padding: 15px;
    }
    
    .modern-card-title {
        font-size: 16px;
        min-height: 42px;
    }
    
    .modern-meta-item {
        font-size: 12px;
        gap: 8px;
    }
    
    .modern-meta-item i {
        font-size: 10px;
        width: 16px;
    }
    
    .modern-price-current {
        font-size: 18px;
    }
    
    .modern-btn-primary,
    .modern-btn-whatsapp {
        height: 40px;
        font-size: 12px;
        gap: 6px;
    }
}
.search-results-section .package-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: auto !important;
    width: 100% !important;
    border: none !important;
    margin-bottom: 20px !important;
}

.search-package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* List Package Cards */
.list-package-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.list-package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(247, 174, 29, 0.2);
}

.list-package-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.list-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.list-package-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.package-category-badge {
    background: rgba(247, 174, 29, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(247, 174, 29, 0.3);
}

.list-package-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.list-package-header {
    margin-bottom: 10px;
}

.list-package-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.2px;
}

.list-package-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.meta-item i {
    font-size: 10px;
    color: #f7ae1d;
    width: 14px;
    text-align: center;
}

.list-package-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.list-package-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Rating Section Styles */
.list-package-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 10px;
    padding: 4px 0;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-stars i {
    font-size: 12px;
    color: #f7ae1d;
    transition: color 0.2s ease;
}

.rating-stars .fas.fa-star {
    color: #f7ae1d;
}

.rating-stars .fas.fa-star-half-alt {
    color: #f7ae1d;
}

.rating-stars .far.fa-star {
    color: #d1d5db;
}

.rating-text {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.rating-text:hover {
    color: #4b5563;
}

.list-package-card:hover .rating-stars i {
    transform: scale(1.1);
}

/* Responsive rating styles */
@media (max-width: 767px) {
    .list-package-rating {
        gap: 6px;
        margin-top: 6px;
        margin-bottom: 8px;
    }
    
    .rating-stars i {
        font-size: 11px;
    }
    
    .rating-text {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .list-package-rating {
        gap: 5px;
        margin-top: 5px;
        margin-bottom: 6px;
    }
    
    .rating-stars {
        gap: 1px;
    }
    
    .rating-stars i {
        font-size: 10px;
    }
    
    .rating-text {
        font-size: 9px;
    }
}

.price-current {
    font-size: 18px;
    font-weight: 800;
    color: #f7ae1d;
    letter-spacing: -0.5px;
}

.price-original {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}

.list-package-actions {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
}

.list-btn-view,
.list-btn-whatsapp {
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.list-btn-whatsapp {
    width: 48px;
    flex: 0 0 48px;
    background: #ffffff;
    border: 1.5px solid #ff7a00;
    color: #ff7a00;
    padding: 0;
    box-shadow: none;
}

.list-btn-whatsapp i {
    font-size: 20px;
}

.list-btn-whatsapp:hover {
    background: #fff9f0;
    color: #e66e00;
    border-color: #e66e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.1);
}

.list-btn-view {
    flex: 1;
    background: #ff7a00;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    gap: 10px;
    white-space: nowrap;
    padding: 0 15px;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.2);
}

.list-btn-view i {
    font-size: 15px;
}

.list-btn-view:hover {
    background: #e66e00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive adjustments for list cards */
@media (max-width: 991px) {
    .list-package-image {
        height: 160px;
    }
    
    .list-package-content {
        padding: 12px;
    }
    
    .list-package-title {
        font-size: 15px;
    }
    
    .meta-item {
        font-size: 11px;
    }
    
    .price-current {
        font-size: 16px;
    }
    
    .list-btn-view,
    .list-btn-whatsapp {
        height: 34px;
        font-size: 11px;
        padding: 0 10px;
    }
}

@media (max-width: 767px) {
    .list-package-image {
        height: 140px;
    }
    
    .list-package-content {
        padding: 10px;
    }
    
    .list-package-title {
        font-size: 14px;
    }
    
    .meta-item {
        font-size: 10px;
        gap: 5px;
    }
    
    .meta-item i {
        font-size: 9px;
        width: 12px;
    }
    
    .price-current {
        font-size: 15px;
    }
    
    .list-btn-view,
    .list-btn-whatsapp {
        height: 32px;
        font-size: 10px;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .list-package-image {
        height: 120px;
    }
    
    .list-package-content {
        padding: 8px;
    }
    
    .list-package-title {
        font-size: 13px;
    }
    
    .meta-item {
        font-size: 9px;
    }
    
    .price-current {
        font-size: 14px;
    }
    
    .list-btn-view,
    .list-btn-whatsapp {
        height: 30px;
        font-size: 9px;
        gap: 3px;
    }
}

.search-package-img {
    width: 200px;
    height: 140px;
    flex-shrink: 0;
    margin-right: 15px;
}

.search-package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.search-package-info {
    flex: 1;
    min-width: 0;
    padding-right: 15px;
}

.search-package-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.search-package-info h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.search-package-info h4 a:hover {
    color: #f7ae1d;
}

.search-package-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #666;
}

.search-package-meta i {
    margin-right: 5px;
    color: #f7ae1d;
}

.search-package-inclusions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.inclusion-tag {
    background: #f0f0f0;
    color: #666;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.best-time-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    text-transform: capitalize;
    margin: 2px;
    transition: all 0.3s ease;
}

.best-time-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
    background: linear-gradient(135deg, #218838, #1e7e34);
}

.best-time-badge::before {
    content: '🌤️';
    margin-right: 2px;
    font-size: 10px;
}

.best-time-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}

.best-time-label {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.best-time-label::before {
    content: '🌤️';
    font-size: 12px;
}

.best-time-badge i {
    font-size: 10px;
}

/* Enhanced Month Badges */
.month-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    align-items: center;
}

.month-badge {
    background: linear-gradient(135deg, #958551 0%, #237a73 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    text-transform: capitalize;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    overflow: hidden;
}

.month-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.month-badge:hover::before {
    left: 100%;
}

.month-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.month-badge i {
    font-size: 11px;
    opacity: 0.9;
}

/* Season-based color variations for months */
.month-badge[data-season="spring"] {
    background: linear-gradient(135deg, #52c234, #061700);
    box-shadow: 0 2px 8px rgba(82, 194, 52, 0.3);
}

.month-badge[data-season="summer"] {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.month-badge[data-season="monsoon"] {
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.month-badge[data-season="autumn"] {
    background: linear-gradient(135deg, #e67e22, #d35400);
    box-shadow: 0 2px 8px rgba(230, 126, 34, 0.3);
}

.month-badge[data-season="winter"] {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    box-shadow: 0 2px 8px rgba(149, 165, 166, 0.3);
}

/* Alternative month badge styles */
.month-badges.alt-style .month-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.month-badges.alt-style .month-badge:nth-child(even) {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.month-badges.alt-style .month-badge:nth-child(3n) {
    background: linear-gradient(135deg, #f7b731, #fd7e14);
}

/* Compact badge style */
.month-badges.compact .month-badge {
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 12px;
    gap: 4px;
}

.month-badges.compact .month-badge i {
    font-size: 9px;
}

/* Animated badge style */
.month-badges.animated .month-badge {
    animation: badge-appear 0.5s ease forwards;
    opacity: 0;
    transform: scale(0.8);
}

.month-badges.animated .month-badge:nth-child(1) {
    animation-delay: 0.1s;
}

.month-badges.animated .month-badge:nth-child(2) {
    animation-delay: 0.2s;
}

.month-badges.animated .month-badge:nth-child(3) {
    animation-delay: 0.3s;
}

.month-badges.animated .month-badge:nth-child(4) {
    animation-delay: 0.4s;
}

.month-badges.animated .month-badge:nth-child(5) {
    animation-delay: 0.5s;
}

.month-badges.animated .month-badge:nth-child(6) {
    animation-delay: 0.6s;
}

.month-badges.animated .month-badge:nth-child(7) {
    animation-delay: 0.7s;
}

.month-badges.animated .month-badge:nth-child(8) {
    animation-delay: 0.8s;
}

.month-badges.animated .month-badge:nth-child(9) {
    animation-delay: 0.9s;
}

.month-badges.animated .month-badge:nth-child(10) {
    animation-delay: 1.0s;
}

.month-badges.animated .month-badge:nth-child(11) {
    animation-delay: 1.1s;
}

.month-badges.animated .month-badge:nth-child(12) {
    animation-delay: 1.2s;
}

@keyframes badge-appear {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Month Badges */
@media (max-width: 768px) {
    .month-badges {
        gap: 6px;
        margin-top: 10px;
    }

    .month-badge {
        padding: 5px 10px;
        font-size: 11px;
        border-radius: 16px;
        gap: 5px;
    }

    .month-badge i {
        font-size: 10px;
    }

    .month-badges.compact .month-badge {
        padding: 3px 6px;
        font-size: 9px;
        border-radius: 10px;
    }

    .month-badges.compact .month-badge i {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .month-badges {
        gap: 4px;
        margin-top: 8px;
    }

    .month-badge {
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 14px;
        gap: 4px;
    }

    .month-badge i {
        font-size: 9px;
    }

    .month-badges.alt-style .month-badge {
        padding: 6px 10px;
        font-size: 10px;
    }

    .month-badges.compact .month-badge {
        padding: 3px 5px;
        font-size: 8px;
        border-radius: 8px;
    }

    .month-badges.compact .month-badge i {
        font-size: 7px;
    }
}

.featured-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: featured-pulse 2s infinite;
}

.featured-badge::before {
    content: '🔥';
    margin-right: 2px;
    font-size: 10px;
}

@keyframes featured-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    }
}

.category-badge {
    background: #f7ae1d;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.search-package-right {
    width: 230px;
    flex-shrink: 0;
    text-align: right;
    margin-left: 15px;
}

.search-package-price span {
    font-size: 15px;
    color: #f7ae1d;
    display: block;
    margin-bottom: 3px;
    font-weight: 700;
}

.search-package-price h4 {
    font-size: 19px;
    font-weight: 700;
    color: #f7ae1d;
    margin-bottom: 10px;
}

.search-package-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.search-btn-view {
    background: #f7ae1d;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.search-btn-view:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(247, 174, 29, 0.3);
    background: #e59900;
    text-decoration: none;
    color: white;
}

.search-btn-visa {
    background: linear-gradient(135deg, #f7ae1d, #e59900);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.search-btn-visa:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(247, 174, 29, 0.3);
    text-decoration: none;
    color: white;
}

.search-btn-visa i {
    font-size: 11px;
}

.search-btn-wa {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.search-btn-wa:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 576px) {
    .top-filters-section {
        padding: 12px;
    }

    .filters-header {
        gap: 12px;
    }

    .filters-header-left {
        gap: 8px;
    }

    .filters-header-right {
        gap: 8px;
    }

    .filters-toggle-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .search-input-wrapper {
        width: 100%;
    }

    .search-input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .search-btn {
        padding: 10px 12px;
        font-size: 14px;
    }

    .sort-dropdown .form-select {
        width: 100%;
        padding: 10px 40px 10px 12px;
        font-size: 13px;
        min-height: 44px;
        border-radius: 6px;
        background-size: 18px;
        background-position: right 10px center;
    }

    .clear-filters-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-height: 44px;
    }

    .filter-card {
        padding: 15px;
    }

    .filter-title {
        font-size: 15px;
    }

    .filter-options label {
        font-size: 13px;
    }

    .price-display {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .top-filters-section {
        padding: 10px;
    }

    .filters-header {
        gap: 10px;
    }

    .filters-header-left {
        gap: 8px;
    }

    .filters-header-right {
        gap: 8px;
    }

    .filters-toggle-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .search-input {
        padding: 8px 10px;
        font-size: 13px;
    }

    .search-btn {
        padding: 8px 10px;
        font-size: 13px;
    }

    .sort-dropdown .form-select {
        width: 100%;
        padding: 8px 35px 8px 10px;
        font-size: 12px;
        min-height: 40px;
        border-radius: 6px;
        background-size: 16px;
        background-position: right 8px center;
    }

    .clear-filters-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-height: 40px;
    }

    .filter-card {
        padding: 12px;
    }

    .filter-title {
        font-size: 14px;
    }

    .filter-options label {
        font-size: 12px;
    }

    .price-display {
        font-size: 12px;
    }

    .filters-grid {
        gap: 12px;
    }
}

.visa-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.visa-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.visa-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.visa-modal-overlay.show .visa-modal-content {
    transform: scale(1);
}

.visa-modal-header {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: white;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visa-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.visa-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.visa-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.visa-modal-body {
    padding: 24px;
    max-height: calc(80vh - 80px);
    overflow-y: auto;
}

.visa-loading {
    text-align: center;
    padding: 40px 20px;
}

.visa-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #11998e;
    border-radius: 50%;
    animation: visa-spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes visa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.visa-loading p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.visa-content {
    animation: visa-fadeIn 0.5s ease;
}

@keyframes visa-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.visa-section {
    margin-bottom: 24px;
}

.visa-section h4 {
    color: #11998e;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.visa-section ul {
    margin: 0;
    padding-left: 20px;
    color: #666;
    line-height: 1.6;
}

.visa-section li {
    margin-bottom: 8px;
}

.visa-requirements {
    background: #f8f9fa;
    border-left: 4px solid #11998e;
    padding: 16px;
    border-radius: 8px;
    margin-top: 12px;
}

.visa-requirements h5 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.visa-important {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 16px;
    border-radius: 8px;
    margin-top: 12px;
}

.visa-important h5 {
    color: #856404;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Responsive Design for Visa Modal */
@media (max-width: 768px) {
    .visa-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .visa-modal-header {
        padding: 16px 20px;
    }

    .visa-modal-header h3 {
        font-size: 18px;
    }

    .visa-modal-body {
        padding: 20px;
    }

    .visa-section h4 {
        font-size: 16px;
    }
}

/* Search Results Section - New Layout */
.search-results-section {
    padding: 16px 0;
    background: #f8f9fa;
}

/* Top Filters Section */
.top-filters-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 24px; */
    padding-bottom: 0px;
}

.filters-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.filters-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-dropdown {
    position: relative;
}

.sort-dropdown .form-select {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    min-width: 180px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    width: 100%;
    max-width: 200px;
}

.sort-dropdown .form-select:focus {
    outline: none;
    border-color: #f7ae1d;
    box-shadow: 0 0 0 4px rgba(247, 174, 29, 0.15);
}

.sort-dropdown .form-select:hover {
    border-color: #f39c12;
}

.filters-toggle-btn {
    background: linear-gradient(135deg, #f7ae1d, #e59900);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(247, 174, 29, 0.25);
    position: relative;
    overflow: hidden;
}

.filters-toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.filters-toggle-btn:hover::before {
    left: 100%;
}

.filters-toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 174, 29, 0.35);
    background: linear-gradient(135deg, #e59900, #d48800);
}

.filters-toggle-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(247, 174, 29, 0.25);
}

.filters-toggle-btn.active {
    background: linear-gradient(135deg, #e59900, #d48800);
    box-shadow: 0 6px 20px rgba(229, 153, 0, 0.3);
}

.filters-toggle-btn i:first-child {
    font-size: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.toggle-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.filters-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    max-width: 60%;
    width: 100%;
    flex: 1;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.search-input-wrapper:focus-within {
    border-color: #f39c12;
    box-shadow: 0 0 0 4px rgba(247, 174, 29, 0.15), 0 4px 20px rgba(247, 174, 29, 0.2);
    transform: translateY(-1px);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 18px;
    font-size: 14px;
    outline: none;
    color: #333;
    font-weight: 500;
}

.search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.search-btn {
    background: linear-gradient(135deg, #f7ae1d, #e59900);
    color: white;
    border: none;
    padding: 14px 18px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn:hover {
    background: linear-gradient(135deg, #e59900, #d48800);
    transform: scale(1.05);
}

.search-btn:active {
    transform: scale(0.98);
}

.search-btn i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.search-btn:hover i {
    transform: scale(1.1);
}

.clear-filters-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 7px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.25);
    position: relative;
    overflow: hidden;
}

.clear-filters-btn:disabled {
    background: #e9ecef !important;
    color: #adb5bd !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
}

.clear-filters-btn:disabled::before {
    display: none !important;
}

.clear-filters-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.clear-filters-btn:hover::before {
    left: 100%;
}

.clear-filters-btn:hover {
    background: linear-gradient(135deg, #c82333, #a02622);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.35);
}

.clear-filters-btn:active {
    transform: translateY(-1px);
}

.clear-filters-btn i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.clear-filters-btn:hover i {
    transform: rotate(90deg);
}

.filters-content {
    transition: all 0.3s ease;
    overflow: hidden;
}

.filters-content.show {
    display: block !important;
}

.clear-filters-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear-filters-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.filters-grid .filter-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.filters-grid .filter-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.filters-grid .filter-title {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Main Content Layout */
.search-main-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

/* Packages Column */
.packages-column {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Destination Details Sidebar */
.destination-details-sidebar {
    position: sticky;
    top: 20px;
}

.destination-info-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.destination-header {
    position: relative;
}

.destination-header h3 {
    margin: 0;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #f7ae1d, #e59900);
    text-align: center;
}

.destination-image {
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-image:hover img {
    transform: scale(1.05);
}

.destination-content {
    padding: 24px;
}

.destination-description p {
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.destination-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #666;
}

.highlight-item i {
    color: #11998e;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.destination-attractions,
.destination-climate {
    margin-bottom: 24px;
}

.destination-attractions h4,
.destination-climate h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.destination-attractions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.destination-attractions li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.destination-attractions li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #11998e;
    font-weight: bold;
}

.destination-climate {
    margin-bottom: 24px;
}

.best-time-content {
    margin-top: 15px;
}

.month-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.month-badge {
    background: rgba(17, 153, 142, 0.1);
    color: #11998e;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(17, 153, 142, 0.2);
}

.month-badge i {
    font-size: 12px;
    color: #11998e;
}

.month-badge:hover {
    background: #11998e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 153, 142, 0.2);
}

.month-badge:hover i {
    color: white;
}

.year-round-badge {
    background: linear-gradient(135deg, rgba(247, 174, 29, 0.1), rgba(229, 153, 0, 0.1));
    color: #e59900;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px dashed #f7ae1d;
}

.year-round-badge i {
    font-size: 20px;
    color: #f7ae1d;
}

.destination-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-see-more, .btn-visa-details {
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.btn-see-more {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: white !important;
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.25);
    border: none;
}

.btn-see-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.35);
    background: linear-gradient(135deg, #0e867d, #31d36e);
}

.btn-visa-details {
    background: #f7ae1d;
    color: white !important;
    border: none;
    box-shadow: 0 4px 15px rgba(247, 174, 29, 0.2);
}

.btn-visa-details:hover {
    background: #e59900;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 174, 29, 0.3);
}

.btn-see-more i, .btn-visa-details i {
    font-size: 16px;
}

/* Quick Info Cards */
.quick-info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.info-card i {
    font-size: 24px;
    color: #f7ae1d;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 174, 29, 0.1);
    border-radius: 50%;
}

.info-card h5 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.info-card p {
    margin: 0;
    font-size: 12px;
    color: #546e7a;
}

/* Override old package-card-image styles */
.search-package-img img {
    /* height: 140px !important; */
    width: 200px !important;
    border-radius: 8px !important;
    padding: 0 !important;
}

/* Enhanced Loader Styles */
.packages-loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    width: 100%;
    min-height: 300px;
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
}

.packages-loader-container.hidden {
    display: none;
}

.packages-loader {
    text-align: center;
}

.packages-loader .loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #f7ae1d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.packages-loader .loader-text {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

.packages-list-container {
    width: 100%;
}

.packages-list-container.loading {
    display: none !important;
}

.packages-list-container:not(.loading) {
    display: block !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Inline Package List Loader */
#packages-list-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    width: 100%;
    min-height: 300px;
}

.inline-loader-content {
    text-align: center;
}

.inline-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #f7ae1d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.inline-loader-text {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

/* No Results Section */
.no-results {
    padding: 80px 0;
    background: #f8f9fa;
}

.no-results-content {
    text-align: center;
    margin-bottom: 60px;
}

.no-results-icon {
    font-size: 64px;
    color: #f7ae1d;
    margin-bottom: 20px;
}

.no-results-icon i {
    background: linear-gradient(135deg, #f7ae1d, #e59900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.no-results-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.no-results-text {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Related Packages Section */
.related-packages-section {
    margin-top: 60px;
}

.related-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.related-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.related-package-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 20px;
}

.related-package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.related-package-image {
    width: 180px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 20px;
    position: relative;
    flex-shrink: 0;
}

.related-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #f7ae1d;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.related-badge.featured {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    animation: featured-pulse 2s infinite;
}

.related-package-info {
    flex: 1;
}

.related-package-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.related-package-info h4 a {
    color: inherit;
    text-decoration: none;
}

.related-package-info h4 a:hover {
    color: #f7ae1d;
}

.related-package-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
}

.related-package-meta i {
    margin-right: 5px;
    color: #f7ae1d;
}

.related-package-price {
    margin-bottom: 15px;
}

.related-package-price span {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 3px;
}

.related-package-price h4 {
    font-size: 20px;
    font-weight: 700;
    color: #f7ae1d;
    margin-bottom: 0;
}

.related-package-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .filters-header-left {
        gap: 15px;
    }

    .filters-header-right {
        gap: 12px;
    }

    .sort-dropdown .form-select {
        min-width: 160px;
        font-size: 13px;
        padding: 10px 14px;
    }
}

@media (max-width: 1024px) {
    .top-filters-section {
        padding: 20px;
    }

    .filters-header {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .filters-header-left {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        width: 100%;
    }

    .filters-header-right {
        flex-direction: row;
        gap: 15px;
        justify-content: space-between;
        width: 100%;
    }

    .sort-dropdown {
        flex: 1;
        max-width: 100%;
    }

    .sort-dropdown .form-select {
        width: 100%;
        min-width: auto;
        max-width: none;
        padding: 12px 45px 12px 16px;
        font-size: 14px;
    }

    .clear-filters-btn {
        flex-shrink: 0;
        min-width: 120px;
    }

    .filters-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .destination-overview-card {
        padding: 25px 20px;
    }

    .destination-overview-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .destination-overview-text h1 {
        font-size: 28px;
    }

    .destination-subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .destination-overview-stats {
        justify-content: center;
        gap: 15px;
    }

    .stat-item {
        min-width: 80px;
        padding: 15px;
    }

    .stat-item i {
        font-size: 20px;
    }

    .stat-number {
        font-size: 20px;
    }

    .top-filters-section {
        padding: 15px;
    }

    .filters-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .filters-header-left {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        width: 100%;
    }

    .filters-header-right {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        width: 100%;
    }

    .sort-dropdown {
        width: 100%;
    }

    .sort-dropdown .form-select {
        width: 100%;
        min-width: auto;
        max-width: none;
        padding: 12px 45px 12px 16px;
        font-size: 14px;
        height: auto;
        min-height: 48px;
        border-radius: 8px;
    }

    .clear-filters-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
        min-height: 48px;
    }

    .filters-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .filter-card {
        padding: 20px;
    }

    .filter-title {
        font-size: 16px;
    }

    .filter-options label {
        font-size: 14px;
    }

    .related-packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-package-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .related-package-image {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .related-package-meta {
        justify-content: center;
    }

    .related-package-actions {
        justify-content: center;
    }

    .no-results-title {
        font-size: 24px;
    }

    .no-results-text {
        font-size: 16px;
    }
}

.pulse-loader {
    display: inline-block;
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
}

.pulse-loader div {
    width: 13px;
    height: 13px;
    background-color: #f7ae1d;
    border-radius: 100%;
    display: inline-block;
    margin: 0 3px;
    animation: pulse 1.4s infinite ease-in-out both;
}

.pulse-loader div:nth-child(1) {
    animation-delay: -0.32s;
}

.pulse-loader div:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes pulse {

    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Inline Package List Loader */
#packages-list-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    width: 100%;
    min-height: 300px;
}

.inline-loader-content {
    text-align: center;
}

.inline-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #f7ae1d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.inline-loader-text {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

/* Pulse dots alternative for inline loader */
.inline-pulse-loader {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 15px;
}

.inline-pulse-loader div {
    width: 8px;
    height: 8px;
    background-color: #f7ae1d;
    border-radius: 50%;
    animation: pulse 1.4s infinite ease-in-out both;
}

.inline-pulse-loader div:nth-child(1) {
    animation-delay: -0.32s;
}

.inline-pulse-loader div:nth-child(2) {
    animation-delay: -0.16s;
}

.inline-pulse-loader div:nth-child(3) {
    animation-delay: 0s;
}

/* Destination Hero Section Styles */
.destination-hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #f7ae1d;
}

.destination-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(247, 174, 29, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 174, 29, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(247, 174, 29, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.destination-hero-content {
    color: #2c3e50;
    text-align: center;
    /* padding: 40px 0; */
    position: relative;
    z-index: 2;
}

/* Hero Decoration Icons */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(247, 174, 29, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 174, 29, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-icon i {
    font-size: 16px;
    color: #f7ae1d;
}

.floating-icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Title Container */
.title-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.title-icon {
    position: absolute;
    top: -15px;
    left: -20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f7ae1d, #e59900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(247, 174, 29, 0.3);
    animation: pulse 2s infinite;
}

.title-icon i {
    font-size: 20px;
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(247, 174, 29, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(247, 174, 29, 0.4);
    }
}

.title-badge {
    position: absolute;
    top: -10px;
    right: -20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
    animation: badge-glow 2s ease-in-out infinite alternate;
}

.title-badge i {
    font-size: 10px;
}

@keyframes badge-glow {
    0% {
        box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
    }

    100% {
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.5);
    }
}

.destination-header {
    margin-bottom: 20px;
}

/* New Hero Top Section Layout */
.hero-top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px 0;
}

.destination-name-section {
    flex: 1;
}

.home-button-section {
    flex-shrink: 0;
}

.home-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f7ae1d, #e59900);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 174, 29, 0.25);
}

.home-btn:hover {
    background: linear-gradient(135deg, #e59900, #d48800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 174, 29, 0.35);
    color: white;
    text-decoration: none;
}

.home-btn i {
    font-size: 16px;
}

.destination-hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: none;
    letter-spacing: -1px;
    background: linear-gradient(45deg, #333, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.destination-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.destination-breadcrumb i {
    font-size: 12px;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.current-destination {
    color: #f7ae1d;
    font-weight: 600;
}

.destination-description {
    max-width: 800px;
    margin: 0 auto 40px;
}

.destination-hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.destination-hero-details {
    margin-top: 60px;
}

.destination-info-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    min-width: 280px;
    max-width: 320px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f7ae1d, #f39c12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(247, 174, 29, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(247, 174, 29, 0.4);
}

.info-icon i {
    font-size: 24px;
    color: white;
}

.info-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    letter-spacing: 0.5px;
}

.info-content p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 400;
}

/* Decorative elements */
.destination-hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    right: -50px;
    height: 100px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(-2deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .destination-hero-title {
        font-size: 28px;
    }

    .destination-hero-subtitle {
        font-size: 16px;
    }

    .destination-hero-content {
        padding: 30px 0;
    }

    .hero-top-section {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 15px 0;
    }

    .destination-name-section {
        order: 2;
    }

    .home-button-section {
        order: 1;
    }

    .title-icon {
        width: 40px;
        height: 40px;
        top: -10px;
        left: -15px;
    }

    .title-icon i {
        font-size: 16px;
    }

    .title-badge {
        top: -8px;
        right: -15px;
        padding: 4px 8px;
        font-size: 10px;
    }

    .floating-icon {
        width: 30px;
        height: 30px;
    }

    .floating-icon i {
        font-size: 12px;
    }

    .destination-info-cards {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .info-card {
        max-width: 100%;
        min-width: auto;
    }

    .destination-breadcrumb {
        font-size: 11px;
        gap: 8px;
    }

    .quick-hero-stats {
        gap: 12px;
    }

    .quick-hero-stats .stat-item {
        min-width: 80px;
        padding: 8px 12px;
    }

    .quick-hero-stats .stat-item i {
        font-size: 14px;
    }

    .quick-hero-stats .stat-item span {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .destination-hero-content {
        padding: 25px 0;
    }

    .destination-hero-title {
        font-size: 24px;
    }

    .hero-top-section {
        padding: 10px 0;
        gap: 15px;
    }

    .home-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .home-btn i {
        font-size: 14px;
    }

    .title-container {
        margin-bottom: 15px;
    }

    .destination-breadcrumb {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .visa-highlights {
        gap: 8px;
    }

    .visa-highlight-item {
        padding: 4px 8px;
    }

    .visa-highlight-item span {
        font-size: 10px;
    }

    .quick-hero-stats {
        gap: 8px;
    }

    .quick-hero-stats .stat-item {
        min-width: 70px;
        padding: 6px 8px;
    }

    .info-card {
        padding: 25px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
    }

    .info-icon i {
        font-size: 20px;
    }
}

/* Destination Overview Section */
.destination-overview-section {
    padding: 25px 0;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.destination-overview-card {
    background: url('https://t3.ftcdn.net/jpg/03/20/06/16/360_F_320061630_qTwTYsIEPJO62ubp5bzF41Pob4oJug5b.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.destination-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.destination-overview-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.destination-overview-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.destination-overview-text {
    flex: 1;
    text-align: center;
    color: white;
    position: relative;
    z-index: 3;
}

.destination-overview-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-overview-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Visa Information in Overview Section */
.destination-visa-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    animation: visa-glow 2s ease-in-out infinite alternate;
}

@keyframes visa-glow {
    0% {
        box-shadow: 0 4px 15px rgba(17, 153, 142, 0.2);
    }

    100% {
        box-shadow: 0 4px 20px rgba(17, 153, 142, 0.4);
    }
}

.visa-info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.visa-info-header i {
    color: #070707;
    font-size: 18px;
}

.visa-info-content {
    color: rgba(255, 255, 255, 0.9);
}

.visa-summary {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.visa-highlights {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.visa-highlight-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.visa-highlight-item i {
    color: #38ef7d;
    font-size: 12px;
}

.destination-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-visa-details {
    background: linear-gradient(135deg, #ff9a5a, #ff6a6a);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.btn-visa-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 153, 142, 0.4);
    background: linear-gradient(135deg, #0f8b7d, #2dd96e);
    text-decoration: none;
    color: white;
}

.btn-visa-details i {
    font-size: 12px;
}

.btn-see-more {
    background: linear-gradient(135deg, #f5a623, #f39c12);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.25);
}

.btn-see-more:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(245, 166, 35, 0.35);
    background: linear-gradient(135deg, #e59515, #e67e22);
}

.btn-see-more i {
    font-size: 14px;
}

/* Destination Modal */
.destination-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.destination-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.destination-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.destination-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.destination-modal-overlay.active .destination-modal-content {
    transform: scale(1);
}

.destination-modal-header {
    background: linear-gradient(135deg, #f5a623, #f39c12);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.destination-modal-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.modal-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.destination-modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

.modal-section {
    margin-bottom: 30px;
}

.modal-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-section h4 i {
    color: #f5a623;
    font-size: 18px;
}

.modal-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    text-align: justify;
}

.modal-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.modal-highlight-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #f5a623;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modal-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.modal-highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f5a623, #f39c12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.2);
    flex-shrink: 0;
}

.modal-highlight-icon i {
    font-size: 20px;
    color: white;
}

.modal-highlight-content {
    flex: 1;
}

.modal-highlight-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.modal-highlight-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 5px;
    font-weight: 500;
    line-height: 1.5;
}

.modal-highlight-content small {
    font-size: 13px;
    color: #777;
    font-style: italic;
    display: block;
    margin-top: 5px;
}

.travel-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.travel-tips-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    background: #f8f9fa;
    padding: 15px;
    padding-left: 45px;
    border-radius: 8px;
    border-left: 3px solid #f5a623;
    transition: all 0.3s ease;
}

.travel-tips-list li:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transform: translateX(3px);
}

.travel-tips-list li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 15px;
    color: #f5a623;
    font-weight: bold;
    font-size: 16px;
}

/* Load More Button */
.load-more-container {
    display: flex;
    justify-content: center;
    padding: 30px 20px;
    margin-top: 20px;
}

.load-more-btn {
    background: linear-gradient(135deg, #f7ae1d, #e59900);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(247, 174, 29, 0.25);
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.load-more-btn:hover::before {
    left: 100%;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #e59900, #d48800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 174, 29, 0.35);
}

.load-more-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(247, 174, 29, 0.25);
}

.load-more-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
}

.load-more-btn:disabled:hover {
    background: #6c757d;
    transform: none;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
}

.load-more-btn i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.load-more-btn:hover i {
    transform: scale(1.1);
}

/* Load More Loading State */
.load-more-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.load-more-btn.loading i {
    animation: spin 1s linear infinite;
}

/* Responsive Load More */
@media (max-width: 768px) {
    .load-more-container {
        padding: 20px 15px;
        margin-top: 15px;
    }

    .load-more-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .load-more-btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .load-more-container {
        padding: 15px 10px;
        margin-top: 10px;
    }

    .load-more-btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .load-more-btn i {
        font-size: 13px;
    }
}

/* Packages Loader */
.packages-loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    padding: 40px 20px;
}

.packages-loader {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #11998e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin-top: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Loader States */
.packages-loader-container.hidden {
    display: none;
}

.packages-list-container.loading {
    opacity: 0.5;
    pointer-events: none;
}

.packages-list-container {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    min-height: 200px;
}

/* Responsive Loader */
@media (max-width: 768px) {
    .packages-loader-container {
        min-height: 200px;
        padding: 30px 15px;
    }

    .loader-spinner {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }

    .loader-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .packages-loader-container {
        min-height: 150px;
        padding: 20px 10px;
    }

    .loader-spinner {
        width: 35px;
        height: 35px;
        border-width: 3px;
    }

    .loader-text {
        font-size: 13px;
    }
}

/* Filter Card Responsive */
@media (max-width: 768px) {
    .filter-card {
        padding: 16px;
    }

    .filter-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .filter-option {
        padding: 8px 0;
    }

    .filter-option input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .filter-option span {
        font-size: 14px;
    }

    .price-range-slider {
        margin: 0;
    }

    .price-display {
        margin-top: 12px;
    }

    .price-range-label {
        font-size: 14px;
    }
}

/* Package Card Responsive */
@media (max-width: 768px) {
    .search-package-card {
        flex-direction: column;
        padding: 16px;
    }

    .search-package-left {
        width: 100%;
        margin-bottom: 16px;
    }

    .search-package-right {
        width: 90% !important;
        padding-left: 0;
    }

    .search-package-title {
        font-size: 18px;
    }

    .search-package-location {
        font-size: 14px;
    }

    .search-package-price {
        font-size: 20px;
    }

    .search-package-actions {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .search-btn-view,
    .search-btn-wa {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Destination Sidebar Responsive */
@media (max-width: 992px) {
    .destination-details-sidebar {
        position: static;
        order: -1;
        margin-bottom: 30px;
    }

    .destination-info-card {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 768px) {
    .destination-header h3 {
        font-size: 18px;
        padding: 16px;
    }

    .destination-image {
        height: 180px;
    }

    .destination-content {
        padding: 16px;
    }

    .destination-description p {
        font-size: 14px;
        line-height: 1.6;
    }

    .highlight-item {
        font-size: 13px;
        padding: 8px 0;
    }

    .destination-attractions h4,
    .destination-climate h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .destination-attractions li {
        font-size: 13px;
        padding: 6px 0;
    }

    .destination-climate p {
        font-size: 13px;
        line-height: 1.5;
    }

    .info-card {
        padding: 12px;
        margin-bottom: 12px;
    }

    .info-card i {
        font-size: 20px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .info-card h5 {
        font-size: 14px;
    }

    .info-card p {
        font-size: 12px;
    }
}

@media (max-width: 1200px) {
    .search-main-layout {
        grid-template-columns: 1fr 320px;
        gap: 24px;
    }

    .filters-header-left {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .search-input-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .search-main-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .destination-details-sidebar {
        position: static;
        order: -1;
    }

    .top-filters-section {
        padding: 20px;
        margin-bottom: 24px;
    }

    .filters-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .filters-header-left {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .filters-toggle-btn {
        width: 100%;
        justify-content: center;
    }

    .search-input-wrapper {
        max-width: 100%;
    }

    .filters-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .search-results-section {
        padding: 20px 0;
    }

    .top-filters-section {
        padding: 16px;
        margin-bottom: 20px;
    }

    .filters-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .filters-header-left {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .filters-toggle-btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 10px 16px;
    }

    .search-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .search-btn {
        padding: 10px 12px;
        font-size: 13px;
    }

    .clear-filters-btn {
        align-self: flex-end;
    }

    .filters-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .filters-grid .filter-card {
        padding: 16px;
    }

    .packages-column {
        padding: 16px;
    }

    .destination-content {
        padding: 20px;
    }

    .destination-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .btn-see-more,
    .btn-visa-details {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .top-filters-section {
        padding: 12px;
    }

    .filters-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .filters-header-left {
        gap: 8px;
    }

    .filters-toggle-btn {
        font-size: 13px;
        padding: 8px 12px;
    }

    .search-input {
        padding: 8px 10px;
        font-size: 12px;
    }

    .search-btn {
        padding: 8px 10px;
        font-size: 12px;
    }

    .clear-filters-btn {
        font-size: 12px;
        padding: 8px 16px;
    }

    .filters-grid .filter-card {
        padding: 12px;
    }

    .filters-grid .filter-title {
        font-size: 14px;
    }

    .packages-column {
        padding: 12px;
    }

    .destination-header h3 {
        font-size: 16px;
        padding: 16px;
    }

    .destination-image {
        height: 150px;
    }

    .destination-content {
        padding: 16px;
    }

    .destination-description p {
        font-size: 13px;
    }

    .highlight-item {
        font-size: 13px;
    }

    .destination-attractions h4,
    .destination-climate h4 {
        font-size: 14px;
    }

    .destination-attractions li {
        font-size: 13px;
    }

    .destination-climate p {
        font-size: 13px;
    }

    .info-card {
        padding: 12px;
    }

    .info-card i {
        font-size: 20px;
        width: 36px;
        height: 36px;
    }

    .info-card h5 {
        font-size: 13px;
    }

    .info-card p {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .destination-overview-section {
        padding: 20px 0;
    }

    .destination-overview-card {
        padding: 20px;
    }

    .destination-overview-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .destination-overview-text h2 {
        font-size: 24px;
    }

    .destination-overview-text p {
        font-size: 14px;
    }

    .destination-visa-info {
        padding: 14px;
        margin-bottom: 16px;
    }

    .visa-info-header {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .visa-summary {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .visa-highlights {
        gap: 16px;
        justify-content: center;
    }

    .visa-highlight-item {
        font-size: 12px;
    }

    .destination-actions {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .btn-see-more,
    .btn-visa-details {
        font-size: 13px;
        padding: 10px 20px;
        width: 100%;
        max-width: 200px;
    }

    .destination-modal-body {
        padding: 20px;
    }

    .modal-highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modal-highlight-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .destination-overview-section {
        padding: 15px 0;
    }

    .destination-overview-card {
        padding: 15px;
    }

    .destination-overview-text h2 {
        font-size: 22px;
    }

    .destination-overview-text p {
        font-size: 13px;
    }

    .destination-visa-info {
        padding: 12px;
        margin-bottom: 14px;
    }

    .visa-info-header {
        font-size: 14px;
    }

    .visa-summary {
        font-size: 12px;
    }

    .visa-highlights {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .visa-highlight-item {
        font-size: 11px;
    }

    .btn-see-more,
    .btn-visa-details {
        font-size: 12px;
        padding: 8px 16px;
    }

    .destination-modal-header {
        padding: 20px;
    }

    .destination-modal-header h3 {
        font-size: 20px;
    }

    .modal-highlight-card {
        padding: 15px;
    }

    .modal-highlight-icon {
        width: 40px;
        height: 40px;
    }

    .modal-highlight-icon i {
        font-size: 16px;
    }
}

/* Search Results Page Styles */

/* Hero Section without Background Image */
.search-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.search-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.search-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.search-hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Main Layout */
.search-results-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.search-results-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Left Sidebar Filters */
.search-filters-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.filter-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.filter-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.filter-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #f5a623;
}

.filter-option span {
    user-select: none;
}

/* Price Range Slider */
.price-range-slider {
    margin-top: 15px;
}

.price-display {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.price-range-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.price-range-label span {
    color: #f5a623;
    font-weight: 700;
}

/* Enhanced jQuery UI Slider Styles */
#slider-ranger {
    margin: 20px 0;
    height: 8px;
    background: #e9ecef;
    border: none;
    border-radius: 4px;
}

#slider-ranger .ui-slider-handle {
    width: 20px;
    height: 20px;
    background: #f5a623;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
    transition: all 0.2s ease;
}

#slider-ranger .ui-slider-handle:hover {
    background: #e59515;
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(245, 166, 35, 0.5);
}

#slider-ranger .ui-slider-handle:focus {
    outline: none;
    box-shadow: 0 3px 12px rgba(245, 166, 35, 0.5);
}

#slider-ranger .ui-slider-range {
    background: linear-gradient(90deg, #f5a623, #e59515);
    border-radius: 4px;
    height: 8px;
}

#slider-ranger .ui-slider-handle span {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
}

#slider-ranger .ui-slider-handle span::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: #333;
}

/* Slider track styling */
#slider-ranger.ui-slider {
    background: linear-gradient(90deg, #e9ecef 0%, #e9ecef 100%);
}

#slider-ranger.ui-slider .ui-slider-handle.ui-state-active {
    background: #e59515;
    transform: scale(1.15);
}

/* Main Content Area */
.search-main-content {
    flex: 1;
    min-width: 0;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.results-count {
    font-size: 16px;
    color: #333;
}

.results-count strong {
    color: #f5a623;
    font-size: 18px;
}

.sort-dropdown .form-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

/* Destination Details Section */
.destination-details-section {
    margin-bottom: 30px;
}

.destination-details-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-details-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.destination-details-header {
    background: linear-gradient(135deg, #f5a623 0%, #f39c12 100%);
    padding: 20px 25px;
    color: white;
}

.destination-details-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.destination-details-header i {
    font-size: 18px;
}

.destination-details-content {
    padding: 25px;
}

.destination-description {
    margin-bottom: 25px;
}

.destination-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.destination-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #f5a623;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.highlight-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f5a623, #f39c12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.2);
}

.highlight-icon i {
    font-size: 18px;
    color: white;
}

.highlight-content {
    flex: 1;
}

.highlight-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.highlight-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive Design for Destination Details */
@media (max-width: 768px) {
    .destination-details-header {
        padding: 15px 20px;
    }

    .destination-details-header h3 {
        font-size: 18px;
    }

    .destination-details-content {
        padding: 20px;
    }

    .destination-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .highlight-item {
        padding: 15px;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
    }

    .highlight-icon i {
        font-size: 16px;
    }

    .highlight-content h4 {
        font-size: 15px;
    }

    .highlight-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .destination-details-header h3 {
        font-size: 16px;
    }

    .destination-details-content {
        padding: 15px;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 15px;
    }

    .highlight-icon {
        margin: 0 auto;
    }
}

/* Package Cards Layout */
.packages-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.package-img {
    width: 200px;
    height: 140px;
    flex-shrink: 0;
    margin-right: 20px;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.package-info {
    flex: 1;
    min-width: 0;
}

.package-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.package-info h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.package-info h4 a:hover {
    color: #f5a623;
}

.package-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.package-meta i {
    margin-right: 5px;
    color: #f5a623;
}

.package-inclusions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.inclusion-tag {
    background: #f0f0f0;
    color: #666;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.package-right {
    width: 200px;
    flex-shrink: 0;
    text-align: right;
    margin-left: 20px;
}

.package-price span {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.package-price h4 {
    font-size: 24px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 15px;
}

.package-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-view {
    background: #f5a623;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.btn-view:hover {
    background: #e59515;
    color: white;
}

.btn-wa {
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s ease;
}

.btn-wa:hover {
    background: #1da852;
    color: white;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.pagination-nav {
    display: flex;
    gap: 5px;
}

.pagination-btn {
    padding: 10px 15px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #f5a623;
    color: white;
    border-color: #f5a623;
}

.pagination-btn.active {
    background: #f5a623;
    color: white;
    border-color: #f5a623;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Similar Packages Section */
.similar-packages-section {
    padding: 60px 0;
    background: white;
}

.similar-packages-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.similar-packages-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 0 20px;
    scroll-snap-type: x mandatory;
}

.similar-packages-carousel::-webkit-scrollbar {
    height: 8px;
}

.similar-packages-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.similar-packages-carousel::-webkit-scrollbar-thumb {
    background: #f5a623;
    border-radius: 10px;
}

.similar-package-card {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
    transition: transform 0.2s ease;
}

.similar-package-card:hover {
    transform: translateY(-5px);
}

.similar-package-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.similar-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-package-content {
    padding: 20px;
}

.similar-package-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.similar-package-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.similar-package-title a:hover {
    color: #f5a623;
}

.similar-package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.similar-package-meta span:first-child {
    color: #666;
}

.similar-package-price {
    color: #f5a623;
    font-weight: 600;
}

.similar-package-duration {
    font-size: 14px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .search-results-layout {
        flex-direction: column;
    }

    .search-filters-sidebar {
        width: 100%;
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .filter-card {
        flex: 0 0 250px;
    }
}

@media (max-width: 768px) {
    .search-hero-title {
        font-size: 32px;
    }

    .package-card {
        flex-direction: column;
        text-align: center;
    }

    .package-img {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .package-right {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 15px;
    }

    .package-actions {
        justify-content: center;
    }

    .results-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .search-filters-sidebar {
        flex-direction: column;
    }

    .filter-card {
        flex: 1;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .filters-header-left {
        flex-direction: row !important;
        gap: 12px;
        align-items: flex-start;
    }

    .filters-header {
        gap: 18px;
    }
}
