/* Top Destinations Carousel - Similar to Flight Deals */
.top-destinations-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e8ef 100%);
}

.destinations-header {
    text-align: center;
    margin-bottom: 3rem;
}

.destinations-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destinations-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
}

.destinations-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.destinations-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0 2rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.destinations-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Destination Card */
.destination-deal-card {
    flex: 0 0 400px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: grab;
}

.destination-deal-card:active {
    cursor: grabbing;
}

.destination-deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.destination-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-deal-card:hover .destination-image {
    transform: scale(1.1);
}

.destination-season-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #0275d8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 24px;
    z-index: 1;
}

.destination-name {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-content {
    padding: 24px;
}

.destination-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

/* Tours Section */
.destination-tours {
    margin-bottom: 20px;
}

.tours-title {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tours-title i {
    color: #f59e0b;
    margin-right: 6px;
}

.tours-count {
    font-size: 11px;
    background: #ef4444;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.tour-mini-card {
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.tour-mini-card:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.tour-mini-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.tour-mini-info {
    padding: 8px;
}

.tour-mini-name {
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 4px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-mini-price {
    font-size: 10px;
    color: #059669;
    font-weight: 600;
    margin: 0;
}

/* CTA Button */
.destination-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #0275d8;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(2, 117, 216, 0.3);
}

.destination-cta:hover {
    background: #025aa5;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 117, 216, 0.4);
    color: white;
    text-decoration: none;
}

.destination-cta i {
    font-size: 12px;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: #0275d8;
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-nav i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .destinations-carousel-wrapper {
        padding: 0 20px;
    }
    
    .destination-deal-card {
        flex: 0 0 320px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav i {
        font-size: 14px;
    }
}
