/* Destination Card Styles */
.destination-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.destination-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.7) 0%, rgba(139, 92, 246, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-info-overlay {
    color: white;
}

.destination-info-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.destination-info-overlay p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
}

.destination-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.destination-stats {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 12px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-item i {
    font-size: 10px;
}

.destination-bottom {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.destination-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 8px;
}

.destination-rating span {
    font-weight: 500;
    color: #9ca3af;
    font-size: 12px;
}

.destination-price {
    font-size: 13px;
    color: #6b7280;
}

.destination-price strong {
    color: #6366f1;
    font-size: 16px;
}

/* Featured Hotel Card Styles */
.featured-hotel-card {
    flex: 0 0 320px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.featured-hotel-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.featured-hotel-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.featured-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-hotel-card:hover .featured-hotel-image img {
    transform: scale(1.08);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
}

.featured-info-overlay {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.featured-badge-top {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.featured-price-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.featured-rating-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
    color: #fbbf24;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.featured-hotel-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-hotel-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}

.featured-destination {
    color: #9ca3af;
    font-size: 13px;
    margin: 0 0 8px 0;
}

.featured-description {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.featured-amenities {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.amenity-tag {
    font-size: 12px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 6px;
}

.amenity-tag i {
    color: #10b981;
    font-size: 11px;
}

.featured-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.review-count {
    font-size: 12px;
    color: #9ca3af;
}

.view-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

/* Room Type Card */
.room-type-card {
    flex: 0 0 120px;
    background: white;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.room-type-card:hover {
    transform: translateY(-6px);
    border-color: #6366f1;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}

.room-icon {
    font-size: 36px;
    color: #6366f1;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.room-type-card:hover .room-icon {
    transform: scale(1.1);
}

.room-type-card h3 {
    font-size: 13px;
    font-weight: 700;
    margin: 8px 0 4px 0;
    color: #111827;
}

.room-desc {
    font-size: 11px;
    color: #9ca3af;
    margin: 0 0 8px 0;
}

.room-price {
    color: #6366f1;
    font-weight: 700;
    margin-bottom: 8px;
}

.room-select-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.room-select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Room Tab Styles */
.room-tab {
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.room-tab.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #6366f1;
    color: white;
}

.room-tab:hover:not(.active) {
    border-color: #6366f1;
    color: #6366f1;
}

/* Responsive */
@media (max-width: 480px) {
    .destination-card {
        flex: 0 0 240px;
    }

    .featured-hotel-card {
        flex: 0 0 280px;
    }

    .destination-image {
        height: 160px;
    }

    .featured-hotel-image {
        height: 200px;
    }
}